diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 552d8daa8..9e101dc26 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,6 +52,7 @@ Ce projet suit globalement les [conventions de style de Django](https://docs.dja Il utilise `ruff` et `black` pour la mise en forme et `bandit` pour repérer les failles de sécurité les plus communes. Concernant les langues : + - le code est en anglais, y compris les commentaires, de même que le nom des branches git ; - la documentation est en français, de même que les exemples de composants et le nom des PR ; - Les *issues* peuvent être ouvertes dans l’une ou l’autre langue. @@ -81,6 +82,7 @@ make update_dsfr La commande télécharge la dernière version depuis le dépôt Github, la met dans le répertoire `dsfr/static/dsfr/dist/`, retire des fichiers pour réduire la taille du paquet Python et met à jour les sommes de contrôle d’intégrité dans le fichier `dsfr/checksums`. Une fois la mise à jour faite, il reste à : + - lancer les tests unitaires avec `make test` ; - ouvrir le site de test et vérifier que tous les composants s’affichent toujours bien ; - mettre à jour la liste des composants en vérifiant depuis le site du système de design de l’État ; diff --git a/README.md b/README.md index 588e24350..2d867fea1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Django-DSFR is a Django app to integrate the [French government Design System (" See the [documentation (in French)](https://numerique-gouv.github.io/django-dsfr/) for details. -Django-DSFR implements the [version 1.12.1 of the DSFR](https://www.systeme-de-design.gouv.fr/a-propos/versions/version-courante) +Django-DSFR implements the [version 1.13 of the DSFR](https://www.systeme-de-design.gouv.fr/a-propos/versions/version-courante) (see also the [Github releases page](https://github.com/GouvernementFR/dsfr/releases/)) ## Requirements diff --git a/doc/footer.md b/doc/footer.md index 9e8499c76..39e75b06e 100644 --- a/doc/footer.md +++ b/doc/footer.md @@ -10,6 +10,10 @@ Il est alors possible de personnaliser la description ainsi que le bloc-marque v Voir la page d’exemple du Système de Design de l’État Ouvre une nouvelle fenêtre +- + Voir la page du composant sur Storybook + Ouvre une nouvelle fenêtre + ## Personnaliser diff --git a/doc/forms.md b/doc/forms.md index 3a4b66c83..022bb2927 100644 --- a/doc/forms.md +++ b/doc/forms.md @@ -1,4 +1,16 @@ # Formulaires – Documentation +- + Voir la page de documentation du composant sur le Système de Design de l’État + Ouvre une nouvelle fenêtre + +- + Voir la page d’exemple du Système de Design de l’État + Ouvre une nouvelle fenêtre + +- + Voir la page du composant sur Storybook + Ouvre une nouvelle fenêtre + ## Initialisation des formulaires Les formulaires sont construits en se basant sur la classe `DsfrBaseForm`, par exemple : diff --git a/doc/header.md b/doc/header.md index 9d0562aef..af93a22c8 100644 --- a/doc/header.md +++ b/doc/header.md @@ -10,6 +10,10 @@ Il est alors possible de personnaliser le titre, le sous-titre, ainsi que le blo Voir la page d’exemple du Système de Design de l’État Ouvre une nouvelle fenêtre +- + Voir la page du composant sur Storybook + Ouvre une nouvelle fenêtre + ## Composants liés Le gabarit d’en-tête est également l’endroit où inclure les composants suivants : diff --git a/dsfr/checksums.py b/dsfr/checksums.py index 02b45b0e0..63a74ce1d 100644 --- a/dsfr/checksums.py +++ b/dsfr/checksums.py @@ -5,27 +5,27 @@ # dsfr/static/dsfr/dist/dsfr/dsfr.module.min.js INTEGRITY_JS_MODULE = ( - "sha384-TcXr68fg/siMFa6WMoFtntRfwfPoawk7Wz+pnrV+z17crqhROwg2/GRBOaw7Iysy" + "sha384-dQNRA2VhSeU0SYIKWHja8MGpEF7wm/34WJRVJMHbbUItBgG2yn0JYMdlnKWNsuR8" ) # dsfr/static/dsfr/dist/dsfr/dsfr.nomodule.min.js INTEGRITY_JS_NOMODULE = ( - "sha384-6D+aTUzuRoyopt1Ol/+T7WcnBMAwxhx67azX1vSEt98q7uN0FBKzfDHSytt+IWo9" + "sha384-Z9sSCL+iZkc22YwU6QRxXGtKnQiiiVLq4aJhoIJNtV0lO9nd12ZwowDrsA/eSxmd" ) # dsfr/static/dsfr/dist/dsfr/dsfr.min.css INTEGRITY_CSS = ( - "sha384-4CMBG/bSDnHTO4BzePaP0c1y81c6oAT2XKpjVi1vzQl4AtMBSoAuUVv5XgRNXJAj" + "sha384-0Wd1nuoasQg34LmqHZNv9t0sGc6FlxNcUC7O56SJSKhI4mgZ51FVEZ8v0QnPFN3U" ) # dsfr/static/dsfr/dist/utility/utility.min.css INTEGRITY_UTILITY_CSS = ( - "sha384-7DgtzNVlfgQPXR8dC0YC0qMsYq/wDVFqzJsy/0/3Q1p/3soyIJ0aSCW/irxwCULC" + "sha384-pXDVyHuMGAo5xGPXnYhmr6rOcGwSZsrAVCJdC6J2PRRxcJL9jFMK//yzaUqMhsBw" ) # dsfr/static/dsfr/dist/utility/icons/icons.min.css INTEGRITY_CSS_ICONS = ( - "sha384-9XiAQTV9X3oegGjiifYadK7WYTRNklIky/o92k7VGo8d3zL+cG7P24qxjWzCwDMz" + "sha384-00cql3NHF4SSck9bB/Ca/LHBQnO4sy17TUWBr2QlKc1fqcPQ9EIG4g6Mt22uP9Vp" ) # dsfr/static/dsfr/dist/favicon/apple-touch-icon.png diff --git a/dsfr/management/commands/make_icon_picker_files.py b/dsfr/management/commands/make_icon_picker_files.py index ee29b2435..8b2e2d6a3 100644 --- a/dsfr/management/commands/make_icon_picker_files.py +++ b/dsfr/management/commands/make_icon_picker_files.py @@ -41,5 +41,6 @@ def handle(self, *args, **options): json_file = os.path.join(json_root, dsfr_folder_json) with open(json_file, "w") as fp: json.dump(icons_dict, fp) + fp.write("\n") print("Folders created or updated: ", all_folders) diff --git a/dsfr/static/dsfr/dist/analytics/analytics.module.min.js b/dsfr/static/dsfr/dist/analytics/analytics.module.min.js index f581d7453..7f3be0b65 100644 --- a/dsfr/static/dsfr/dist/analytics/analytics.module.min.js +++ b/dsfr/static/dsfr/dist/analytics/analytics.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const t=window.dsfr,e="a4e35ba2a938ba9d007689dbf3f46acbb9807869",s={MANUAL:"manual",LOAD:"load",FULL:"full",HASH:"hash"},i="_EA_",n=`${i}disabled`,r=`${i}toggle`;const a=new class{constructor(){this._configure()}_configure(){const t=this;window[n]=()=>t.isDisabled,window[r]=this.toggle.bind(this)}get isDisabled(){return localStorage.getItem(i)}toggle(){this.isDisabled?this.enable():this.disable()}enable(){localStorage.getItem(i)&&localStorage.removeItem(i)}disable(){localStorage.setItem(i,"1")}},o="EA_push";class l{constructor(t){this._domain=t,this._isLoaded=!1,this._promise=new Promise(((t,e)=>{this._resolve=t,this._reject=e}))}get id(){return this._id}get store(){return this._store}configure(){return this.init(),this._promise}init(){let e=5381;for(let t=this._domain.length-1;t>0;t--)e=33*e^this._domain.charCodeAt(t);e>>>=0,this._id=`_EA_${e}`,this._store=[],this._store.eah=this._domain,window[this._id]=this._store,window[o]||(window[o]=(...t)=>this.store.push(t)),a.isDisabled?(t.inspector.warn("User opted out, eulerian is disabled"),this._reject("User opted out, eulerian is disabled")):this.load()}load(){const t=new Date/1e7|0,e=t%26,s=String.fromCharCode(97+e,122-e,65+e)+t%1e3;this._script=document.createElement("script"),this._script.ea=this.id,this._script.async=!0,this._script.addEventListener("load",this.loaded.bind(this)),this._script.addEventListener("error",this.error.bind(this)),this._script.src=`//${this._domain}/${s}.js?2`;const i=document.getElementsByTagName("script")[0];i.parentNode.insertBefore(this._script,i)}error(){t.inspector.error("unable to load Eulerian script file. the domain declared in your configuration must match the domain provided by the Eulerian interface (tag creation)"),this._reject("eulerian script loading error")}loaded(){this._isLoaded||(this._isLoaded=!0,this._resolve())}}const c=-1,h=0,u=1,g=2,d=3;class _{constructor(t){this._config=t,this._state=c,this._promise=new Promise(((t,e)=>{this._resolve=t,this._reject=e}))}configure(){if(this._state>=u)return this._promise;this._state===c&&(t.inspector.info("analytics configures tarteaucitron"),this._state=h);const e=window.tarteaucitron;if(!e||!e.services)return void window.requestAnimationFrame(this.configure.bind(this));this._state=u;const s={key:"eulerian",type:"analytic",name:"Eulerian Analytics",needConsent:!0,cookies:["etuix"],uri:"https://eulerian.com/vie-privee",js:this.init.bind(this),fallback:()=>{e.services.eulerian.js()}};return e.services.eulerian=s,e.job||(e.job=[]),e.job.push("eulerian"),this._promise}init(){if(this._state>=g)return;this._state=g,window.__eaGenericCmpApi=this.integrate.bind(this);const t=this.update.bind(this);window.addEventListener("tac.close_alert",t),window.addEventListener("tac.close_panel",t)}integrate(e){this._state>=d||(this._state=d,this._cmpApi=e,t.inspector.info("analytics has integrated tarteaucitron"),this._resolve(),this.update())}update(){this._state{"function"==typeof window.EA_push?(t.inspector.info("analytics",e,s),window.EA_push(e,s)):t.inspector.warn("Analytics datalayer not sent, Eulerian API isn't yet avalaible")},b={COLLECTOR:"collector",ACTION:"action",ACTION_PARAMETER:"actionparam"};const f=new class{constructor(){this._renderables=[],this._rendering=this.render.bind(this),requestAnimationFrame(this._rendering)}add(t){-1===this._renderables.indexOf(t)&&this._renderables.push(t)}remove(t){const e=this._renderables.indexOf(t);e>-1&&this._renderables.splice(e,1)}render(){this._renderables.forEach((t=>t.render())),requestAnimationFrame(this._rendering)}},y={ENFORCE:"enforce",PREVENT:"prevent",NONE:"none"};class N{constructor(t,e){this._action=t,this._data=e}test(t){return this._action===t}start(){return this._action.start(this._data)}end(){return this._action.end(this._data)}}const T=new class{constructor(){this._startingActions=[],this._endingActions=[],this._handlingVisibilityChange=this._handleVisibilityChange.bind(this),this._handlingEnd=this._handleEnd.bind(this),this._isStarted=!1,this._isListening=!1,this.reset()}setCollector(t){this._collector=t}reset(t=!1){this._type=b.ACTION,t||(this._startingActions.length=0),this._endingActions.length=0,this._count=0,this._delay=-1,this._isRequested=!1,this._unlisten()}start(){this._isStarted||(this._isStarted=!0,f.add(this))}collect(){this._type=b.COLLECTOR,this._request()}regulate(e,s){if(!e)return!1;if(s.some((t=>t.test(e))))return t.inspector.log("action exists in queue",e),!1;switch(e.regulation){case y.PREVENT:return!1;case y.ENFORCE:return!0;default:return this._collector.isActionEnabled}}appendStartingAction(t,e){if(!this.regulate(t,this._startingActions))return;const s=new N(t,e);this._startingActions.push(s),this._request()}appendEndingAction(t,e){if(!this.regulate(t,this._endingActions))return;const s=new N(t,e);this._endingActions.push(s),this._request()}_request(){this._listen(),this._isRequested=!0,this._delay=4}_listen(){this._isListening||(this._isListening=!0,document.addEventListener("visibilitychange",this._handlingVisibilityChange),document.addEventListener("unload",this._handlingEnd),document.addEventListener("beforeunload",this._handlingEnd),document.addEventListener("pagehide",this._handlingEnd))}_unlisten(){this._isListening&&(this._isListening=!1,document.removeEventListener("visibilitychange",this._handlingVisibilityChange),document.removeEventListener("unload",this._handlingEnd),document.removeEventListener("beforeunload",this._handlingEnd),document.removeEventListener("pagehide",this._handlingEnd))}_handleVisibilityChange(t){"hidden"===document.visibilityState&&this.send()}_handleEnd(){this.send()}render(){if(!(this._delay<=-1))switch(this._delay--,this._count++,!0){case this._count>20:case 0===this._delay:this.send()}}send(t=!1){if(!this._isRequested)return;const e=[];t||e.push(...this._startingActions.map((t=>t.start())).filter((t=>t.length>0))),e.push(...this._endingActions.map((t=>t.end())).filter((t=>t.length>0)));const s=e.length/80+1|0,i=[];for(let t=0;t0){const e=i.splice(0,1)[0];e.length>0&&t.push.apply(t,e)}t.flat(),t.length>0&&m(b.COLLECTOR,t)}if(i.length>0)for(let t=0;t0&&m(b.ACTION,e)}this.reset(t)}};const E=new class{get debugger(){return window._oEa}get isActive(){return!!this.debugger&&"1"===this.debugger._dbg}set isActive(t){this.debugger&&this.isActive!==t&&this.debugger.debug(t?1:0)}},v={CONNECTED:{id:"connected",value:"connecté",isConnected:!0,isDefault:!0},ANONYMOUS:{id:"anonymous",value:"anonyme",isConnected:!1,isDefault:!0},GUEST:{id:"guest",value:"invité",isConnected:!1}},A={INDIVIDUAL:{id:"individual",value:"part"},PROFESSIONNAL:{id:"professionnal",value:"pro"}};var C={"0x0022":""","0x0024":"$","0x0026":"&","0x0027":"'","0x002a":"*","0x002c":",","0x003c":"<","0x003e":">","0x003f":"?","0x005c":"\","0x005e":"^","0x0060":"`","0x007c":"|","0x007e":"~"};const L=t=>t?t=(t=(t=[...t].map((t=>C[(t=>{const e=t.charCodeAt(0).toString(16);return"0x0000".slice(0,-e.length)+e})(t)]||t)).join("")).replace(/\s+/g," ").replace(/\s/g,"_")).toLowerCase():t,I=(e,s,i=!0)=>{switch(!0){case"number"==typeof e:return`${e}`;case"string"==typeof e:return e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a String`),null},S=(e,s,i=!0)=>{switch(!0){case!isNaN(e):return e;case"string"==typeof e&&!isNaN(Number(e)):return Number(e);case void 0===e&&i:case null===e&&i:return-1}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a Number`),null},O=(e,s)=>{switch(!0){case"boolean"==typeof e:return e;case"string"==typeof e&&"true"===e.toLowerCase():case"1"===e:case 1===e:return!0;case"string"==typeof e&&"false"===e.toLowerCase():case"0"===e:case 0===e:return!1;case void 0===e:case null===e:return e}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a Boolean`),null},w=(e,s,i=!0)=>{switch(!0){case"string"==typeof e&&/^[A-Za-z]{2}$|^[A-Za-z]{2}[-_]/.test(e):return e.split(/[-_]/)[0].toLowerCase();case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting language as a String following ISO 639-1 format`),null},x=(e,s,i=!0)=>{switch(!0){case"string"==typeof e:return/^FR-[A-Z0-9]{2,3}$/.test(e)||t.inspector.warn(`value '${e}' set at analytics.${s} with wrong format. Geographic location should be a String following ISO 3166-2:FR format`),e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting geographic location as a String following ISO 3166-2:FR format`),null},k=t=>t.toISOString().split("T")[0];class ${constructor(t){this._config=t||{}}reset(t=!1){this._isConnected=!1,this.status=v.ANONYMOUS,!t&&this._config.connect?this.connect(this._config.connect.uid,this._config.connect.email,this._config.connect.isNew):(this._uid=void 0,this._email=void 0,this._isNew=!1),this.profile=t?void 0:this._config.profile,this.language=t?void 0:this._config.language,this.type=t?void 0:this._config.type}connect(e,s,i=!1){this._uid=I(e,"user.uid"),/^[a-zA-Z0-9!#$%&'*+/=?^_`{|}~.-]{2,}@[a-zA-Z0-9-]{2,}\.[a-zA-Z]{2,}$/.test(s)&&t.inspector.warn("Please check analytics.user.email is properly encrypted "),this._email=I(s,"user.email"),this._isNew=O(i),this._isConnected=!0,this.status=v.CONNECTED}get uid(){return this._uid}get email(){return this._email}get isNew(){return this._isNew}set status(t){const e=Object.values(v).filter((t=>t.isConnected===this._isConnected));this._status=e.filter((e=>e.id===t||e.value===t))[0]||e.filter((t=>t.isDefault))[0]}get status(){return this._status.id}set profile(t){const e=I(t,"user.profile");null!==e&&(this._profile=e)}get profile(){return this._profile.id}set language(t){const e=w(t,"user.language");null!==e&&(this._language=e)}get language(){return this._language||navigator.language}set type(t){this._type=Object.values(A).filter((e=>e.id===t||e.value===t))[0]}get type(){return this._type.id}get layer(){const t=[];return this.uid&&t.push("uid",L(this.uid)),this.email&&t.push("email",L(this.email)),this.isNew&&t.push("newcustomer","1"),this.language&&t.push("user_language",this.language),t.push("user_login_status",this._status.value),this._profile&&t.push("profile",this._profile),this._type&&t.push("user_type",this._type.value),t}}$.Status=v,$.Type=A;const D={DEVELOPMENT:{id:"development",value:"dev"},STAGE:{id:"stage",value:"stage"},PRODUCTION:{id:"production",value:"prod"}};class R{constructor(t){this._config=t||{}}reset(e=!1){this.environment=e?D.DEVELOPMENT.id:this._config.environment,this.entity=e?void 0:this._config.entity,this.language=e?void 0:this._config.language,this.target=e?void 0:this._config.target,this.type=e?void 0:this._config.type,this.region=e?void 0:this._config.region,this.department=e?void 0:this._config.department,this.version=e?void 0:this._config.version,this._api=t.version}set environment(t){switch(t){case D.PRODUCTION.id:case D.PRODUCTION.value:this._environment=D.PRODUCTION;break;case D.STAGE.id:case D.STAGE.value:this._environment=D.STAGE;break;case D.DEVELOPMENT.id:case D.DEVELOPMENT.value:default:this._environment=D.DEVELOPMENT}}get environment(){return this._environment?this._environment.id:D.DEVELOPMENT.id}set entity(t){const e=I(t,"site.entity");null!==e&&(this._entity=e)}get entity(){return this._entity}set language(t){const e=w(t,"site.language");null!==e&&(this._language=e)}get language(){return this._language||document.documentElement.lang}set target(t){const e=I(t,"site.target");null!==e&&(this._target=e)}get target(){return this._target}set type(t){const e=I(t,"site.type");null!==e&&(this._type=e)}get type(){return this._type}set region(t){const e=x(t,"site.region");null!==e&&(this._region=e)}get region(){return this._region}set department(t){const e=x(t,"site.department");null!==e&&(this._department=e)}get department(){return this._department}set version(t){const e=I(t,"site.version");null!==e&&(this._version=e)}get version(){return this._version}get api(){return this._api}get layer(){const e=[];return e.push("site_environment",this._environment.value),this.entity?e.push("site_entity",L(this.entity)):t.inspector.warn("entity is required in analytics.site"),this.language&&e.push("site_language",this.language),this.target&&e.push("site_target",L(this.target)),this.type&&e.push("site_type",L(this.type)),this.region&&e.push("site_region",this.region),this.department&&e.push("site_department",this.department),this.version&&e.push("site_version",this.version),this.api&&e.push("api_version",this.api),e}}R.Environment=D;const P={accordion:t.internals.ns.selector("accordion"),alert:t.internals.ns.selector("alert"),badge:t.internals.ns.selector("badge"),breadcrumb:t.internals.ns.selector("breadcrumb"),button:t.internals.ns.selector("btn"),callout:t.internals.ns.selector("callout"),card:t.internals.ns.selector("card"),checkbox:t.internals.ns.selector("checkbox-group"),connect:t.internals.ns.selector("connect"),consent:t.internals.ns.selector("consent-banner"),content:t.internals.ns.selector("content-media"),download:t.internals.ns.selector("download"),follow:t.internals.ns.selector("follow"),footer:t.internals.ns.selector("footer"),header:t.internals.ns.selector("header"),highlight:t.internals.ns.selector("highlight"),input:t.internals.ns.selector("input-group"),link:t.internals.ns.selector("link"),modal:t.internals.ns.selector("modal"),navigation:t.internals.ns.selector("nav"),notice:t.internals.ns.selector("notice"),pagination:t.internals.ns.selector("pagination"),quote:t.internals.ns.selector("quote"),radio:t.internals.ns.selector("radio-group"),search:t.internals.ns.selector("search-bar"),select:t.internals.ns.selector("select"),share:t.internals.ns.selector("share"),sidemenu:t.internals.ns.selector("sidemenu"),stepper:t.internals.ns.selector("stepper"),summary:t.internals.ns.selector("summary"),tab:t.internals.ns.selector("tabs"),table:t.internals.ns.selector("table"),tag:t.internals.ns.selector("tag"),tile:t.internals.ns.selector("tile"),toggle:t.internals.ns.selector("toggle"),tooltip:t.internals.ns.selector("tooltip"),transcription:t.internals.ns.selector("transcription"),translate:t.internals.ns.selector("translate"),upload:t.internals.ns.selector("upload-group")},M="collectable",B="collecting",F="collected";class U{constructor(t){this._config=t||{},this._state=M}reset(t=!1){this.path=t?"":this._config.path,this.referrer=t?"":this._config.referrer,this.title=t?"":this._config.title,this.name=t?"":this._config.name,this.id=t?"":this._config.id,this.author=t?"":this._config.author,this.date=t?"":this._config.date,this._labels=t||!this._config.labels?["","","","",""]:this._config.labels,this._labels.length=5,this._tags=t||!this._config.tags?[]:this._config.tags,this._categories=t||!this._config.categories?["","",""]:this._config.categories,this.isError=!t&&this._config.isError,this.template=t?"":this._config.template,this.group=t?"":this._config.group,this.segment=t?"":this._config.segment,this.subtemplate=t?"":this._config.subtemplate,this.theme=t?"":this._config.theme,this.subtheme=t?"":this._config.subtheme,this.related=t?"":this._config.related,this.depth=t||isNaN(this._config.depth)?0:this._config.depth,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this._filters=t||!this._config.filters?[]:this._config.filters}collecting(){return this._state!==M?(t.inspector.warn(`current path '${this.path}' was already collected`),!1):(this._state=B,!0)}get isCollecting(){return this._state===B}set path(t){const e=I(t,"page.path");null!==e&&(this._path=e,this._state=M)}get path(){return this._path||`${document.location.pathname}${document.location.search}`}set referrer(t){const e=I(t,"page.referrer");null!==e&&(this._referrer=e)}get referrer(){return this._referrer}set title(t){const e=I(t,"page.title");null!==e&&(this._title=e)}get title(){return this._title||document.title}set id(t){const e=I(t,"page.id");null!==e&&(this._id=e)}get id(){return this._id}set author(t){const e=I(t,"page.author");null!==e&&(this._author=e)}get author(){return this._author}set date(e){const s=((e,s,i=!0)=>{switch(!0){case e instanceof Date:return k(e);case"string"==typeof e:{const t=new Date(e);if("Invalid Date"!==t.toString())return k(t);break}case void 0===e&&i:case null===e&&i:return null}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a Date`),null})(e,"page.date");null!==s&&(this._date=s)}get date(){return this._date}get tags(){return this._tags}set name(t){const e=I(t,"page.name");null!==e&&(this._name=e)}get name(){return this._name||this.title}get labels(){return this._labels}get categories(){return this._categories}set isError(t){const e=O(t,"page.isError");null!==e&&(this._isError=e)}get isError(){return this._isError}set template(t){const e=I(t,"page.template");null!==e&&(this._template=e)}get template(){return this._template||"autres"}set segment(t){const e=I(t,"page.segment");null!==e&&(this._segment=e)}get segment(){return this._segment||this.template}set group(t){const e=I(t,"page.group");null!==e&&(this._group=e)}get group(){return this._group||this.template}set subtemplate(t){const e=I(t,"page.subtemplate");null!==e&&(this._subtemplate=e)}get subtemplate(){return this._subtemplate}set theme(t){const e=I(t,"page.theme");null!==e&&(this._theme=e)}get theme(){return this._theme}set subtheme(t){const e=I(t,"page.subtheme");null!==e&&(this._subtheme=e)}get subtheme(){return this._subtheme}set related(t){const e=I(t,"page.related");null!==e&&(this._related=e)}get related(){return this._related}set depth(t){const e=S(t,"page.depth");null!==e&&(this._depth=e)}get depth(){return this._depth}set current(t){const e=S(t,"page.current");null!==e&&(this._current=e)}get current(){return this._current}set total(t){const e=S(t,"page.total");null!==e&&(this._total=e)}get total(){return this._total}get filters(){return this._filters}get layer(){this._state=F;const t=[];this.path&&t.push("path",L(this.path)),this.referrer&&t.push("referrer",L(this.referrer)),this.title&&t.push("page_title",L(this.title)),this.name&&t.push("page_name",L(this.name)),this.id&&t.push("page_id",L(this.id)),this.author&&t.push("page_author",L(this.author)),this.date&&t.push("page_date",L(this.date));const e=Object.keys(P).map((t=>null!==document.querySelector(P[t])?t:null)).filter((t=>null!==t)).join(",");e&&t.push("page_components",e);const s=this._labels.slice(0,5);s.length=5,s.some((t=>t))&&t.push("pagelabel",s.map((t=>"string"==typeof t?L(t):"")).join(","));const i=this._tags;if(i.some((t=>t))&&t.push("pagetag",i.map((t=>"string"==typeof t?L(t):"")).join(",")),this._categories.forEach(((e,s)=>{e&&t.push(`page_category${s+1}`,e)})),this._isError&&t.push("error","1"),t.push("page_template",L(this.template)),t.push("pagegroup",L(this.group)),t.push("site-segment",L(this.segment)),this.subtemplate&&t.push("page_subtemplate",L(this.subtemplate)),this.theme&&t.push("page_theme",L(this.theme)),this.subtheme&&t.push("page_subtheme",L(this.subtheme)),this.related&&t.push("page_related",L(this.related)),isNaN(this.depth)||t.push("page_depth",this.depth),!isNaN(this.current)&&this.current>-1){let e=`${this.current}`;!isNaN(this.total)&&this.total>-1&&(e+=`/${this.total}`),t.push("page_pagination",e)}if(this.filters.length&&this.filters.some((t=>t))){const e=this.filters.map((t=>"string"==typeof t?L(t):""));t.push("page_filters",e.join(","))}return t}}const q={STANDARD:{id:"standard",value:"standard",isDefault:!0},AUTOCOMPLETE:{id:"autocomplete",value:"autocompletion"}};class j{constructor(t){this._config=t||{}}reset(t=!1){this.engine=t?void 0:this._config.engine,this.results=t||isNaN(this._config.results)?-1:this._config.results,this.terms=t?void 0:this._config.terms,this.category=t?void 0:this._config.category,this.theme=t?void 0:this._config.theme,this.type=t?void 0:this._config.type,this.method=t?void 0:this._config.method}set engine(t){const e=I(t,"search.engine");null!==e&&(this._engine=e)}get engine(){return this._engine}set results(t){const e=S(t,"search.results");null!==e&&(this._results=e)}get results(){return this._results}set terms(t){const e=I(t,"search.terms");null!==e&&(this._terms=e)}get terms(){return this._terms}set category(t){const e=I(t,"search.category");null!==e&&(this._category=e)}get category(){return this._category}set theme(t){const e=I(t,"search.theme");null!==e&&(this._theme=e)}get theme(){return this._theme}set type(t){const e=I(t,"search.type");null!==e&&(this._type=e),this._type=t}get type(){return this._type}set method(t){const e=Object.values(q);this._method=e.filter((e=>e.id===t||e.value===t))[0]||e.filter((t=>t.isDefault))[0]}get method(){return this._method}get layer(){const t=[];return this.engine&&t.push("isearchengine",L(this.engine)),this.results>-1&&t.push("isearchresults",this.results),this.terms&&t.push("isearchkey","search_terms","isearchdata",L(this.terms)),this.category&&t.push("isearchkey","search_category","isearchdata",L(this.category)),this.theme&&t.push("isearchkey","search_theme","isearchdata",L(this.theme)),this.type&&t.push("isearchkey","search_type","isearchdata",L(this.type)),this._method&&t.length&&t.push("isearchkey","search_method","isearchdata",this._method.value),t}}j.Method=q;class H{constructor(t){this._config=t||{}}reset(t=!1){this.id=t?void 0:this._config.id,this.type=t?void 0:this._config.type,this.name=t?void 0:this._config.name,this.step=t?void 0:this._config.step,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this.objective=t?void 0:this._config.objective,this.error=t?void 0:this._config.error}set id(t){const e=I(t,"funnel.id");null!==e&&(this._id=e)}get id(){return this._id}set type(t){const e=I(t,"funnel.type");null!==e&&(this._type=e)}get type(){return this._type}set name(t){const e=I(t,"funnel.name");null!==e&&(this._name=e)}get name(){return this._name}set step(t){const e=I(t,"funnel.step");null!==e&&(this._step=e)}get step(){return this._step}set current(t){const e=S(t,"funnel.current");null!==e&&(this._current=e)}get current(){return this._current}set total(t){const e=S(t,"funnel.total");null!==e&&(this._total=e)}get total(){return this._total}set objective(t){const e=I(t,"funnel.objective");null!==e&&(this._objective=e),this._objective=t}get objective(){return this._objective}set error(t){const e=I(t,"funnel.error");null!==e&&(this._error=e),this._error=t}get error(){return this._error}get layer(){const t=[];return this.id&&t.push("funnel_id",L(this.id)),this.type&&t.push("funnel_type",L(this.type)),this.name&&t.push("funnel_name",L(this.name)),this.step&&t.push("funnel_step_name",L(this.step)),!isNaN(this.current)&&this.current>-1&&t.push("funnel_step_number",this.current),!isNaN(this.total)&&this.total>-1&&t.push("funnel_step_max",this.total),this.objective&&t.push("funnel_objective",L(this.objective)),this.error&&t.push("funnel_error",L(this.error)),t}}const K={IN:"in",OUT:"out",NONE:"none"},V={id:"unstarted",value:-1},G={id:"started",value:1},W={id:"singular",value:2},Y={id:"ended",value:3},z=t=>Object.entries(t).map((([t,e])=>["actionpname",L(t),"actionpvalue",L(e)])).flat();class Z{constructor(t){this._isMuted=!1,this._regulation=y.NONE,this._name=t,this._status=V,this._labels=[],this._parameters={},this._sentData=[]}get isMuted(){return this._isMuted}set isMuted(t){this._isMuted=t}get regulation(){return this._regulation}set regulation(t){Object.values(y).includes(t)&&(this._regulation=t)}get isSingular(){return this._status===W}get status(){return this._status}get name(){return this._name}get labels(){return this._labels}get reference(){return this._reference}get parameters(){return this._parameters}get mode(){return this._mode}singularize(){this._status=W}rewind(){this._sentData=[],this._status=V}addParameter(t,e){this._parameters[t]=e}removeParameter(t){delete this._parameters[t]}set reference(t){const e=I(t,`action ${this._name}`);null!==e&&(this._reference=e)}get _base(){return["actionname",this._name]}_getLayer(t={}){if(this._isMuted)return[];this._mode!==K.IN&&this._sentData.push(JSON.stringify(t));const e=this._base;switch(this._mode){case K.IN:case K.OUT:e.push("actionmode",this._mode)}const s=this._labels.slice(0,5);return s.length=5,s.some((t=>t))&&e.push("actionlabel",s.map((t=>"string"==typeof t?L(t):"")).join(",")),this._reference&&e.push("actionref",this._reference),e.push.apply(e,z(Object.assign(this._parameters,t||{}))),e}start(e){switch(this._status){case V:this._mode=K.IN,this._status=G;break;case W:this._mode=K.NONE,this._status=Y;break;default:return t.inspector.error(`unexpected start on action ${this._name} with status ${this._status.id}`),[]}return this._getLayer(e)}end(t){switch(this._status){case G:this._mode=K.OUT,this._status=Y;break;case V:case W:this._mode=K.NONE,this._status=Y;break;case Y:if(this._sentData.includes(JSON.stringify(t)))return[];this._mode=K.NONE,this._status=Y;break;default:return[]}return this._getLayer(t)}resume(e){if(this._isMuted)return[];if(this._status.value>=Y.value)return t.inspector.error(`unexpected resuming on action ${this._name} with status ${this._status.id}`),[];const s=this._base;return e&&s.push.apply(s,z(e)),s}}class X{constructor(){this._actions=[]}rewind(){this._actions.forEach((t=>t.rewind()))}getAction(t){let e=this._actions.filter((e=>e.name===t))[0];return e||(e=new Z(t),this._actions.push(e)),e}hasAction(t){return this._actions.some((e=>e.name===t))}remove(t){const e=this._actions.indexOf(t);return-1!==e&&(this._actions.splice(e,1),!0)}}X.ActionMode=K;const Q=new X;X.instance=Q;class J{constructor(t,e=!1){this._onRouteChange=t,this._isListeningHash=e,this._update(),f.add(this)}_update(){this._pathname=document.location.pathname,this._search=document.location.search,this._hash=document.location.hash,this._path=`${this._pathname}${this._search}`,this._isListeningHash&&(this._path+=this._hash),this._hasTitle=this._title===document.title,this._title=document.title}render(){this._pathname===document.location.pathname&&this._search===document.location.search||this.change(),this._isListeningHash&&this._hash!==document.location.hash&&this.change()}change(){this._referrer=this._path,this._update(),this._onRouteChange()}get path(){return this._path}get hasTitle(){return this._hasTitle}get title(){return this._title}get referrer(){return this._referrer}}const tt={COLLECT:t.internals.ns.event("collect")},et={REWIND:t.internals.ns.emission("analytics","rewind")};class st{constructor(e){switch(e.collection){case s.MANUAL:case s.LOAD:case s.FULL:case s.HASH:this._collection=e.collection;break;default:if(e.mode&&"manual"===e.mode)this._collection=e.collection;switch(!0){case"manual"===e.mode:this._collection=s.MANUAL;break;case t.mode===t.Modes.ANGULAR:case t.mode===t.Modes.REACT:case t.mode===t.Modes.VUE:this._collection=s.FULL;break;default:this._collection=s.LOAD}}this._isActionEnabled="false"===e.isActionEnabled||e.isActionEnabled,this._user=new $(e.user),this._site=new R(e.site),this._page=new U(e.page),this._search=new j(e.search),this._funnel=new H(e.funnel),this._delay=-1,T.setCollector(this)}get page(){return this._page}get user(){return this._user}get site(){return this._site}get search(){return this._search}get funnel(){return this._funnel}start(){const t=this._handleRouteChange.bind(this);switch(this._collection){case s.LOAD:this.collect();break;case s.FULL:this.collect(),this._location=new J(t);break;case s.HASH:this.collect(),this._location=new J(t,!0)}}_handleRouteChange(){T.send(!0),this._delay=6,f.add(this)}render(){this._delay--,this._delay<0&&(f.remove(this),this._routeChanged())}_routeChanged(){Q.rewind(),this._page.referrer=this._location.referrer,this._location.hasTitle&&(this._page.title=this._location.title),this._page.path=this._location.path;const e=new CustomEvent(tt.COLLECT);document.documentElement.dispatchEvent(e),this.collect(),t.internals&&t.internals.stage&&t.internals.stage.root&&t.internals.stage.root.descend(et.REWIND)}reset(t=!1){this._user.reset(t),this._site.reset(t),this._page.reset(t),this._search.reset(t),this._funnel.reset(t)}collect(){this.page.collecting()&&T.collect()}get collection(){return this._collection}get isCollecting(){return this._page.isCollecting}get isActionEnabled(){return this._isActionEnabled}set isActionEnabled(t){this._isActionEnabled=t}get layer(){return[...this._user.layer,...this._site.layer,...this._page.layer,...this._search.layer,...this._funnel.layer]}}const it=new class{constructor(){this._isReady=!1,this._readiness=new Promise(((t,e)=>{this._isReady?t():(this._resolve=t,this._reject=e)})),this._configure()}_configure(){switch(!0){case void 0!==window[e]:this._config=window[e].configuration.analytics,window[e].promise.then(this._build.bind(this),(()=>{}));break;case void 0!==t.internals&&void 0!==t.internals.configuration&&void 0!==t.internals.configuration.analytics&&void 0!==t.internals.configuration.analytics.domain:this._config=t.internals.configuration.analytics,this._build();break;case void 0!==t.analytics&&void 0!==t.analytics.domain:this._config=t.analytics,this._build();break;default:t.inspector.warn("analytics configuration is incorrect or missing (required : domain)")}}_build(){this._init=new l(this._config.domain),this._init.configure().then(this._start.bind(this),(t=>this._reject(t)))}get isReady(){return this._isReady}get readiness(){return this._readiness}_start(){this._isReady||(this._cmp=new p(this._config.cmp),this._collector=new st(this._config),this._collector.reset(),this._isReady=!0,this._resolve(),T.start(),this._collector.start())}get page(){return this._collector.page}get user(){return this._collector.user}get site(){return this._collector._site}get search(){return this._collector.search}get funnel(){return this._collector.funnel}get cmp(){return this._cmp}get opt(){return a}get collection(){return this._collector.collection}get isActionEnabled(){return this._collector.isActionEnabled}set isActionEnabled(t){this._collector.isActionEnabled=t}get isDebugging(){return E.isActive}set isDebugging(t){E.isActive=t}push(t,e){m(t,e)}reset(t=!1){this._collector.reset()}collect(){this._collector.collect()}};it.Collection=s,it.PushType=b;t.analytics=((t,...e)=>(e.forEach((e=>{const s=Object.keys(e).reduce(((t,s)=>(t[s]=Object.getOwnPropertyDescriptor(e,s),t)),{});Object.getOwnPropertySymbols(e).forEach((t=>{const i=Object.getOwnPropertyDescriptor(e,t);i.enumerable&&(s[t]=i)})),Object.defineProperties(t,s)})),t))(it,{});const nt={IMPRESSION:{id:"impression",isSingular:!0,isBeginning:!0,attributed:!1,type:"impression"},CLICK:{id:"click",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},INTERNAL:{id:"internal",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},EXTERNAL:{id:"external",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOWNLOAD:{id:"download",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},BUTTON:{id:"button",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOUBLE_CLICK:{id:"dblclick",isBeginning:!0,attributed:!0,type:"interaction",event:"dblclick",method:"eventListener"},OPEN:{id:"open",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},COMPLETE:{id:"complete",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},FOCUS:{id:"focus",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},ERROR:{id:"error",isSingular:!0,attributed:!1,type:"event"},ADD:{id:"add",isSingular:!0,attributed:!1,type:"event"},REMOVE:{id:"remove",isSingular:!0,attributed:!1,type:"event"},DISPLAY:{id:"display",isSingular:!0,attributed:!1,type:"event"},CHANGE:{id:"change",isSingular:!0,attributed:!0,type:"event",event:"change",method:"change"},PROGRESS:{id:"progress",isBeginning:!0,attributed:!0,type:"event"},SHARE:{id:"share",isBeginning:!0,attributed:!1,type:"interaction"},PRESS:{id:"press",isBeginning:!0,attributed:!1,type:"interaction"},RELEASE:{id:"release",isBeginning:!0,attributed:!1,type:"interaction"},DISMISS:{id:"dismiss",isBeginning:!0,attributed:!1,type:"interaction"},UPLOAD:{id:"upload",isBeginning:!0,attributed:!1,type:"interaction"},CHECK:{id:"check",isBeginning:!0,attributed:!1,type:"interaction"},UNCHECK:{id:"uncheck",isBeginning:!0,attributed:!1,type:"interaction"},SELECT:{id:"select",isBeginning:!0,attributed:!1,type:"interaction"},SUBSCRIBE:{id:"subscribe",isBeginning:!0,attributed:!1,type:"interaction"},DISCLOSE:{id:"disclose",isBeginning:!0,attributed:!1,type:"event"},SEARCH:{id:"search",isBeginning:!0,attributed:!1,type:"event"},SHOW:{id:"show",isSingular:!0,attributed:!1,type:"event"},HIDE:{id:"hide",isSingular:!0,attributed:!1,type:"event"},AUTOPLAY:{id:"autoplay",isBeginning:!0,attributed:!1,type:"event"},PLAY:{id:"play",isBeginning:!0,attributed:!1,type:"interaction"},PAUSE:{id:"pause",isBeginning:!0,attributed:!1,type:"interaction"},END:{id:"end",isBeginning:!0,attributed:!1,type:"event"}},rt="undefined",at="heading",ot="component",lt="content",ct=Node.DOCUMENT_POSITION_PRECEDING|Node.DOCUMENT_POSITION_CONTAINED_BY;class ht{constructor(t){this._label=t.textContent.trim(),this._level=Number(t.tagName.charAt(1))}get level(){return this._level}get label(){return this._label}}class ut{constructor(t,e,s){this._type=rt,this._node=t,this._target=e,this._level=s,this._label="",this._component="",this._isValid=!0,this.analyse()}_parseHeadings(){const t=Array.from({length:this._level},((t,e)=>`h${e+1}`)).join(",");this._headings=Array.from(this._node.querySelectorAll(t)).filter((t=>t===this._node||t.parentNode===this._node||null!=t.parentNode&&t.parentNode.parentNode===this._node)).filter((t=>(this._target.compareDocumentPosition(t)&ct)>0)).map((t=>new ht(t))).reverse()}_getComponent(){if("function"!=typeof t)return!1;const e=t(this._node);if(!e)return!1;const s=Object.values(e).filter((t=>t.isActionee)).sort(((t,e)=>e.priority-t.priority))[0];if(!s)return!1;this._type=ot,this._isValid=s.validate(this._target);const i=Array.from({length:6},((t,e)=>`h${e+1}`)).join(","),n=Array.from(this._node.querySelectorAll(i)).map((t=>new ht(t))).sort(((t,e)=>t.level-e.level))[0];n&&n.level<=this._level&&(this._level=n.level-1);const r=this._node.closest(i);if(r){const t=new ht(r);t.level<=this._level&&(this._level=t.level-1)}return!isNaN(s.level)&&s.level{e.level<=this._level&&(e.level>1&&t.unshift(e.label),this._level=e.level-1)})),!!t.length&&(this._type=at,this._label=t.join(" › "),!0)}analyse(){if(this._parseHeadings(),this._getComponent())return;if(this._getHeading())return;if(this._node!==this._target)return;const t=this._node.textContent.trim();t&&(this._type=lt,this._label=t)}get type(){return this._type}get level(){return this._level}get label(){return this._label}get component(){return this._component}get node(){return this._node}get target(){return this._target}get isValid(){return this._isValid}}class gt{constructor(t){this._node=t,this._process()}_process(){const t=new ut(this._node,this._node,6);this._level=t.level,this._members=[t];let e=this._node.parentNode;for(;document.documentElement.contains(e)&&e!==document.documentElement&&this._level>0;){const t=new ut(e,this._node,this._level);switch(!0){case t.type===rt:case!t.isValid:case t.label===this._members[0].label&&t.type===at&&this._members[0].type===ot:break;case t.label===this._members[0].label&&t.type===ot&&this._members[0].type===at:this._members.splice(0,1,t);break;default:this._members.unshift(t),t.levelt.label)).map((t=>t.label)).join(" › "));const s=this._members.filter((t=>t.component)).map((t=>t.component));this._component=L(s.join(" › ")),this._localComponent=s[s.length-1],this._globalComponent=s[0]}get localComponent(){return this._localComponent}get globalComponent(){return this._globalComponent}get label(){return this._label}get title(){return this._title}get component(){return this._component}}class dt{constructor(t,e,s,i="",n=null,r={},a=!1,o=y.NONE){this._node=t,this._type=e,this._id=s||this._node.id,this._isMuted=!1,this._title=n,this._category=i,this._parameters=r,this._isRating=a,this._regulation=o,this._hasBegun=!1,requestAnimationFrame(this._init.bind(this))}_init(){this._hierarchy=new gt(this._node);let e="",s="";this._id?e=`_[${this._id}]`:t.inspector.warn(`Analytics API requires an id to be set on tracked element. Missing on ${this._node.outerHTML}`),this._type&&(s=`(${this._type.id})_`),this._name=`${s}${this._title||this._hierarchy.title}${e}`,this._action=Q.getAction(this._name,this._type.status),this._type.isSingular&&this._action.singularize(),Object.keys(this._parameters).forEach((t=>this._action.addParameter(t,this._parameters[t]))),this._action.isMuted=this._isMuted,this._action.regulation=this._regulation,this._action.labels[0]=this._type.id,this._action.labels[1]=this._hierarchy.globalComponent,this._action.labels[2]=this._hierarchy.localComponent,this._action.labels[4]=this._category,this._hierarchy.label&&this._action.addParameter("component_label",this._hierarchy.label),this._hierarchy.title&&this._action.addParameter("heading_hierarchy",this._hierarchy.title),this._hierarchy.component&&this._action.addParameter("component_hierarchy",this._hierarchy.component),this.begin()}get isMuted(){return this._action?this._action.isMuted:this._isMuted}set isMuted(t){this._isMuted=t,this._action&&(this._action.isMuted=t)}get regulation(){return this._regulation}set regulation(t){this._regulation=t,this._action&&(this._action.regulation=t)}get action(){return this._action}rewind(){this._hasBegun=!1,this.begin()}begin(t={}){this._hasBegun||(this._hasBegun=!0,this._type.isBeginning&&(this._type.isSingular||this._isRating)&&T.appendStartingAction(this._action,t))}act(t={}){this._isMuted||(this._action?T.appendEndingAction(this._action,t):requestAnimationFrame((()=>this.act(t))))}dispose(){Q.remove(this._action)}}const _t={RATING:t.internals.ns.attr("analytics-rating"),ACTION:t.internals.ns.attr("analytics-action")};class pt extends t.core.Instance{constructor(t=-1,e="",s=null,i=y.NONE){super(),this._type=null,this._priority=t,this._category=e,this._title=s,this._parameters={},this._data={},this._isMuted=!1,this._regulation=i}static get instanceClassName(){return"Actionee"}get proxy(){const e=this,s={validate:(t,s)=>e.validate(t,s)},i={get isActionee(){return!0},get label(){return e.label},get priority(){return e.priority},get level(){return e.level},get node(){return e.node}};return t.internals.property.completeAssign(super.proxy,s,i)}get data(){return this._data}_config(t,e){if(super._config(t,e),null===this._type)return this._sort(t),void(this._isMuted=!0);const s=this.getRegulation();this._regulation=s!==y.NONE?s:this._regulation;const i=this.getAttribute(_t.ACTION),n="string"==typeof i&&"false"!==i.toLowerCase()&&"true"!==i.toLowerCase()?L(i):this._title;this._isRating=this.hasAttribute(_t.RATING),this._actionElement=new dt(this.node,this._type,this.id,this._category,n,this._parameters,this._isRating,this._regulation),this._isMuted&&(this._actionElement.isMuted=!0),this.addDescent(et.REWIND,this.rewind.bind(this)),this._sort(t)}getRegulation(){const t=this.getAttribute(_t.ACTION);switch(!0){case"string"==typeof t&&"false"===t.toLowerCase():return y.PREVENT;case null!==t:return y.ENFORCE;default:return y.NONE}}mutate(t){if(t.includes(_t.ACTION)){const t=this.getRegulation();this._regulation!==t&&(this._regulation=t,this._actionElement&&(this._actionElement.regulation=t))}super.mutate(t)}_sort(t){const e=t.instances.filter((t=>t.isActionee)).sort(((t,e)=>e.priority-t.priority));e.length<=1||e.forEach(((t,e)=>{t.isMuted=e>0}))}get isMuted(){return this._actionElement?this._actionElement.isMuted:this._isMuted}set isMuted(t){this._isMuted=t,this._actionElement&&(this._actionElement.isMuted=t)}get priority(){return this._priority}setPriority(t){this._priority=t}get isInteractive(){return"A"===this.node.tagName||"BUTTON"===this.node.tagName}detectInteractionType(t){t||(t=this.node);const e=t.tagName,s=t.getAttribute("href"),i=t.hasAttribute("download"),n=t.hostname;switch(!0){case"A"!==e:this._type=nt.CLICK;break;case i:this._type=nt.DOWNLOAD,this.value=s;break;case n===location.hostname:this._type=nt.INTERNAL,this.value=s;break;case n.length>0:this._type=nt.EXTERNAL,this.value=s;break;default:this._type=nt.CLICK}}setClickType(){this._type=nt.CLICK}listenActionClick(t){t?(this._clickTarget=t,this._clickTarget.addEventListener("click",this._handlingClick,{capture:!0})):this.listenClick({capture:!0})}handleClick(){this.act()}setImpressionType(){this._type=nt.IMPRESSION}rewind(){this._actionElement&&this._actionElement.rewind()}act(t={}){void 0!==this._actionElement&&(this._data.component_value=this.value,this._actionElement.act(Object.assign(this._data,t)))}getFirstText(t){if(t||(t=this.node),t.childNodes&&t.childNodes.length>0){for(let e=0;e50?`${t.substring(0,50).trim()}[...]`:t}getInteractionLabel(){const t=this.getAttribute("title");if(t)return this.cropText(t);const e=this.getFirstText();if(e)return e;const s=this.node.querySelector("img");if(s){const t=s.getAttribute("alt");if(t)return this.cropText(t)}return null}getHeadingLabel(t=6){const e=Array.from({length:t},((t,e)=>`h${e+1}`)).join(","),s=Array.from(this.querySelectorAll(e)).filter((t=>(this.node.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)>0));if(s.length)for(const t of s){const e=this.getFirstText(t);if(e)return e}}detectLevel(t){t||(t=this.node);const e=Array.from({length:6},((t,e)=>`h${e+1}`)).join(","),s=Array.from(t.querySelectorAll(e)).map((t=>Number(t.tagName.charAt(1))));s.length&&(this._level=Math.min.apply(null,s)-1)}validate(t){return!0}get actionElement(){return this._actionElement}get label(){return null}get value(){return this._value||this.label}set value(t){this._value=t}get isActionee(){return!0}get level(){return this._level}get type(){return this._type}dispose(){this._clickTarget&&this._clickTarget.removeEventListener("click",this._handlingClick),super.dispose()}}class mt extends pt{constructor(){super(100,"",null,!0)}static get instanceClassName(){return"AttributeActionee"}init(){this._attribute=this.registration.selector.replace(/[[\]]/g,"");const t=this._attribute.split("-").pop();switch(this._type=Object.values(nt).filter((e=>e.id===t))[0],this._title=this.getAttribute(this._attribute),this._type===nt.CLICK&&this.detectInteractionType(),this._type.method){case"eventListener":this.listen(this._type.event,this.handleEvent.bind(this));break;case"change":this.listen(this._type.event,this.handleChange.bind(this))}}handleEvent(t){this._actionElement.act()}handleChange(t){this._actionElement.act({change_value:t.target.value})}dispose(){this._actionElement.dispose(),super.dispose()}}const bt={CLICK:t.internals.ns.emission("button","click")};class ft extends pt{constructor(t=-1){super(t,"dsfr_component")}static get instanceClassName(){return"ComponentActionee"}get proxy(){const e=this,s={get component(){return e.component}};return t.internals.property.completeAssign(super.proxy,s)}setDiscloseType(){this._type=nt.DISCLOSE}listenDisclose(){this.listen(t.core.DisclosureEvent.DISCLOSE,this._handleDisclose.bind(this),{capture:!0})}_handleDisclose(){this.act()}setChangeType(){this._type=nt.CHANGE}listenChange(){this.listen("change",this._handleChange.bind(this),{capture:!0})}_handleChange(t){t.target&&t.target.value&&(this.setChangeValue(t),this.act())}setChangeValue(t){this.value=t.target.value}listenInputValidation(t,e=nt.CLICK,s=!1){t||(t=this.node),this._type=e,this._isSendingInputValue=s,this.addAscent(bt.CLICK,this._actValidatedInput.bind(this));const i=this.element.getDescendantInstances("ButtonActionee",null,!0)[0];i&&(i.isMuted=!0),this._validatedInput=t.querySelector("input"),this._handlingInputValidation=this._handleInputValidation.bind(this),this._validatedInput&&this._validatedInput.addEventListener("keydown",this._handlingInputValidation)}_handleInputValidation(t){13===t.keyCode&&this._actValidatedInput()}_actValidatedInput(){this._isActingValidatedInput||(this._isActingValidatedInput=!0,this._isSendingInputValue&&(this.value=this._validatedInput.value.trim()),this.act(),this.request(this._actedValidatedInput.bind(this)))}_actedValidatedInput(){this._isActingValidatedInput=!1}setCheckType(){this._type=nt.CHECK}detectCheckableType(){const t=this.node.checked;this._type=t?nt.UNCHECK:nt.CHECK}listenCheckable(){this.listen("change",this._handleCheckable.bind(this),{capture:!0})}_handleCheckable(t){switch(t.target&&"on"!==t.target.value&&(this.value=t.target.value),!0){case this._type===nt.CHECK&&t.target.checked:case this._type===nt.UNCHECK&&!t.target.checked:this.act()}}detectPressableType(){const t=this.node.hasAttribute("aria-pressed");if(t){const t="true"===this.node.getAttribute("aria-pressed");this._type=t?nt.RELEASE:nt.PRESS}return t}listenPressable(){this.listen("click",this._handlePressable.bind(this),{capture:!0})}_handlePressable(t){switch(!0){case this._type===nt.PRESS&&"false"===t.target.getAttribute("aria-pressed"):case this._type===nt.RELEASE&&"true"===t.target.getAttribute("aria-pressed"):this.act()}}setDismissType(){this._type=nt.DISMISS}get component(){return null}dispose(){this._validatedInput&&this._validatedInput.removeEventListener("keydown",this._handlingInputValidation),super.dispose()}}const yt={ACCORDION:t.internals.ns.selector("accordion"),TITLE:t.internals.ns.selector("accordion__title")},Nt="accordion";class Tt extends ft{constructor(){super(2)}static get instanceClassName(){return"AccordionButtonActionee"}init(){this.isMuted=!0}get button(){return this.element.getInstance("CollapseButton")}get label(){const t=this.getFirstText();return t||"bouton d'accordéon"}get component(){return Nt}}class Et extends ft{constructor(){super(2)}static get instanceClassName(){return"AccordionActionee"}init(){this.setDiscloseType(),this.wrapper=this.node.closest(yt.ACCORDION),this.detectLevel(this.wrapper),this.register(`[aria-controls="${this.id}"]`,Tt),this.listenDisclose()}get label(){if(this.wrapper){const t=this.wrapper.querySelector(yt.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"accordéon"}get component(){return Nt}dispose(){super.dispose()}}const vt={ALERT:t.internals.ns.selector("alert"),TITLE:t.internals.ns.selector("alert__title")};class At extends ft{constructor(){super(1)}static get instanceClassName(){return"AlertActionee"}get label(){const t=this.node.querySelector(vt.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"alerte"}get component(){return"alert"}}const Ct={LINK:`${t.internals.ns.selector("breadcrumb__link")}:not([aria-current])`,COLLAPSE:`${t.internals.ns.selector("breadcrumb")} ${t.internals.ns.selector("collapse")}`};class Lt extends ft{constructor(){super(2)}static get instanceClassName(){return"BreadcrumbActionee"}get label(){return"fil d'ariane"}get component(){return"breadcrumb"}}class It extends ft{constructor(){super(2)}static get instanceClassName(){return"BreadcrumbLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}handleClick(){this.act()}get label(){const t=this.getFirstText();return t||"lien fil d'ariane"}get component(){return null}}const St={BUTTON:`${t.internals.ns.selector("btn")}:not(${t.internals.ns.selector("btn--close")})`};class Ot extends ft{constructor(){super(1),this._data={}}static get instanceClassName(){return"ButtonActionee"}init(){this.detectInteractionType(),this.listenActionClick()}handleClick(){this.ascend(bt.CLICK),this.act()}get label(){if("input"===this.node.tagName)switch(this.node.type){case"button":case"submit":if(this.hasAttribute("value"))return this.getAttribute("value")}const t=this.getFirstText();return t||"bouton"}get component(){return"button"}}const wt={CALLOUT:t.internals.ns.selector("callout"),TITLE:t.internals.ns.selector("callout__title")};class xt extends ft{constructor(){super(1)}static get instanceClassName(){return"CalloutActionee"}get label(){const t=this.node.querySelector(wt.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"mise en avant"}get component(){return"callout"}}const kt={CARD:t.internals.ns.selector("card"),LINK:`${t.internals.ns.selector("card__title")} a, ${t.internals.ns.selector("card__title")} button`,TITLE:t.internals.ns.selector("card__title")};class $t extends ft{constructor(){super(1)}static get instanceClassName(){return"CardActionee"}init(){const t=this.node.querySelector(kt.LINK);t&&(this.link=t,this.detectInteractionType(t),this.listenActionClick(t))}get label(){const t=this.node.querySelector(kt.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}const e=this.getHeadingLabel();return e||"carte"}get component(){return"card"}}const Dt={INPUT:t.internals.ns.selector('checkbox-group [type="checkbox"]')};class Rt extends ft{constructor(){super(1),this._data={}}static get instanceClassName(){return"CheckboxActionee"}init(){this.detectCheckableType(),this.listenCheckable()}get label(){const e=this.node.parentNode.querySelector(t.internals.ns.selector("label"));if(e){const t=this.getFirstText(e);if(t)return t}return"case à cocher"}get component(){return"checkbox"}}const Pt={CONNECT:t.internals.ns.selector("connect"),LINK:t.internals.ns.selector("connect + * a, connect + a")},Mt="connect";class Bt extends ft{constructor(){super(1)}static get instanceClassName(){return"ConnectActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){return this.node.classList.contains("fr-connect--plus")?"FranceConnect+":"FranceConnect"}get component(){return Mt}}class Ft extends ft{constructor(){super(2)}static get instanceClassName(){return"ConnectLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){return this.getFirstText()||"qu'est-ce que FranceConnect ?"}get component(){return Mt}}const Ut={BANNER:t.internals.ns.selector("consent-banner")};class qt extends ft{constructor(){super(1)}static get instanceClassName(){return"ConsentActionee"}get label(){return"gestionnaire de consentement"}get component(){return"consent"}}const jt={LINK:t.internals.ns.selector("download__link")};class Ht extends ft{constructor(){super(1)}static get instanceClassName(){return"DownloadActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"téléchargement"}get component(){return"download"}}const Kt={FOLLOW:t.internals.ns.selector("follow"),NEWSLETTER_INPUT_GROUP:t.internals.ns.selector("follow__newsletter")+" "+t.internals.ns.selector("input-group")};class Vt extends ft{constructor(){super(2)}static get instanceClassName(){return"FollowActionee"}init(){if(this._inputGroup=this.querySelector(Kt.NEWSLETTER_INPUT_GROUP),this._inputGroup){this.listenInputValidation(this._inputGroup,nt.SUBSCRIBE);const t=this.element.getDescendantInstances("InputActionee",null,!0)[0];t&&(t.isMuted=!0)}}get label(){return"lettre d'information et réseaux sociaux"}get component(){return"follow"}}const Gt={FOOTER:t.internals.ns.selector("footer"),FOOTER_LINKS:`${t.internals.ns.selector("footer")} a[href], ${t.internals.ns.selector("footer")} button`};class Wt extends ft{constructor(){super(1)}static get instanceClassName(){return"FooterActionee"}get label(){return"pied de page"}get component(){return"footer"}}class Yt extends ft{constructor(){super(2)}static get instanceClassName(){return"FooterLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getInteractionLabel();return t||"lien pied de page"}}class zt extends ft{constructor(){super(1)}static get instanceClassName(){return"HeaderActionee"}get label(){return"en-tête"}get component(){return"header"}}class Zt extends ft{constructor(){super(4)}static get instanceClassName(){return"HeaderModalButtonActionee"}}class Xt extends ft{constructor(){super(0)}static get instanceClassName(){return"HeaderModalActionee"}init(){this.isBreakpoint(t.core.Breakpoints.LG)&&(this.setPriority(4),this.register(`[aria-controls="${this.id}"]`,Zt))}}const Qt={TOOLS_BUTTON:`${t.internals.ns.selector("header__tools-links")} ${t.internals.ns.selector("btns-group")} ${t.internals.ns.selector("btn")}`,MENU_BUTTON:`${t.internals.ns.selector("header__menu-links")} ${t.internals.ns.selector("btns-group")} ${t.internals.ns.selector("btn")}`};class Jt extends ft{constructor(){super(4)}static get instanceClassName(){return"HeaderToolsButtonActionee"}init(){this.isBreakpoint(t.core.Breakpoints.LG)&&(this._priority=-1)}}class te extends ft{static get instanceClassName(){return"HeaderMenuButtonActionee"}init(){this.isBreakpoint(t.core.Breakpoints.LG)&&this.setPriority(4)}}const ee={HIGHLIGHT:t.internals.ns.selector("highlight")};class se extends ft{constructor(){super(1)}static get instanceClassName(){return"HighlightActionee"}get label(){return"mise en exergue"}get component(){return"highlight"}}const ie={LINK:t.internals.ns.selector("link")};class ne extends ft{constructor(){super(1)}static get instanceClassName(){return"LinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien"}get component(){return"link"}}const re={INPUT:t.internals.ns.selector("input-group")};class ae extends ft{constructor(){super(1)}static get instanceClassName(){return"InputActionee"}init(){this._input=this.querySelector(t.internals.ns.selector("input")),this._label=this.querySelector(t.internals.ns.selector("label")),this._inputWrap=this.querySelector(t.internals.ns.selector("input-wrap")),this._inputWrap&&this.listenInputValidation(this._inputWrap)}get label(){if(this._label){const t=this.getFirstText(this._label);if(t)return t}return"champ de saisie"}get component(){return"input"}}const oe={TITLE:t.internals.ns.selector("modal__title")};class le extends ft{constructor(){super(2)}static get instanceClassName(){return"ModalActionee"}init(){this.setDiscloseType(),this.detectLevel(),this.listenDisclose()}get label(){const t=this.node.querySelector(oe.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}const e=this.getHeadingLabel(2);if(e)return e;const s=this.element.getInstance("Modal");if(s){const t=s.buttons.filter((t=>t.isPrimary))[0];if(t){const e=this.getFirstText(t.node);if(e)return e}}return"modale"}get component(){return"modal"}}class ce extends ft{constructor(){super(1)}static get instanceClassName(){return"NavigationActionee"}get label(){return"navigation"}}const he={LINK:t.internals.ns.selector("nav__link"),BUTTON:t.internals.ns.selector("nav__btn")};class ue extends ft{constructor(){super(2)}static get instanceClassName(){return"NavigationLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien de navigation"}get component(){return"navigation"}}class ge extends ft{constructor(){super(2)}static get instanceClassName(){return"NavigationSectionActionee"}init(){this._wrapper=this.node.closest(t.navigation.NavigationSelector.ITEM)}get label(){if(this._wrapper){const t=this._wrapper.querySelector(he.BUTTON);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"section de navigation"}}const de={NOTICE:t.internals.ns.selector("notice"),TITLE:t.internals.ns.selector("notice__title"),LINK:t.internals.ns.selector("notice a")},_e="notice";class pe extends ft{constructor(){super(1)}static get instanceClassName(){return"NoticeActionee"}get label(){const t=this.node.querySelector(de.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"bandeau d'information importante"}get component(){return _e}}class me extends ft{constructor(){super(2)}static get instanceClassName(){return"NoticeLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien de bandeau d'information importante"}get component(){return _e}}const be={PAGINATION:t.internals.ns.selector("pagination"),LINK:t.internals.ns.selector("pagination__link"),NEXT_LINK:t.internals.ns.selector("pagination__link--next"),LAST_LINK:t.internals.ns.selector("pagination__link--last"),ANALYTICS_TOTAL:t.internals.ns.attr("analytics-page-total"),CURRENT:'[aria-current="page"]'};class fe extends ft{constructor(){super(1)}static get instanceClassName(){return"PaginationActionee"}init(){this.setPagination()}get label(){return"pagination"}get component(){return"pagination"}setPagination(){const e=this.node.querySelector(be.CURRENT);if(!e)return;const s=this.getFirstText(e);if(!s)return;const i=this.getInt(s);if(isNaN(i))return;t.analytics.page.current=i;const n=this.getTotalPage();isNaN(n)||(t.analytics.page.total=n)}getTotalPage(){const t=parseInt(this.node.getAttribute(be.ANALYTICS_TOTAL));if(!isNaN(t))return t;const e=this.node.querySelectorAll(`${be.LINK}:not(${be.NEXT_LINK}):not(${be.LAST_LINK})`);if(!e)return null;const s=this.getFirstText(e[e.length-1]);return s?this.getInt(s):null}getInt(t){const e=t.match(/\d+/);return e&&0!==e.length?parseInt(e[0]):null}}class ye extends ft{constructor(){super(1)}static get instanceClassName(){return"PaginationLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien pagination"}get component(){return null}}const Ne={QUOTE:t.internals.ns.selector("quote")};class Te extends ft{constructor(){super(1)}static get instanceClassName(){return"QuoteActionee"}get label(){const t=this.node.querySelector("blockquote");if(t){const e=this.getFirstText(t);if(e)return e}return"citation"}get component(){return"quote"}}const Ee={INPUT:t.internals.ns.selector('radio-group [type="radio"]')},ve={LABEL:t.internals.ns.selector("label"),FIELDSET:t.internals.ns.selector("fieldset"),LEGEND:t.internals.ns.selector("fieldset__legend")};class Ae extends ft{constructor(){super(1),this._data={}}static get instanceClassName(){return"RadioActionee"}init(){this.setCheckType(),this.listenCheckable()}get label(){const e=[],s=this.node.closest(ve.FIELDSET);if(s){const t=s.querySelector(ve.LEGEND);if(t){const s=this.getFirstText(t);s&&e.push(s)}}const i=this.node.parentNode.querySelector(t.internals.ns.selector("label"));if(i){const t=this.getFirstText(i);t&&e.push(t)}return e.join(" › ")}get component(){return"radio"}}const Ce={SEARCH_BAR:t.internals.ns.selector("search-bar")};class Le extends ft{constructor(){super(2)}static get instanceClassName(){return"SearchActionee"}init(){this.listenInputValidation(this.node,nt.SEARCH,!0)}get label(){return"barre de recherche"}get component(){return"search"}}const Ie={SELECT:t.internals.ns.selector("select")};class Se extends ft{constructor(){super(1),this._data={}}static get instanceClassName(){return"SelectActionee"}init(){this.setChangeType(),this.listenChange()}setChangeValue(t){if(!t.target||!t.target.selectedOptions)return;const e=Array.from(t.target.selectedOptions).map((t=>t.text)).join(" - ");e&&(this.value=e)}get label(){const e=this.node.parentNode.querySelector(t.internals.ns.selector("label"));if(e){const t=this.getFirstText(e);if(t)return t}return"liste déroulante"}get component(){return"select"}}const Oe={SHARE:t.internals.ns.selector("share"),TITLE:t.internals.ns.selector("share__title")};class we extends ft{constructor(){super(1)}static get instanceClassName(){return"ShareActionee"}get label(){const t=this.querySelector(Oe.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"boutons de partage"}get component(){return"share"}}const xe={SIDEMENU:t.internals.ns.selector("sidemenu"),ITEM:t.internals.ns.selector("sidemenu__item"),LINK:t.internals.ns.selector("sidemenu__link"),BUTTON:t.internals.ns.selector("sidemenu__btn"),TITLE:t.internals.ns.selector("sidemenu__title")};class ke extends ft{constructor(){super(1)}static get instanceClassName(){return"SidemenuActionee"}get label(){const t=this.node.closest(xe.SIDEMENU);if(t){const e=t.querySelector(xe.TITLE);if(e){const t=this.getFirstText(e);if(t)return t}}return"menu Latéral"}}class $e extends ft{constructor(){super(2)}static get instanceClassName(){return"SidemenuLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien menu latéral"}get component(){return"sidemenu"}}class De extends ft{constructor(){super(2)}static get instanceClassName(){return"SidemenuSectionActionee"}init(){this._wrapper=this.node.closest(xe.ITEM)}get label(){if(this._wrapper){const t=this._wrapper.querySelector(xe.BUTTON);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"section menu latéral"}}const Re={SUMMARY:t.internals.ns.selector("summary"),LINK:t.internals.ns.selector("summary__link"),TITLE:t.internals.ns.selector("summary__title"),ITEM:`${t.internals.ns.selector("summary")} li`};class Pe extends ft{constructor(){super(1)}static get instanceClassName(){return"SummaryActionee"}get label(){const t=this.node.querySelector(Re.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"sommaire"}}class Me extends ft{constructor(){super(1)}static get instanceClassName(){return"SummaryLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien sommaire"}get component(){return"summary"}}class Be extends ft{constructor(){super(2)}static get instanceClassName(){return"SummarySectionActionee"}init(){this._link=this.querySelector(Re.LINK)}validate(t){return this._link!==t}get label(){if(!this._link)return null;const t=this.getFirstText(this._link);return t||"section sommaire"}}class Fe extends ft{constructor(){super(2)}static get instanceClassName(){return"TabButtonActionee"}init(){this.isMuted=!0}get label(){const t=this.getFirstText();return t||"bouton onglet"}get component(){return"tab"}}class Ue extends ft{constructor(){super(2)}static get instanceClassName(){return"TabActionee"}init(){this.setDiscloseType(),this.register(`[aria-controls="${this.id}"]`,Fe),this._instance=this.element.getInstance("TabPanel"),this.listenDisclose()}get label(){const e=this.node.closest(t.tab.TabSelector.GROUP);if(e){const s=e.querySelector(`${t.tab.TabSelector.LIST} [aria-controls="${this.id}"]${t.tab.TabSelector.TAB}`);if(s){const t=this.getFirstText(s);if(t)return t}}const s=this._instance.buttons.filter((t=>t.isPrimary))[0];if(s){const t=this.getFirstText(s);if(t)return t}return"onglet"}get component(){return"tab"}}const qe={TABLE:t.internals.ns.selector("table")};class je extends ft{constructor(){super(1)}static get instanceClassName(){return"TableActionee"}get label(){const t=this.node.querySelector("caption");if(t){const e=this.getFirstText(t);if(e)return e}return"tableau"}get component(){return"table"}}const He={TAG:t.internals.ns.selector("tag"),PRESSABLE:"[aria-pressed]",DISMISSIBLE:`${t.internals.ns.selector("tag--dismiss","")}`};class Ke extends ft{constructor(){super(2)}static get instanceClassName(){return"TagActionee"}init(){switch(!0){case this.detectPressableType():this.listenPressable();break;case this.isInteractive&&this.node.classList.contains(He.DISMISSIBLE):this.setDismissType(),this.listenActionClick();break;case this.isInteractive:this.detectInteractionType(),this.listenActionClick()}}get label(){const t=this.getFirstText();return t||"tag"}get component(){return"tag"}}const Ve={TILE:t.internals.ns.selector("tile"),LINK:`${t.internals.ns.selector("tile__title")} a, ${t.internals.ns.selector("tile__title")} button`,TITLE:t.internals.ns.selector("tile__title")};class Ge extends ft{constructor(){super(1)}static get instanceClassName(){return"TileActionee"}init(){const t=this.node.querySelector(Ve.LINK);t&&(this.link=t,this.detectInteractionType(t),this.listenActionClick(t))}get label(){const t=this.node.querySelector(Ve.TITLE);if(t)return this.getFirstText(t);const e=this.getHeadingLabel();return e||"tuile"}get component(){return"tile"}}const We={INPUT:t.internals.ns.selector('toggle [type="checkbox"]')};class Ye extends ft{constructor(){super(1),this._data={}}static get instanceClassName(){return"ToggleActionee"}init(){this.detectCheckableType(),this.listenCheckable()}get label(){const e=this.node.parentNode.querySelector(t.internals.ns.selector("toggle__label"));if(e){const t=this.getFirstText(e);if(t)return t}return"interrupteur"}get component(){return"toggle"}}const ze=t.internals.ns.selector("transcription"),Ze=t.internals.ns.selector("collapse"),Xe={TRANSCRIPTION:ze,COLLAPSE:`${ze} > ${Ze}, ${ze} > *:not(${ze}):not(${Ze}) > ${Ze}, ${ze} > *:not(${ze}):not(${Ze}) > *:not(${ze}):not(${Ze}) > ${Ze}`,COLLAPSE_LEGACY:`${ze} ${Ze}`,TITLE:`${ze}__title`},Qe="transcription";class Je extends ft{constructor(){super(2)}static get instanceClassName(){return"TranscriptionButtonActionee"}init(){this.isMuted=!0}get button(){return this.element.getInstance("CollapseButton")}get label(){const t=this.getFirstText();return t||"bouton transcription"}get component(){return Qe}}class ts extends ft{constructor(){super(2)}static get instanceClassName(){return"TranscriptionActionee"}init(){this.setDiscloseType(),this.wrapper=this.node.closest(Xe.ACCORDION),this.detectLevel(this.wrapper),this.register(`[aria-controls="${this.id}"]`,Je),this.listenDisclose()}get label(){if(this.wrapper){const t=this.wrapper.querySelector(Xe.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"transcription"}get component(){return Qe}}const es=t.internals.ns.selector("translate"),ss=t.internals.ns.selector("collapse"),is={BUTTON:`${es}__btn`,COLLAPSE:`${es} > ${ss}, ${es} > *:not(${es}):not(${ss}) > ${ss}, ${es} > *:not(${es}):not(${ss}) > *:not(${es}):not(${ss}) > ${ss}`,COLLAPSE_LEGACY:`${es} ${ss}`},ns="translate";class rs extends ft{constructor(){super(2)}static get instanceClassName(){return"TranslateActionee"}get label(){const t=this.node.querySelector(is.BUTTON);if(t){const e=t.getAttribute("title");if(e)return e}return"sélecteur de langue"}get component(){return ns}}class as extends ft{constructor(){super(2)}static get instanceClassName(){return"TranslateButtonActionee"}init(){this.isMuted=!0}get button(){return this.element.getInstance("CollapseButton")}get label(){const t=this.getInteractionLabel();return t||"bouton sélecteur de langue"}get component(){return ns}}const os={UPLOAD:t.internals.ns.selector("upload")};class ls extends ft{constructor(){super(1)}static get instanceClassName(){return"UploadActionee"}init(){this.setChangeType(),this._label=this.node.parentNode.querySelector(t.internals.ns.selector("label")),this.listenChange()}setChangeValue(t){if(!t.target||!t.target.files)return;const e=Array.from(t.target.files).map((t=>/(?:\.([^.]+))?$/.exec(t.name)[1])).filter(((t,e,s)=>s.indexOf(t)===e)).join(" - ");e&&(this.value=e)}get label(){if(this._label){const t=this.getFirstText(this._label);if(t)return t}return"ajout de fichier"}get component(){return"upload"}}const cs=()=>{t.accordion&&t.internals.register(t.accordion.AccordionSelector.COLLAPSE,Et),t.breadcrumb&&(t.internals.register(Ct.COLLAPSE,Lt),t.internals.register(Ct.LINK,It)),t.internals.register(vt.ALERT,At),t.internals.register(St.BUTTON,Ot),t.internals.register(wt.CALLOUT,xt),t.internals.register(Pt.CONNECT,Bt),t.internals.register(Pt.LINK,Ft),t.internals.register(Ut.BANNER,qt),t.internals.register(kt.CARD,$t),t.internals.register(re.INPUT,ae),t.internals.register(Dt.INPUT,Rt),t.internals.register(jt.LINK,Ht),t.internals.register(Gt.FOOTER,Wt),t.internals.register(Gt.FOOTER_LINKS,Yt),t.internals.register(Kt.FOLLOW,Vt),t.header&&(t.internals.register(t.header.HeaderSelector.HEADER,zt),t.internals.register(t.header.HeaderSelector.MODALS,Xt),t.internals.register(Qt.TOOLS_BUTTON,Jt),t.internals.register(Qt.MENU_BUTTON,te)),t.internals.register(ee.HIGHLIGHT,se),t.internals.register(ie.LINK,ne),t.modal&&t.internals.register(t.modal.ModalSelector.MODAL,le),t.navigation&&(t.internals.register(t.navigation.NavigationSelector.NAVIGATION,ce),t.internals.register(he.LINK,ue),t.internals.register(t.navigation.NavigationSelector.COLLAPSE,ge)),t.internals.register(de.NOTICE,pe),t.internals.register(de.LINK,me),t.internals.register(be.PAGINATION,fe),t.internals.register(be.LINK,ye),t.internals.register(Ne.QUOTE,Te),t.internals.register(Ee.INPUT,Ae),t.internals.register(Ce.SEARCH_BAR,Le),t.internals.register(Ie.SELECT,Se),t.internals.register(Oe.SHARE,we),t.sidemenu&&(t.internals.register(xe.SIDEMENU,ke),t.internals.register(xe.LINK,$e),t.internals.register(t.sidemenu.SidemenuSelector.COLLAPSE,De)),t.internals.register(Re.SUMMARY,Pe),t.internals.register(Re.LINK,Me),t.internals.register(Re.ITEM,Be),t.tab&&t.internals.register(t.tab.TabSelector.PANEL,Ue),t.internals.register(qe.TABLE,je),t.internals.register(He.TAG,Ke),t.internals.register(Ve.TILE,Ge),t.internals.register(We.INPUT,Ye),t.internals.register(Xe.COLLAPSE,ts),t.internals.register(is.COLLAPSE,rs),t.internals.register(is.BUTTON,as),t.internals.register(os.UPLOAD,ls)},hs=()=>{Object.values(nt).filter((t=>t.attributed)).forEach((e=>t.internals.register(t.internals.ns.attr.selector(`analytics-${e.id}`),mt))),cs()};t.analytics.readiness.then((()=>hs()),(()=>{})); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const t=window.dsfr,e="a4e35ba2a938ba9d007689dbf3f46acbb9807869",s={MANUAL:"manual",LOAD:"load",FULL:"full",HASH:"hash"},i="_EA_",n=`${i}disabled`,r=`${i}toggle`;const a=new class{constructor(){this._configure()}_configure(){const t=this;window[n]=()=>t.isDisabled,window[r]=this.toggle.bind(this)}get isDisabled(){return localStorage.getItem(i)}toggle(){this.isDisabled?this.enable():this.disable()}enable(){localStorage.getItem(i)&&localStorage.removeItem(i)}disable(){localStorage.setItem(i,"1")}},o="EA_push";class l{constructor(t){this._domain=t,this._isLoaded=!1,this._promise=new Promise(((t,e)=>{this._resolve=t,this._reject=e}))}get id(){return this._id}get store(){return this._store}configure(){return this.init(),this._promise}init(){let e=5381;for(let t=this._domain.length-1;t>0;t--)e=33*e^this._domain.charCodeAt(t);e>>>=0,this._id=`_EA_${e}`,this._store=[],this._store.eah=this._domain,window[this._id]=this._store,window[o]||(window[o]=(...t)=>this.store.push(t)),a.isDisabled?(t.inspector.warn("User opted out, eulerian is disabled"),this._reject("User opted out, eulerian is disabled")):this.load()}load(){const t=new Date/1e7|0,e=t%26,s=String.fromCharCode(97+e,122-e,65+e)+t%1e3;this._script=document.createElement("script"),this._script.ea=this.id,this._script.async=!0,this._script.addEventListener("load",this.loaded.bind(this)),this._script.addEventListener("error",this.error.bind(this)),this._script.src=`//${this._domain}/${s}.js?2`;const i=document.getElementsByTagName("script")[0];i.parentNode.insertBefore(this._script,i)}error(){t.inspector.error("unable to load Eulerian script file. the domain declared in your configuration must match the domain provided by the Eulerian interface (tag creation)"),this._reject("eulerian script loading error")}loaded(){this._isLoaded||(this._isLoaded=!0,this._resolve())}}const c=-1,h=0,u=1,g=2,d=3;class _{constructor(t){this._config=t,this._state=c,this._promise=new Promise(((t,e)=>{this._resolve=t,this._reject=e}))}configure(){if(this._state>=u)return this._promise;this._state===c&&(t.inspector.info("analytics configures tarteaucitron"),this._state=h);const e=window.tarteaucitron;if(!e||!e.services)return void window.requestAnimationFrame(this.configure.bind(this));this._state=u;const s={key:"eulerian",type:"analytic",name:"Eulerian Analytics",needConsent:!0,cookies:["etuix"],uri:"https://eulerian.com/vie-privee",js:this.init.bind(this),fallback:()=>{e.services.eulerian.js()}};return e.services.eulerian=s,e.job||(e.job=[]),e.job.push("eulerian"),this._promise}init(){if(this._state>=g)return;this._state=g,window.__eaGenericCmpApi=this.integrate.bind(this);const t=this.update.bind(this);window.addEventListener("tac.close_alert",t),window.addEventListener("tac.close_panel",t)}integrate(e){this._state>=d||(this._state=d,this._cmpApi=e,t.inspector.info("analytics has integrated tarteaucitron"),this._resolve(),this.update())}update(){this._state{"function"==typeof window.EA_push?(t.inspector.info("analytics",e,s),window.EA_push(e,s)):t.inspector.warn("Analytics datalayer not sent, Eulerian API isn't yet avalaible")},b={COLLECTOR:"collector",ACTION:"action",ACTION_PARAMETER:"actionparam"};const f=new class{constructor(){this._renderables=[],this._rendering=this.render.bind(this),requestAnimationFrame(this._rendering)}add(t){-1===this._renderables.indexOf(t)&&this._renderables.push(t)}remove(t){const e=this._renderables.indexOf(t);e>-1&&this._renderables.splice(e,1)}render(){this._renderables.forEach((t=>t.render())),requestAnimationFrame(this._rendering)}},y={ENFORCE:"enforce",PREVENT:"prevent",NONE:"none"};class E{constructor(t,e){this._action=t,this._data=e}test(t){return this._action===t}start(){return this._action.start(this._data)}end(){return this._action.end(this._data)}}const N=new class{constructor(){this._startingActions=[],this._endingActions=[],this._handlingVisibilityChange=this._handleVisibilityChange.bind(this),this._handlingEnd=this._handleEnd.bind(this),this._isStarted=!1,this._isListening=!1,this.reset()}setCollector(t){this._collector=t}reset(t=!1){this._type=b.ACTION,t||(this._startingActions.length=0),this._endingActions.length=0,this._count=0,this._delay=-1,this._isRequested=!1,this._unlisten()}start(){this._isStarted||(this._isStarted=!0,f.add(this))}collect(){this._type=b.COLLECTOR,this._request()}regulate(e,s){if(!e)return!1;if(s.some((t=>t.test(e))))return t.inspector.log("action exists in queue",e),!1;switch(e.regulation){case y.PREVENT:return!1;case y.ENFORCE:return!0;default:return!0===this._collector.isActionEnabled}}appendStartingAction(t,e){if(!this.regulate(t,this._startingActions))return;const s=new E(t,e);this._startingActions.push(s),this._request()}appendEndingAction(t,e){if(!this.regulate(t,this._endingActions))return;const s=new E(t,e);this._endingActions.push(s),this._request()}_request(){this._listen(),this._isRequested=!0,this._delay=4}_listen(){this._isListening||(this._isListening=!0,document.addEventListener("visibilitychange",this._handlingVisibilityChange),document.addEventListener("unload",this._handlingEnd),document.addEventListener("beforeunload",this._handlingEnd),document.addEventListener("pagehide",this._handlingEnd))}_unlisten(){this._isListening&&(this._isListening=!1,document.removeEventListener("visibilitychange",this._handlingVisibilityChange),document.removeEventListener("unload",this._handlingEnd),document.removeEventListener("beforeunload",this._handlingEnd),document.removeEventListener("pagehide",this._handlingEnd))}_handleVisibilityChange(t){"hidden"===document.visibilityState&&this.send()}_handleEnd(){this.send()}render(){if(!(this._delay<=-1))switch(this._delay--,this._count++,!0){case this._count>20:case 0===this._delay:this.send()}}send(t=!1){if(!this._isRequested)return;const e=[];t||e.push(...this._startingActions.map((t=>t.start())).filter((t=>t.length>0))),e.push(...this._endingActions.map((t=>t.end())).filter((t=>t.length>0)));const s=e.length/80+1|0,i=[];for(let t=0;t0){const e=i.splice(0,1)[0];e.length>0&&t.push.apply(t,e)}t.flat(),t.length>0&&m(b.COLLECTOR,t)}if(i.length>0)for(let t=0;t0&&m(b.ACTION,e)}this.reset(t)}};const T=new class{get debugger(){return window._oEa}get isActive(){return!!this.debugger&&"1"===this.debugger._dbg}set isActive(t){this.debugger&&this.isActive!==t&&this.debugger.debug(t?1:0)}},v={CONNECTED:{id:"connected",value:"connecté",isConnected:!0,isDefault:!0},ANONYMOUS:{id:"anonymous",value:"anonyme",isConnected:!1,isDefault:!0},GUEST:{id:"guest",value:"invité",isConnected:!1}},A={INDIVIDUAL:{id:"individual",value:"part"},PROFESSIONNAL:{id:"professionnal",value:"pro"}};var C={"0x0022":""","0x0024":"$","0x0026":"&","0x0027":"'","0x002a":"*","0x002c":",","0x003c":"<","0x003e":">","0x003f":"?","0x005c":"\","0x005e":"^","0x0060":"`","0x007c":"|","0x007e":"~"};const L=t=>t?t=(t=(t=[...t].map((t=>C[(t=>{const e=t.charCodeAt(0).toString(16);return"0x0000".slice(0,-e.length)+e})(t)]||t)).join("")).replace(/\s+/g," ").replace(/\s/g,"_")).toLowerCase():t,I=(e,s,i=!0)=>{switch(!0){case"number"==typeof e:return`${e}`;case"string"==typeof e:return e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a String`),null},S=(e,s,i=!0)=>{switch(!0){case!isNaN(e):return e;case"string"==typeof e&&!isNaN(Number(e)):return Number(e);case void 0===e&&i:case null===e&&i:return-1}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a Number`),null},O=(e,s)=>{switch(!0){case"boolean"==typeof e:return e;case"string"==typeof e&&"true"===e.toLowerCase():case"1"===e:case 1===e:return!0;case"string"==typeof e&&"false"===e.toLowerCase():case"0"===e:case 0===e:return!1;case void 0===e:case null===e:return e}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a Boolean`),null},w=(e,s,i=!0)=>{switch(!0){case"string"==typeof e&&/^[A-Za-z]{2}$|^[A-Za-z]{2}[-_]/.test(e):return e.split(/[-_]/)[0].toLowerCase();case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting language as a String following ISO 639-1 format`),null},x=(e,s,i=!0)=>{switch(!0){case"string"==typeof e:return/^FR-[A-Z0-9]{2,3}$/.test(e)||t.inspector.warn(`value '${e}' set at analytics.${s} with wrong format. Geographic location should be a String following ISO 3166-2:FR format`),e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting geographic location as a String following ISO 3166-2:FR format`),null},k=t=>t.toISOString().split("T")[0];class D{constructor(t){this._config=t||{}}reset(t=!1){this._isConnected=!1,this.status=v.ANONYMOUS,!t&&this._config.connect?this.connect(this._config.connect.uid,this._config.connect.email,this._config.connect.isNew):(this._uid=void 0,this._email=void 0,this._isNew=!1),this.profile=t?void 0:this._config.profile,this.language=t?void 0:this._config.language,this.type=t?void 0:this._config.type}connect(e,s,i=!1){this._uid=I(e,"user.uid"),/^[a-zA-Z0-9!#$%&'*+/=?^_`{|}~.-]{2,}@[a-zA-Z0-9-]{2,}\.[a-zA-Z]{2,}$/.test(s)&&t.inspector.warn("Please check analytics.user.email is properly encrypted "),this._email=I(s,"user.email"),this._isNew=O(i),this._isConnected=!0,this.status=v.CONNECTED}get uid(){return this._uid}get email(){return this._email}get isNew(){return this._isNew}set status(t){const e=Object.values(v).filter((t=>t.isConnected===this._isConnected));this._status=e.filter((e=>e.id===t||e.value===t))[0]||e.filter((t=>t.isDefault))[0]}get status(){return this._status.id}set profile(t){const e=I(t,"user.profile");null!==e&&(this._profile=e)}get profile(){return this._profile.id}set language(t){const e=w(t,"user.language");null!==e&&(this._language=e)}get language(){return this._language||navigator.language}set type(t){this._type=Object.values(A).filter((e=>e.id===t||e.value===t))[0]}get type(){return this._type.id}get layer(){const t=[];return this.uid&&t.push("uid",L(this.uid)),this.email&&t.push("email",L(this.email)),this.isNew&&t.push("newcustomer","1"),this.language&&t.push("user_language",this.language),t.push("user_login_status",this._status.value),this._profile&&t.push("profile",this._profile),this._type&&t.push("user_type",this._type.value),t}}D.Status=v,D.Type=A;const R={DEVELOPMENT:{id:"development",value:"dev"},STAGE:{id:"stage",value:"stage"},PRODUCTION:{id:"production",value:"prod"}};class ${constructor(t){this._config=t||{}}reset(e=!1){this.environment=e?R.DEVELOPMENT.id:this._config.environment,this.entity=e?void 0:this._config.entity,this.language=e?void 0:this._config.language,this.target=e?void 0:this._config.target,this.type=e?void 0:this._config.type,this.region=e?void 0:this._config.region,this.department=e?void 0:this._config.department,this.version=e?void 0:this._config.version,this._api=t.version}set environment(t){switch(t){case R.PRODUCTION.id:case R.PRODUCTION.value:this._environment=R.PRODUCTION;break;case R.STAGE.id:case R.STAGE.value:this._environment=R.STAGE;break;case R.DEVELOPMENT.id:case R.DEVELOPMENT.value:default:this._environment=R.DEVELOPMENT}}get environment(){return this._environment?this._environment.id:R.DEVELOPMENT.id}set entity(t){const e=I(t,"site.entity");null!==e&&(this._entity=e)}get entity(){return this._entity}set language(t){const e=w(t,"site.language");null!==e&&(this._language=e)}get language(){return this._language||document.documentElement.lang}set target(t){const e=I(t,"site.target");null!==e&&(this._target=e)}get target(){return this._target}set type(t){const e=I(t,"site.type");null!==e&&(this._type=e)}get type(){return this._type}set region(t){const e=x(t,"site.region");null!==e&&(this._region=e)}get region(){return this._region}set department(t){const e=x(t,"site.department");null!==e&&(this._department=e)}get department(){return this._department}set version(t){const e=I(t,"site.version");null!==e&&(this._version=e)}get version(){return this._version}get api(){return this._api}get layer(){const e=[];return e.push("site_environment",this._environment.value),this.entity?e.push("site_entity",L(this.entity)):t.inspector.warn("entity is required in analytics.site"),this.language&&e.push("site_language",this.language),this.target&&e.push("site_target",L(this.target)),this.type&&e.push("site_type",L(this.type)),this.region&&e.push("site_region",this.region),this.department&&e.push("site_department",this.department),this.version&&e.push("site_version",this.version),this.api&&e.push("api_version",this.api),e}}$.Environment=R;const P={accordion:t.internals.ns.selector("accordion"),alert:t.internals.ns.selector("alert"),badge:t.internals.ns.selector("badge"),breadcrumb:t.internals.ns.selector("breadcrumb"),button:t.internals.ns.selector("btn"),callout:t.internals.ns.selector("callout"),card:t.internals.ns.selector("card"),checkbox:t.internals.ns.selector("checkbox-group"),connect:t.internals.ns.selector("connect"),consent:t.internals.ns.selector("consent-banner"),content:t.internals.ns.selector("content-media"),download:t.internals.ns.selector("download"),follow:t.internals.ns.selector("follow"),footer:t.internals.ns.selector("footer"),header:t.internals.ns.selector("header"),highlight:t.internals.ns.selector("highlight"),input:t.internals.ns.selector("input-group"),link:t.internals.ns.selector("link"),modal:t.internals.ns.selector("modal"),navigation:t.internals.ns.selector("nav"),notice:t.internals.ns.selector("notice"),pagination:t.internals.ns.selector("pagination"),quote:t.internals.ns.selector("quote"),radio:t.internals.ns.selector("radio-group"),search:t.internals.ns.selector("search-bar"),select:t.internals.ns.selector("select"),share:t.internals.ns.selector("share"),sidemenu:t.internals.ns.selector("sidemenu"),stepper:t.internals.ns.selector("stepper"),summary:t.internals.ns.selector("summary"),tab:t.internals.ns.selector("tabs"),table:t.internals.ns.selector("table"),tag:t.internals.ns.selector("tag"),tile:t.internals.ns.selector("tile"),toggle:t.internals.ns.selector("toggle"),tooltip:t.internals.ns.selector("tooltip"),transcription:t.internals.ns.selector("transcription"),translate:t.internals.ns.selector("translate"),upload:t.internals.ns.selector("upload-group")},M="collectable",B="collecting",F="collected";class U{constructor(t){this._config=t||{},this._state=M}reset(t=!1){this.path=t?"":this._config.path,this.referrer=t?"":this._config.referrer,this.title=t?"":this._config.title,this.name=t?"":this._config.name,this.id=t?"":this._config.id,this.author=t?"":this._config.author,this.date=t?"":this._config.date,this._labels=t||!this._config.labels?["","","","",""]:this._config.labels,this._labels.length=5,this._tags=t||!this._config.tags?[]:this._config.tags,this._categories=t||!this._config.categories?["","",""]:this._config.categories,this.isError=!t&&this._config.isError,this.template=t?"":this._config.template,this.group=t?"":this._config.group,this.segment=t?"":this._config.segment,this.subtemplate=t?"":this._config.subtemplate,this.theme=t?"":this._config.theme,this.subtheme=t?"":this._config.subtheme,this.related=t?"":this._config.related,this.depth=t||isNaN(this._config.depth)?0:this._config.depth,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this._filters=t||!this._config.filters?[]:this._config.filters}collecting(){return this._state!==M?(t.inspector.warn(`current path '${this.path}' was already collected`),!1):(this._state=B,!0)}get isCollecting(){return this._state===B}set path(t){const e=I(t,"page.path");null!==e&&(this._path=e,this._state=M)}get path(){return this._path||`${document.location.pathname}${document.location.search}`}set referrer(t){const e=I(t,"page.referrer");null!==e&&(this._referrer=e)}get referrer(){return this._referrer}set title(t){const e=I(t,"page.title");null!==e&&(this._title=e)}get title(){return this._title||document.title}set id(t){const e=I(t,"page.id");null!==e&&(this._id=e)}get id(){return this._id}set author(t){const e=I(t,"page.author");null!==e&&(this._author=e)}get author(){return this._author}set date(e){const s=((e,s,i=!0)=>{switch(!0){case e instanceof Date:return k(e);case"string"==typeof e:{const t=new Date(e);if("Invalid Date"!==t.toString())return k(t);break}case void 0===e&&i:case null===e&&i:return null}return t.inspector.warn(`unexpected value '${e}' set at analytics.${s}. Expecting a Date`),null})(e,"page.date");null!==s&&(this._date=s)}get date(){return this._date}get tags(){return this._tags}set name(t){const e=I(t,"page.name");null!==e&&(this._name=e)}get name(){return this._name||this.title}get labels(){return this._labels}get categories(){return this._categories}set isError(t){const e=O(t,"page.isError");null!==e&&(this._isError=e)}get isError(){return this._isError}set template(t){const e=I(t,"page.template");null!==e&&(this._template=e)}get template(){return this._template||"autres"}set segment(t){const e=I(t,"page.segment");null!==e&&(this._segment=e)}get segment(){return this._segment||this.template}set group(t){const e=I(t,"page.group");null!==e&&(this._group=e)}get group(){return this._group||this.template}set subtemplate(t){const e=I(t,"page.subtemplate");null!==e&&(this._subtemplate=e)}get subtemplate(){return this._subtemplate}set theme(t){const e=I(t,"page.theme");null!==e&&(this._theme=e)}get theme(){return this._theme}set subtheme(t){const e=I(t,"page.subtheme");null!==e&&(this._subtheme=e)}get subtheme(){return this._subtheme}set related(t){const e=I(t,"page.related");null!==e&&(this._related=e)}get related(){return this._related}set depth(t){const e=S(t,"page.depth");null!==e&&(this._depth=e)}get depth(){return this._depth}set current(t){const e=S(t,"page.current");null!==e&&(this._current=e)}get current(){return this._current}set total(t){const e=S(t,"page.total");null!==e&&(this._total=e)}get total(){return this._total}get filters(){return this._filters}get layer(){this._state=F;const t=[];this.path&&t.push("path",L(this.path)),this.referrer&&t.push("referrer",L(this.referrer)),this.title&&t.push("page_title",L(this.title)),this.name&&t.push("page_name",L(this.name)),this.id&&t.push("page_id",L(this.id)),this.author&&t.push("page_author",L(this.author)),this.date&&t.push("page_date",L(this.date));const e=Object.keys(P).map((t=>null!==document.querySelector(P[t])?t:null)).filter((t=>null!==t)).join(",");e&&t.push("page_components",e);const s=this._labels.slice(0,5);s.length=5,s.some((t=>t))&&t.push("pagelabel",s.map((t=>"string"==typeof t?L(t):"")).join(","));const i=this._tags;if(i.some((t=>t))&&t.push("pagetag",i.map((t=>"string"==typeof t?L(t):"")).join(",")),this._categories.forEach(((e,s)=>{e&&t.push(`page_category${s+1}`,e)})),this._isError&&t.push("error","1"),t.push("page_template",L(this.template)),t.push("pagegroup",L(this.group)),t.push("site-segment",L(this.segment)),this.subtemplate&&t.push("page_subtemplate",L(this.subtemplate)),this.theme&&t.push("page_theme",L(this.theme)),this.subtheme&&t.push("page_subtheme",L(this.subtheme)),this.related&&t.push("page_related",L(this.related)),isNaN(this.depth)||t.push("page_depth",this.depth),!isNaN(this.current)&&this.current>-1){let e=`${this.current}`;!isNaN(this.total)&&this.total>-1&&(e+=`/${this.total}`),t.push("page_pagination",e)}if(this.filters.length&&this.filters.some((t=>t))){const e=this.filters.map((t=>"string"==typeof t?L(t):""));t.push("page_filters",e.join(","))}return t}}const q={STANDARD:{id:"standard",value:"standard",isDefault:!0},AUTOCOMPLETE:{id:"autocomplete",value:"autocompletion"}};class j{constructor(t){this._config=t||{}}reset(t=!1){this.engine=t?void 0:this._config.engine,this.results=t||isNaN(this._config.results)?-1:this._config.results,this.terms=t?void 0:this._config.terms,this.category=t?void 0:this._config.category,this.theme=t?void 0:this._config.theme,this.type=t?void 0:this._config.type,this.method=t?void 0:this._config.method}set engine(t){const e=I(t,"search.engine");null!==e&&(this._engine=e)}get engine(){return this._engine}set results(t){const e=S(t,"search.results");null!==e&&(this._results=e)}get results(){return this._results}set terms(t){const e=I(t,"search.terms");null!==e&&(this._terms=e)}get terms(){return this._terms}set category(t){const e=I(t,"search.category");null!==e&&(this._category=e)}get category(){return this._category}set theme(t){const e=I(t,"search.theme");null!==e&&(this._theme=e)}get theme(){return this._theme}set type(t){const e=I(t,"search.type");null!==e&&(this._type=e),this._type=t}get type(){return this._type}set method(t){const e=Object.values(q);this._method=e.filter((e=>e.id===t||e.value===t))[0]||e.filter((t=>t.isDefault))[0]}get method(){return this._method}get layer(){const t=[];return this.engine&&t.push("isearchengine",L(this.engine)),this.results>-1&&t.push("isearchresults",this.results),this.terms&&t.push("isearchkey","search_terms","isearchdata",L(this.terms)),this.category&&t.push("isearchkey","search_category","isearchdata",L(this.category)),this.theme&&t.push("isearchkey","search_theme","isearchdata",L(this.theme)),this.type&&t.push("isearchkey","search_type","isearchdata",L(this.type)),this._method&&t.length&&t.push("isearchkey","search_method","isearchdata",this._method.value),t}}j.Method=q;class H{constructor(t){this._config=t||{}}reset(t=!1){this.id=t?void 0:this._config.id,this.type=t?void 0:this._config.type,this.name=t?void 0:this._config.name,this.step=t?void 0:this._config.step,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this.objective=t?void 0:this._config.objective,this.error=t?void 0:this._config.error}set id(t){const e=I(t,"funnel.id");null!==e&&(this._id=e)}get id(){return this._id}set type(t){const e=I(t,"funnel.type");null!==e&&(this._type=e)}get type(){return this._type}set name(t){const e=I(t,"funnel.name");null!==e&&(this._name=e)}get name(){return this._name}set step(t){const e=I(t,"funnel.step");null!==e&&(this._step=e)}get step(){return this._step}set current(t){const e=S(t,"funnel.current");null!==e&&(this._current=e)}get current(){return this._current}set total(t){const e=S(t,"funnel.total");null!==e&&(this._total=e)}get total(){return this._total}set objective(t){const e=I(t,"funnel.objective");null!==e&&(this._objective=e),this._objective=t}get objective(){return this._objective}set error(t){const e=I(t,"funnel.error");null!==e&&(this._error=e),this._error=t}get error(){return this._error}get layer(){const t=[];return this.id&&t.push("funnel_id",L(this.id)),this.type&&t.push("funnel_type",L(this.type)),this.name&&t.push("funnel_name",L(this.name)),this.step&&t.push("funnel_step_name",L(this.step)),!isNaN(this.current)&&this.current>-1&&t.push("funnel_step_number",this.current),!isNaN(this.total)&&this.total>-1&&t.push("funnel_step_max",this.total),this.objective&&t.push("funnel_objective",L(this.objective)),this.error&&t.push("funnel_error",L(this.error)),t}}const K={IN:"in",OUT:"out",NONE:"none"},V={id:"unstarted",value:-1},G={id:"started",value:1},W={id:"singular",value:2},Y={id:"ended",value:3},z=t=>Object.entries(t).map((([t,e])=>["actionpname",L(t),"actionpvalue",L(e)])).flat();class Z{constructor(t){this._isMuted=!1,this._regulation=y.NONE,this._name=t,this._status=V,this._labels=[],this._parameters={},this._sentData=[]}get isMuted(){return this._isMuted}set isMuted(t){this._isMuted=t}get regulation(){return this._regulation}set regulation(t){Object.values(y).includes(t)&&(this._regulation=t)}get isSingular(){return this._status===W}get status(){return this._status}get name(){return this._name}get labels(){return this._labels}get reference(){return this._reference}get parameters(){return this._parameters}get mode(){return this._mode}singularize(){this._status=W}rewind(){this._sentData=[],this._status=V}addParameter(t,e){this._parameters[t]=e}removeParameter(t){delete this._parameters[t]}set reference(t){const e=I(t,`action ${this._name}`);null!==e&&(this._reference=e)}get _base(){return["actionname",this._name]}_getLayer(t={}){if(this._isMuted)return[];this._mode!==K.IN&&this._sentData.push(JSON.stringify(t));const e=this._base;switch(this._mode){case K.IN:case K.OUT:e.push("actionmode",this._mode)}const s=this._labels.slice(0,5);return s.length=5,s.some((t=>t))&&e.push("actionlabel",s.map((t=>"string"==typeof t?L(t):"")).join(",")),this._reference&&e.push("actionref",this._reference),e.push.apply(e,z(Object.assign(this._parameters,t||{}))),e}start(e){switch(this._status){case V:this._mode=K.IN,this._status=G;break;case W:this._mode=K.NONE,this._status=Y;break;default:return t.inspector.error(`unexpected start on action ${this._name} with status ${this._status.id}`),[]}return this._getLayer(e)}end(t){switch(this._status){case G:this._mode=K.OUT,this._status=Y;break;case V:case W:this._mode=K.NONE,this._status=Y;break;case Y:if(this._sentData.includes(JSON.stringify(t)))return[];this._mode=K.NONE,this._status=Y;break;default:return[]}return this._getLayer(t)}resume(e){if(this._isMuted)return[];if(this._status.value>=Y.value)return t.inspector.error(`unexpected resuming on action ${this._name} with status ${this._status.id}`),[];const s=this._base;return e&&s.push.apply(s,z(e)),s}}class X{constructor(){this._actions=[]}rewind(){this._actions.forEach((t=>t.rewind()))}getAction(t){let e=this._actions.filter((e=>e.name===t))[0];return e||(e=new Z(t),this._actions.push(e)),e}hasAction(t){return this._actions.some((e=>e.name===t))}remove(t){const e=this._actions.indexOf(t);return-1!==e&&(this._actions.splice(e,1),!0)}}X.ActionMode=K;const Q=new X;X.instance=Q;class J{constructor(t,e=!1){this._onRouteChange=t,this._isListeningHash=e,this._update(),f.add(this)}_update(){this._pathname=document.location.pathname,this._search=document.location.search,this._hash=document.location.hash,this._path=`${this._pathname}${this._search}`,this._isListeningHash&&(this._path+=this._hash),this._hasTitle=this._title===document.title,this._title=document.title}render(){this._pathname===document.location.pathname&&this._search===document.location.search||this.change(),this._isListeningHash&&this._hash!==document.location.hash&&this.change()}change(){this._referrer=this._path,this._update(),this._onRouteChange()}get path(){return this._path}get hasTitle(){return this._hasTitle}get title(){return this._title}get referrer(){return this._referrer}}const tt={COLLECT:t.internals.ns.event("collect")},et={REWIND:t.internals.ns.emission("analytics","rewind")},st={ENABLE:{entries:["enable","enabled","true","yes","1",!0],value:!0,output:!0},DISABLE:{entries:["disable","disabled","false","no","0",!1],value:!1,output:!1},REDUCE:{entries:["reduce"],value:"reduce",output:!1}};class it{constructor(e){switch(e.collection){case s.MANUAL:case s.LOAD:case s.FULL:case s.HASH:this._collection=e.collection;break;default:if(e.mode&&"manual"===e.mode)this._collection=e.collection;switch(!0){case"manual"===e.mode:this._collection=s.MANUAL;break;case t.mode===t.Modes.ANGULAR:case t.mode===t.Modes.REACT:case t.mode===t.Modes.VUE:this._collection=s.FULL;break;default:this._collection=s.LOAD}}this.isActionEnabled=e.isActionEnabled,this._user=new D(e.user),this._site=new $(e.site),this._page=new U(e.page),this._search=new j(e.search),this._funnel=new H(e.funnel),this._delay=-1,N.setCollector(this)}get page(){return this._page}get user(){return this._user}get site(){return this._site}get search(){return this._search}get funnel(){return this._funnel}start(){const t=this._handleRouteChange.bind(this);switch(this._collection){case s.LOAD:this.collect();break;case s.FULL:this.collect(),this._location=new J(t);break;case s.HASH:this.collect(),this._location=new J(t,!0)}}_handleRouteChange(){N.send(!0),this._delay=6,f.add(this)}render(){this._delay--,this._delay<0&&(f.remove(this),this._routeChanged())}_routeChanged(){Q.rewind(),this._page.referrer=this._location.referrer,this._location.hasTitle&&(this._page.title=this._location.title),this._page.path=this._location.path;const e=new CustomEvent(tt.COLLECT);document.documentElement.dispatchEvent(e),this.collect(),t.internals&&t.internals.stage&&t.internals.stage.root&&t.internals.stage.root.descend(et.REWIND)}reset(t=!1){this._user.reset(t),this._site.reset(t),this._page.reset(t),this._search.reset(t),this._funnel.reset(t)}collect(){this.page.collecting()&&N.collect()}get collection(){return this._collection}get isCollecting(){return this._page.isCollecting}get isActionEnabled(){return this._isActionEnabled.value}set isActionEnabled(t){this._isActionEnabled=Object.values(st).find((e=>e.entries.includes(t)))||st.DISABLE}get isActionReduced(){return this._isActionEnabled===st.REDUCE}get layer(){return[...this._user.layer,...this._site.layer,...this._page.layer,...this._search.layer,...this._funnel.layer]}}const nt=new class{constructor(){this._isReady=!1,this._readiness=new Promise(((t,e)=>{this._isReady?t():(this._resolve=t,this._reject=e)})),this._configure()}_configure(){switch(!0){case void 0!==window[e]:this._config=window[e].configuration.analytics,window[e].promise.then(this._build.bind(this),(()=>{}));break;case void 0!==t.internals&&void 0!==t.internals.configuration&&void 0!==t.internals.configuration.analytics&&void 0!==t.internals.configuration.analytics.domain:this._config=t.internals.configuration.analytics,this._build();break;case void 0!==t.analytics&&void 0!==t.analytics.domain:this._config=t.analytics,this._build();break;default:t.inspector.warn("analytics configuration is incorrect or missing (required : domain)")}}_build(){this._init=new l(this._config.domain),this._init.configure().then(this._start.bind(this),(t=>this._reject(t)))}get isReady(){return this._isReady}get readiness(){return this._readiness}_start(){this._isReady||(this._cmp=new p(this._config.cmp),this._collector=new it(this._config),this._collector.reset(),this._isReady=!0,this._resolve(),N.start(),this._collector.start())}get page(){return this._collector.page}get user(){return this._collector.user}get site(){return this._collector._site}get search(){return this._collector.search}get funnel(){return this._collector.funnel}get cmp(){return this._cmp}get opt(){return a}get collection(){return this._collector.collection}get isActionEnabled(){return this._collector.isActionEnabled}set isActionEnabled(t){this._collector.isActionEnabled=t}get isDebugging(){return T.isActive}set isDebugging(t){T.isActive=t}push(t,e){m(t,e)}reset(t=!1){this._collector.reset()}collect(){this._collector.collect()}};nt.Collection=s,nt.PushType=b;t.analytics=((t,...e)=>(e.forEach((e=>{const s=Object.keys(e).reduce(((t,s)=>(t[s]=Object.getOwnPropertyDescriptor(e,s),t)),{});Object.getOwnPropertySymbols(e).forEach((t=>{const i=Object.getOwnPropertyDescriptor(e,t);i.enumerable&&(s[t]=i)})),Object.defineProperties(t,s)})),t))(nt,{});const rt={IMPRESSION:{id:"impression",isSingular:!0,isBeginning:!0,attributed:!1,type:"impression"},CLICK:{id:"click",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},INTERNAL:{id:"internal",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},EXTERNAL:{id:"external",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOWNLOAD:{id:"download",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},BUTTON:{id:"button",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOUBLE_CLICK:{id:"dblclick",isBeginning:!0,attributed:!0,type:"interaction",event:"dblclick",method:"eventListener"},OPEN:{id:"open",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},COMPLETE:{id:"complete",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},FOCUS:{id:"focus",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},ERROR:{id:"error",isSingular:!0,attributed:!1,type:"event"},ADD:{id:"add",isSingular:!0,attributed:!1,type:"event"},REMOVE:{id:"remove",isSingular:!0,attributed:!1,type:"event"},DISPLAY:{id:"display",isSingular:!0,attributed:!1,type:"event"},CHANGE:{id:"change",isSingular:!0,attributed:!0,type:"event",event:"change",method:"change"},PROGRESS:{id:"progress",isBeginning:!0,attributed:!0,type:"event"},SHARE:{id:"share",isBeginning:!0,attributed:!1,type:"interaction"},PRESS:{id:"press",isBeginning:!0,attributed:!1,type:"interaction"},RELEASE:{id:"release",isBeginning:!0,attributed:!1,type:"interaction"},DISMISS:{id:"dismiss",isBeginning:!0,attributed:!1,type:"interaction"},UPLOAD:{id:"upload",isBeginning:!0,attributed:!1,type:"interaction"},CHECK:{id:"check",isBeginning:!0,attributed:!1,type:"interaction"},UNCHECK:{id:"uncheck",isBeginning:!0,attributed:!1,type:"interaction"},SELECT:{id:"select",isBeginning:!0,attributed:!1,type:"interaction"},SUBSCRIBE:{id:"subscribe",isBeginning:!0,attributed:!1,type:"interaction"},DISCLOSE:{id:"disclose",isBeginning:!0,attributed:!1,type:"event"},SEARCH:{id:"search",isBeginning:!0,attributed:!1,type:"event"},SHOW:{id:"show",isSingular:!0,attributed:!1,type:"event"},HIDE:{id:"hide",isSingular:!0,attributed:!1,type:"event"},AUTOPLAY:{id:"autoplay",isBeginning:!0,attributed:!1,type:"event"},PLAY:{id:"play",isBeginning:!0,attributed:!1,type:"interaction"},PAUSE:{id:"pause",isBeginning:!0,attributed:!1,type:"interaction"},END:{id:"end",isBeginning:!0,attributed:!1,type:"event"}},at="undefined",ot="heading",lt="component",ct="content",ht=Node.DOCUMENT_POSITION_PRECEDING|Node.DOCUMENT_POSITION_CONTAINED_BY;class ut{constructor(t){this._label=t.textContent.trim(),this._level=Number(t.tagName.charAt(1))}get level(){return this._level}get label(){return this._label}}class gt{constructor(t,e,s){this._type=at,this._node=t,this._target=e,this._level=s,this._label="",this._component="",this._isValid=!0,this.analyse()}_parseHeadings(){const t=Array.from({length:this._level},((t,e)=>`h${e+1}`)).join(",");this._headings=Array.from(this._node.querySelectorAll(t)).filter((t=>t===this._node||t.parentNode===this._node||null!=t.parentNode&&t.parentNode.parentNode===this._node)).filter((t=>(this._target.compareDocumentPosition(t)&ht)>0)).map((t=>new ut(t))).reverse()}_getComponent(){if("function"!=typeof t)return!1;const e=t(this._node);if(!e)return!1;const s=Object.values(e).filter((t=>t.isActionee)).sort(((t,e)=>e.priority-t.priority))[0];if(!s)return!1;this._type=lt,this._isValid=s.validate(this._target);const i=Array.from({length:6},((t,e)=>`h${e+1}`)).join(","),n=Array.from(this._node.querySelectorAll(i)).map((t=>new ut(t))).sort(((t,e)=>t.level-e.level))[0];n&&n.level<=this._level&&(this._level=n.level-1);const r=this._node.closest(i);if(r){const t=new ut(r);t.level<=this._level&&(this._level=t.level-1)}return!isNaN(s.level)&&s.level{e.level<=this._level&&(e.level>1&&t.unshift(e.label),this._level=e.level-1)})),!!t.length&&(this._type=ot,this._label=t.join(" › "),!0)}analyse(){if(this._parseHeadings(),this._getComponent())return;if(this._getHeading())return;if(this._node!==this._target)return;const t=this._node.textContent.trim();t&&(this._type=ct,this._label=t)}get type(){return this._type}get level(){return this._level}get label(){return this._label}get component(){return this._component}get node(){return this._node}get target(){return this._target}get isValid(){return this._isValid}}class dt{constructor(t){this._node=t,this._process()}_process(){const t=new gt(this._node,this._node,6);this._level=t.level,this._members=[t];let e=this._node.parentNode;for(;document.documentElement.contains(e)&&e!==document.documentElement&&this._level>0;){const t=new gt(e,this._node,this._level);switch(!0){case t.type===at:case!t.isValid:case t.label===this._members[0].label&&t.type===ot&&this._members[0].type===lt:break;case t.label===this._members[0].label&&t.type===lt&&this._members[0].type===ot:this._members.splice(0,1,t);break;default:this._members.unshift(t),t.levelt.label)).map((t=>t.label)).join(" › "));const s=this._members.filter((t=>t.component)).map((t=>t.component));this._component=L(s.join(" › ")),this._localComponent=s[s.length-1],this._globalComponent=s[0]}get localComponent(){return this._localComponent}get globalComponent(){return this._globalComponent}get label(){return this._label}get title(){return this._title}get component(){return this._component}}class _t{constructor(t,e,s,i="",n=null,r={},a=!1,o=y.NONE){this._node=t,this._type=e,this._id=s||this._node.id,this._isMuted=!1,this._title=n,this._category=i,this._parameters=r,this._isRating=a,this._regulation=o,this._hasBegun=!1,requestAnimationFrame(this._init.bind(this))}_init(){this._hierarchy=new dt(this._node);let e="",s="";this._id?e=`_[${this._id}]`:t.inspector.warn(`Analytics API requires an id to be set on tracked element. Missing on ${this._node.outerHTML}`),this._type&&(s=`(${this._type.id})_`),this._name=`${s}${this._title||this._hierarchy.title}${e}`,this._action=Q.getAction(this._name,this._type.status),this._type.isSingular&&this._action.singularize(),Object.keys(this._parameters).forEach((t=>this._action.addParameter(t,this._parameters[t]))),this._action.isMuted=this._isMuted,this._action.regulation=this._regulation,this._action.labels[0]=this._type.id,this._action.labels[1]=this._hierarchy.globalComponent,this._action.labels[2]=this._hierarchy.localComponent,this._action.labels[4]=this._category,this._hierarchy.label&&this._action.addParameter("component_label",this._hierarchy.label),this._hierarchy.title&&this._action.addParameter("heading_hierarchy",this._hierarchy.title),this._hierarchy.component&&this._action.addParameter("component_hierarchy",this._hierarchy.component),this.begin()}get isMuted(){return this._action?this._action.isMuted:this._isMuted}set isMuted(t){this._isMuted=t,this._action&&(this._action.isMuted=t)}get regulation(){return this._regulation}set regulation(t){this._regulation=t,this._action&&(this._action.regulation=t)}get action(){return this._action}rewind(){this._hasBegun=!1,this.begin()}begin(t={}){this._hasBegun||(this._hasBegun=!0,this._type.isBeginning&&(this._type.isSingular||this._isRating)&&N.appendStartingAction(this._action,t))}act(t={}){this._isMuted||(this._action?N.appendEndingAction(this._action,t):requestAnimationFrame((()=>this.act(t))))}dispose(){Q.remove(this._action)}}const pt={RATING:t.internals.ns.attr("analytics-rating"),ACTION:t.internals.ns.attr("analytics-action")};class mt extends t.core.Instance{constructor(t=-1,e="",s=null,i=y.NONE){super(),this._type=null,this._priority=t,this._category=e,this._title=s,this._parameters={},this._data={},this._isMuted=!1,this._regulation=i}static get instanceClassName(){return"Actionee"}get proxy(){const e=this,s={validate:(t,s)=>e.validate(t,s)},i={get isActionee(){return!0},get label(){return e.label},get priority(){return e.priority},get level(){return e.level},get node(){return e.node}};return t.internals.property.completeAssign(super.proxy,s,i)}get data(){return this._data}_config(t,e){if(super._config(t,e),null===this._type)return this._sort(t),void(this._isMuted=!0);const s=this.getRegulation();this._regulation=s!==y.NONE?s:this._regulation;const i=this.getAttribute(pt.ACTION),n="string"==typeof i&&"false"!==i.toLowerCase()&&"true"!==i.toLowerCase()?L(i):this._title;this._isRating=this.hasAttribute(pt.RATING),this._actionElement=new _t(this.node,this._type,this.id,this._category,n,this._parameters,this._isRating,this._regulation),this._isMuted&&(this._actionElement.isMuted=!0),this.addDescent(et.REWIND,this.rewind.bind(this)),this._sort(t)}getRegulation(){const t=this.getAttribute(pt.ACTION);switch(!0){case"string"==typeof t&&"false"===t.toLowerCase():return y.PREVENT;case null!==t:return y.ENFORCE;default:return y.NONE}}mutate(t){if(t.includes(pt.ACTION)){const t=this.getRegulation();this._regulation!==t&&(this._regulation=t,this._actionElement&&(this._actionElement.regulation=t))}super.mutate(t)}_sort(t){const e=t.instances.filter((t=>t.isActionee)).sort(((t,e)=>e.priority-t.priority));e.length<=1||e.forEach(((t,e)=>{t.isMuted=e>0}))}get isMuted(){return this._actionElement?this._actionElement.isMuted:this._isMuted}set isMuted(t){this._isMuted=t,this._actionElement&&(this._actionElement.isMuted=t)}get priority(){return this._priority}setPriority(t){this._priority=t}get isInteractive(){return"A"===this.node.tagName||"BUTTON"===this.node.tagName}detectInteractionType(t){t||(t=this.node);const e=t.tagName,s=t.getAttribute("href"),i=t.hasAttribute("download"),n=t.hostname;switch(!0){case"A"!==e:this._type=rt.CLICK;break;case i:this._type=rt.DOWNLOAD,this.value=s;break;case n===location.hostname:this._type=rt.INTERNAL,this.value=s;break;case n.length>0:this._type=rt.EXTERNAL,this.value=s;break;default:this._type=rt.CLICK}}setClickType(){this._type=rt.CLICK}listenActionClick(t){t?(this._clickTarget=t,this._clickTarget.addEventListener("click",this._handlingClick,{capture:!0})):this.listenClick({capture:!0})}handleClick(){this.act()}setImpressionType(){this._type=rt.IMPRESSION}rewind(){this._actionElement&&this._actionElement.rewind()}act(t={}){void 0!==this._actionElement&&(this._data.component_value=this.value,this._actionElement.act(Object.assign(this._data,t)))}getFirstText(t){if(t||(t=this.node),t.childNodes&&t.childNodes.length>0){for(let e=0;e50?`${t.substring(0,50).trim()}[...]`:t}getInteractionLabel(){const t=this.getAttribute("title");if(t)return this.cropText(t);const e=this.getFirstText();if(e)return e;const s=this.node.querySelector("img");if(s){const t=s.getAttribute("alt");if(t)return this.cropText(t)}return null}getHeadingLabel(t=6){const e=Array.from({length:t},((t,e)=>`h${e+1}`)).join(","),s=Array.from(this.querySelectorAll(e)).filter((t=>(this.node.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)>0));if(s.length)for(const t of s){const e=this.getFirstText(t);if(e)return e}}detectLevel(t){t||(t=this.node);const e=Array.from({length:6},((t,e)=>`h${e+1}`)).join(","),s=Array.from(t.querySelectorAll(e)).map((t=>Number(t.tagName.charAt(1))));s.length&&(this._level=Math.min.apply(null,s)-1)}validate(t){return!0}get actionElement(){return this._actionElement}get label(){return null}get value(){return this._value||this.label}set value(t){this._value=t}get isActionee(){return!0}get level(){return this._level}get type(){return this._type}dispose(){this._clickTarget&&this._clickTarget.removeEventListener("click",this._handlingClick),super.dispose()}}class bt extends mt{constructor(){super(100,"",null,y.ENFORCE)}static get instanceClassName(){return"AttributeActionee"}init(){this._attribute=this.registration.selector.replace(/[[\]]/g,"");const t=this._attribute.split("-").pop();switch(this._type=Object.values(rt).filter((e=>e.id===t))[0],this._title=this.getAttribute(this._attribute),this._type===rt.CLICK&&this.detectInteractionType(),this._type.method){case"eventListener":this.listen(this._type.event,this.handleEvent.bind(this));break;case"change":this.listen(this._type.event,this.handleChange.bind(this))}}handleEvent(t){this._actionElement.act()}handleChange(t){this._actionElement.act({change_value:t.target.value})}dispose(){this._actionElement.dispose(),super.dispose()}}const ft={CLICK:t.internals.ns.emission("button","click")};class yt extends mt{constructor(t=-1){super(t,"dsfr_component")}static get instanceClassName(){return"ComponentActionee"}get proxy(){const e=this,s={get component(){return e.component}};return t.internals.property.completeAssign(super.proxy,s)}setDiscloseType(){this._type=rt.DISCLOSE}listenDisclose(){this.listen(t.core.DisclosureEvent.DISCLOSE,this._handleDisclose.bind(this),{capture:!0})}_handleDisclose(){this.act()}setChangeType(){this._type=rt.CHANGE}listenChange(){this.listen("change",this._handleChange.bind(this),{capture:!0})}_handleChange(t){t.target&&t.target.value&&(this.setChangeValue(t),this.act())}setChangeValue(t){this.value=t.target.value}listenInputValidation(t,e=rt.CLICK,s=!1){t||(t=this.node),this._type=e,this._isSendingInputValue=s,this.addAscent(ft.CLICK,this._actValidatedInput.bind(this));const i=this.element.getDescendantInstances("ButtonActionee",null,!0)[0];i&&(i.isMuted=!0),this._validatedInput=t.querySelector("input"),this._handlingInputValidation=this._handleInputValidation.bind(this),this._validatedInput&&this._validatedInput.addEventListener("keydown",this._handlingInputValidation)}_handleInputValidation(t){13===t.keyCode&&this._actValidatedInput()}_actValidatedInput(){this._isActingValidatedInput||(this._isActingValidatedInput=!0,this._isSendingInputValue&&(this.value=this._validatedInput.value.trim()),this.act(),this.request(this._actedValidatedInput.bind(this)))}_actedValidatedInput(){this._isActingValidatedInput=!1}setCheckType(){this._type=rt.CHECK}detectCheckableType(){const t=this.node.checked;this._type=t?rt.UNCHECK:rt.CHECK}listenCheckable(){this.listen("change",this._handleCheckable.bind(this),{capture:!0})}_handleCheckable(t){switch(t.target&&"on"!==t.target.value&&(this.value=t.target.value),!0){case this._type===rt.CHECK&&t.target.checked:case this._type===rt.UNCHECK&&!t.target.checked:this.act()}}detectPressableType(){const t=this.node.hasAttribute("aria-pressed");if(t){const t="true"===this.node.getAttribute("aria-pressed");this._type=t?rt.RELEASE:rt.PRESS}return t}listenPressable(){this.listen("click",this._handlePressable.bind(this),{capture:!0})}_handlePressable(t){switch(!0){case this._type===rt.PRESS&&"false"===t.target.getAttribute("aria-pressed"):case this._type===rt.RELEASE&&"true"===t.target.getAttribute("aria-pressed"):this.act()}}setDismissType(){this._type=rt.DISMISS}get component(){return null}dispose(){this._validatedInput&&this._validatedInput.removeEventListener("keydown",this._handlingInputValidation),super.dispose()}}const Et={ACCORDION:t.internals.ns.selector("accordion"),TITLE:t.internals.ns.selector("accordion__title")},Nt="accordion";class Tt extends yt{constructor(){super(2)}static get instanceClassName(){return"AccordionButtonActionee"}init(){this.isMuted=!0}get button(){return this.element.getInstance("CollapseButton")}get label(){const t=this.getFirstText();return t||"bouton d'accordéon"}get component(){return Nt}}class vt extends yt{constructor(){super(2)}static get instanceClassName(){return"AccordionActionee"}init(){this.setDiscloseType(),this.wrapper=this.node.closest(Et.ACCORDION),this.detectLevel(this.wrapper),this.register(`[aria-controls="${this.id}"]`,Tt),this.listenDisclose()}get label(){if(this.wrapper){const t=this.wrapper.querySelector(Et.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"accordéon"}get component(){return Nt}dispose(){super.dispose()}}const At=(t,e)=>t.split(",").map((t=>`${t}${e}`)).join(","),Ct={ALERT:t.internals.ns.selector("alert"),TITLE:t.internals.ns.selector("alert__title")};class Lt extends yt{constructor(){super(1)}static get instanceClassName(){return"AlertActionee"}get label(){const t=this.node.querySelector(Ct.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"alerte"}get component(){return"alert"}}const It={LINK:`${t.internals.ns.selector("breadcrumb__link")}:not([aria-current])`,COLLAPSE:`${t.internals.ns.selector("breadcrumb")} ${t.internals.ns.selector("collapse")}`};class St extends yt{constructor(){super(2)}static get instanceClassName(){return"BreadcrumbActionee"}get label(){return"fil d'ariane"}get component(){return"breadcrumb"}}class Ot extends yt{constructor(){super(2)}static get instanceClassName(){return"BreadcrumbLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}handleClick(){this.act()}get label(){const t=this.getFirstText();return t||"lien fil d'ariane"}get component(){return null}}const wt={BUTTON:`${t.internals.ns.selector("btn")}:not(${t.internals.ns.selector("btn--close")})`};class xt extends yt{constructor(){super(1),this._data={}}static get instanceClassName(){return"ButtonActionee"}init(){this.detectInteractionType(),this.listenActionClick()}handleClick(){this.ascend(ft.CLICK),this.act()}get label(){if("input"===this.node.tagName)switch(this.node.type){case"button":case"submit":if(this.hasAttribute("value"))return this.getAttribute("value")}const t=this.getFirstText();return t||"bouton"}get component(){return"button"}}const kt={CALLOUT:t.internals.ns.selector("callout"),TITLE:t.internals.ns.selector("callout__title")};class Dt extends yt{constructor(){super(1)}static get instanceClassName(){return"CalloutActionee"}get label(){const t=this.node.querySelector(kt.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"mise en avant"}get component(){return"callout"}}const Rt={CARD:t.internals.ns.selector("card"),LINK:`${t.internals.ns.selector("card__title")} a, ${t.internals.ns.selector("card__title")} button`,TITLE:t.internals.ns.selector("card__title")};class $t extends yt{constructor(){super(1)}static get instanceClassName(){return"CardActionee"}init(){const t=this.node.querySelector(Rt.LINK);t&&(this.link=t,this.detectInteractionType(t),this.listenActionClick(t))}get label(){const t=this.node.querySelector(Rt.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}const e=this.getHeadingLabel();return e||"carte"}get component(){return"card"}}const Pt={INPUT:t.internals.ns.selector('checkbox-group [type="checkbox"]')};class Mt extends yt{constructor(){super(1),this._data={}}static get instanceClassName(){return"CheckboxActionee"}init(){this.detectCheckableType(),this.listenCheckable()}get label(){const e=this.node.parentNode.querySelector(t.internals.ns.selector("label"));if(e){const t=this.getFirstText(e);if(t)return t}return"case à cocher"}get component(){return"checkbox"}}const Bt={CONNECT:t.internals.ns.selector("connect"),LINK:t.internals.ns.selector("connect + * a, connect + a")},Ft="connect";class Ut extends yt{constructor(){super(1)}static get instanceClassName(){return"ConnectActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){return this.node.classList.contains("fr-connect--plus")?"FranceConnect+":"FranceConnect"}get component(){return Ft}}class qt extends yt{constructor(){super(2)}static get instanceClassName(){return"ConnectLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){return this.getFirstText()||"qu'est-ce que FranceConnect ?"}get component(){return Ft}}const jt={BANNER:t.internals.ns.selector("consent-banner")};class Ht extends yt{constructor(){super(1)}static get instanceClassName(){return"ConsentActionee"}get label(){return"gestionnaire de consentement"}get component(){return"consent"}}const Kt={LINK:t.internals.ns.selector("download__link")};class Vt extends yt{constructor(){super(1)}static get instanceClassName(){return"DownloadActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"téléchargement"}get component(){return"download"}}const Gt={FOLLOW:t.internals.ns.selector("follow"),NEWSLETTER_INPUT_GROUP:t.internals.ns.selector("follow__newsletter")+" "+t.internals.ns.selector("input-group")};class Wt extends yt{constructor(){super(2)}static get instanceClassName(){return"FollowActionee"}init(){if(this._inputGroup=this.querySelector(Gt.NEWSLETTER_INPUT_GROUP),this._inputGroup){this.listenInputValidation(this._inputGroup,rt.SUBSCRIBE);const t=this.element.getDescendantInstances("InputActionee",null,!0)[0];t&&(t.isMuted=!0)}}get label(){return"lettre d'information et réseaux sociaux"}get component(){return"follow"}}const Yt={FOOTER:t.internals.ns.selector("footer"),FOOTER_LINKS:`${t.internals.ns.selector("footer")} a[href], ${t.internals.ns.selector("footer")} button`};class zt extends yt{constructor(){super(1)}static get instanceClassName(){return"FooterActionee"}get label(){return"pied de page"}get component(){return"footer"}}class Zt extends yt{constructor(){super(2)}static get instanceClassName(){return"FooterLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getInteractionLabel();return t||"lien pied de page"}}class Xt extends yt{constructor(){super(1)}static get instanceClassName(){return"HeaderActionee"}get label(){return"en-tête"}get component(){return"header"}}class Qt extends yt{constructor(){super(4)}static get instanceClassName(){return"HeaderModalButtonActionee"}}class Jt extends yt{constructor(){super(0)}static get instanceClassName(){return"HeaderModalActionee"}init(){this.isBreakpoint(t.core.Breakpoints.LG)&&(this.setPriority(4),this.register(`[aria-controls="${this.id}"]`,Qt))}}const te={TOOLS_BUTTON:`${t.internals.ns.selector("header__tools-links")} ${t.internals.ns.selector("btns-group")} ${t.internals.ns.selector("btn")}`,MENU_BUTTON:`${t.internals.ns.selector("header__menu-links")} ${t.internals.ns.selector("btns-group")} ${t.internals.ns.selector("btn")}`};class ee extends yt{constructor(){super(4)}static get instanceClassName(){return"HeaderToolsButtonActionee"}init(){this.isBreakpoint(t.core.Breakpoints.LG)&&(this._priority=-1)}}class se extends yt{static get instanceClassName(){return"HeaderMenuButtonActionee"}init(){this.isBreakpoint(t.core.Breakpoints.LG)&&this.setPriority(4)}}const ie={HIGHLIGHT:t.internals.ns.selector("highlight")};class ne extends yt{constructor(){super(1)}static get instanceClassName(){return"HighlightActionee"}get label(){return"mise en exergue"}get component(){return"highlight"}}const re={LINK:t.internals.ns.selector("link")};class ae extends yt{constructor(){super(1)}static get instanceClassName(){return"LinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien"}get component(){return"link"}}const oe={INPUT:t.internals.ns.selector("input-group")};class le extends yt{constructor(){super(1)}static get instanceClassName(){return"InputActionee"}init(){this._input=this.querySelector(t.internals.ns.selector("input")),this._label=this.querySelector(t.internals.ns.selector("label")),this._inputWrap=this.querySelector(t.internals.ns.selector("input-wrap")),this._inputWrap&&this.listenInputValidation(this._inputWrap)}get label(){if(this._label){const t=this.getFirstText(this._label);if(t)return t}return"champ de saisie"}get component(){return"input"}}const ce={TITLE:t.internals.ns.selector("modal__title")};class he extends yt{constructor(){super(2)}static get instanceClassName(){return"ModalActionee"}init(){this.setDiscloseType(),this.detectLevel(),this.listenDisclose()}get label(){const t=this.node.querySelector(ce.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}const e=this.getHeadingLabel(2);if(e)return e;const s=this.element.getInstance("Modal");if(s){const t=s.buttons.filter((t=>t.isPrimary))[0];if(t){const e=this.getFirstText(t.node);if(e)return e}}return"modale"}get component(){return"modal"}}class ue extends yt{constructor(){super(1)}static get instanceClassName(){return"NavigationActionee"}get label(){return"navigation"}}const ge={LINK:t.internals.ns.selector("nav__link"),BUTTON:t.internals.ns.selector("nav__btn")};class de extends yt{constructor(){super(2)}static get instanceClassName(){return"NavigationLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien de navigation"}get component(){return"navigation"}}class _e extends yt{constructor(){super(2)}static get instanceClassName(){return"NavigationSectionActionee"}init(){this._wrapper=this.node.closest(t.navigation.NavigationSelector.ITEM)}get label(){if(this._wrapper){const t=this._wrapper.querySelector(ge.BUTTON);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"section de navigation"}}const pe={NOTICE:t.internals.ns.selector("notice"),TITLE:t.internals.ns.selector("notice__title"),LINK:t.internals.ns.selector("notice a")},me="notice";class be extends yt{constructor(){super(1)}static get instanceClassName(){return"NoticeActionee"}get label(){const t=this.node.querySelector(pe.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"bandeau d'information importante"}get component(){return me}}class fe extends yt{constructor(){super(2)}static get instanceClassName(){return"NoticeLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien de bandeau d'information importante"}get component(){return me}}const ye={PAGINATION:t.internals.ns.selector("pagination"),LINK:t.internals.ns.selector("pagination__link"),NEXT_LINK:t.internals.ns.selector("pagination__link--next"),LAST_LINK:t.internals.ns.selector("pagination__link--last"),ANALYTICS_TOTAL:t.internals.ns.attr("analytics-page-total"),CURRENT:'[aria-current="page"]'};class Ee extends yt{constructor(){super(1)}static get instanceClassName(){return"PaginationActionee"}init(){this.setPagination()}get label(){return"pagination"}get component(){return"pagination"}setPagination(){const e=this.node.querySelector(ye.CURRENT);if(!e)return;const s=this.getFirstText(e);if(!s)return;const i=this.getInt(s);if(isNaN(i))return;t.analytics.page.current=i;const n=this.getTotalPage();isNaN(n)||(t.analytics.page.total=n)}getTotalPage(){const t=parseInt(this.node.getAttribute(ye.ANALYTICS_TOTAL));if(!isNaN(t))return t;const e=this.node.querySelectorAll(`${ye.LINK}:not(${ye.NEXT_LINK}):not(${ye.LAST_LINK})`);if(!e)return null;const s=this.getFirstText(e[e.length-1]);return s?this.getInt(s):null}getInt(t){const e=t.match(/\d+/);return e&&0!==e.length?parseInt(e[0]):null}}class Ne extends yt{constructor(){super(1)}static get instanceClassName(){return"PaginationLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien pagination"}get component(){return null}}const Te={QUOTE:t.internals.ns.selector("quote")};class ve extends yt{constructor(){super(1)}static get instanceClassName(){return"QuoteActionee"}get label(){const t=this.node.querySelector("blockquote");if(t){const e=this.getFirstText(t);if(e)return e}return"citation"}get component(){return"quote"}}const Ae={INPUT:t.internals.ns.selector('radio-group [type="radio"]')},Ce={LABEL:t.internals.ns.selector("label"),FIELDSET:t.internals.ns.selector("fieldset"),LEGEND:t.internals.ns.selector("fieldset__legend")};class Le extends yt{constructor(){super(1),this._data={}}static get instanceClassName(){return"RadioActionee"}init(){this.setCheckType(),this.listenCheckable()}get label(){const e=[],s=this.node.closest(Ce.FIELDSET);if(s){const t=s.querySelector(Ce.LEGEND);if(t){const s=this.getFirstText(t);s&&e.push(s)}}const i=this.node.parentNode.querySelector(t.internals.ns.selector("label"));if(i){const t=this.getFirstText(i);t&&e.push(t)}return e.join(" › ")}get component(){return"radio"}}const Ie={SEARCH_BAR:t.internals.ns.selector("search-bar")};class Se extends yt{constructor(){super(2)}static get instanceClassName(){return"SearchActionee"}init(){this.listenInputValidation(this.node,rt.SEARCH,!0)}get label(){return"barre de recherche"}get component(){return"search"}}const Oe={SELECT:t.internals.ns.selector("select")};class we extends yt{constructor(){super(1),this._data={}}static get instanceClassName(){return"SelectActionee"}init(){this.setChangeType(),this.listenChange()}setChangeValue(t){if(!t.target||!t.target.selectedOptions)return;const e=Array.from(t.target.selectedOptions).map((t=>t.text)).join(" - ");e&&(this.value=e)}get label(){const e=this.node.parentNode.querySelector(t.internals.ns.selector("label"));if(e){const t=this.getFirstText(e);if(t)return t}return"liste déroulante"}get component(){return"select"}}const xe={SHARE:t.internals.ns.selector("share"),TITLE:t.internals.ns.selector("share__title")};class ke extends yt{constructor(){super(1)}static get instanceClassName(){return"ShareActionee"}get label(){const t=this.querySelector(xe.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"boutons de partage"}get component(){return"share"}}const De={SIDEMENU:t.internals.ns.selector("sidemenu"),ITEM:t.internals.ns.selector("sidemenu__item"),LINK:t.internals.ns.selector("sidemenu__link"),BUTTON:t.internals.ns.selector("sidemenu__btn"),TITLE:t.internals.ns.selector("sidemenu__title")};class Re extends yt{constructor(){super(1)}static get instanceClassName(){return"SidemenuActionee"}get label(){const t=this.node.closest(De.SIDEMENU);if(t){const e=t.querySelector(De.TITLE);if(e){const t=this.getFirstText(e);if(t)return t}}return"menu Latéral"}}class $e extends yt{constructor(){super(2)}static get instanceClassName(){return"SidemenuLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien menu latéral"}get component(){return"sidemenu"}}class Pe extends yt{constructor(){super(2)}static get instanceClassName(){return"SidemenuSectionActionee"}init(){this._wrapper=this.node.closest(De.ITEM)}get label(){if(this._wrapper){const t=this._wrapper.querySelector(De.BUTTON);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"section menu latéral"}}const Me={SUMMARY:t.internals.ns.selector("summary"),LINK:t.internals.ns.selector("summary__link"),TITLE:t.internals.ns.selector("summary__title"),ITEM:`${t.internals.ns.selector("summary")} li`};class Be extends yt{constructor(){super(1)}static get instanceClassName(){return"SummaryActionee"}get label(){const t=this.node.querySelector(Me.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}return"sommaire"}}class Fe extends yt{constructor(){super(1)}static get instanceClassName(){return"SummaryLinkActionee"}init(){this.detectInteractionType(),this.listenActionClick()}get label(){const t=this.getFirstText();return t||"lien sommaire"}get component(){return"summary"}}class Ue extends yt{constructor(){super(2)}static get instanceClassName(){return"SummarySectionActionee"}init(){this._link=this.querySelector(Me.LINK)}validate(t){return this._link!==t}get label(){if(!this._link)return null;const t=this.getFirstText(this._link);return t||"section sommaire"}}class qe extends yt{constructor(){super(2)}static get instanceClassName(){return"TabButtonActionee"}init(){this.isMuted=!0}get label(){const t=this.getFirstText();return t||"bouton onglet"}get component(){return"tab"}}class je extends yt{constructor(){super(2)}static get instanceClassName(){return"TabActionee"}init(){this.setDiscloseType(),this.register(`[aria-controls="${this.id}"]`,qe),this._instance=this.element.getInstance("TabPanel"),this.listenDisclose()}get label(){const e=this.node.closest(t.tab.TabSelector.GROUP);if(e){const s=e.querySelector(`${t.tab.TabSelector.LIST} [aria-controls="${this.id}"]${t.tab.TabSelector.TAB}`);if(s){const t=this.getFirstText(s);if(t)return t}}const s=this._instance.buttons.filter((t=>t.isPrimary))[0];if(s){const t=this.getFirstText(s);if(t)return t}return"onglet"}get component(){return"tab"}}const He={TABLE:t.internals.ns.selector("table")};class Ke extends yt{constructor(){super(1)}static get instanceClassName(){return"TableActionee"}get label(){const t=this.node.querySelector("caption");if(t){const e=this.getFirstText(t);if(e)return e}return"tableau"}get component(){return"table"}}const Ve={TAG:t.internals.ns.selector("tag"),PRESSABLE:"[aria-pressed]",DISMISSIBLE:`${t.internals.ns.selector("tag--dismiss","")}`};class Ge extends yt{constructor(){super(2)}static get instanceClassName(){return"TagActionee"}init(){switch(!0){case this.detectPressableType():this.listenPressable();break;case this.isInteractive&&this.node.classList.contains(Ve.DISMISSIBLE):this.setDismissType(),this.listenActionClick();break;case this.isInteractive:this.detectInteractionType(),this.listenActionClick()}}get label(){const t=this.getFirstText();return t||"tag"}get component(){return"tag"}}const We={TILE:t.internals.ns.selector("tile"),LINK:`${t.internals.ns.selector("tile__title")} a, ${t.internals.ns.selector("tile__title")} button`,TITLE:t.internals.ns.selector("tile__title")};class Ye extends yt{constructor(){super(1)}static get instanceClassName(){return"TileActionee"}init(){const t=this.node.querySelector(We.LINK);t&&(this.link=t,this.detectInteractionType(t),this.listenActionClick(t))}get label(){const t=this.node.querySelector(We.TITLE);if(t)return this.getFirstText(t);const e=this.getHeadingLabel();return e||"tuile"}get component(){return"tile"}}const ze={INPUT:t.internals.ns.selector('toggle [type="checkbox"]')};class Ze extends yt{constructor(){super(1),this._data={}}static get instanceClassName(){return"ToggleActionee"}init(){this.detectCheckableType(),this.listenCheckable()}get label(){const e=this.node.parentNode.querySelector(t.internals.ns.selector("toggle__label"));if(e){const t=this.getFirstText(e);if(t)return t}return"interrupteur"}get component(){return"toggle"}}const Xe=t.internals.ns.selector("transcription"),Qe=t.internals.ns.selector("collapse"),Je={TRANSCRIPTION:Xe,COLLAPSE:`${Xe} > ${Qe}, ${Xe} > *:not(${Xe}):not(${Qe}) > ${Qe}, ${Xe} > *:not(${Xe}):not(${Qe}) > *:not(${Xe}):not(${Qe}) > ${Qe}`,COLLAPSE_LEGACY:`${Xe} ${Qe}`,TITLE:`${Xe}__title`},ts="transcription";class es extends yt{constructor(){super(2)}static get instanceClassName(){return"TranscriptionButtonActionee"}init(){this.isMuted=!0}get button(){return this.element.getInstance("CollapseButton")}get label(){const t=this.getFirstText();return t||"bouton transcription"}get component(){return ts}}class ss extends yt{constructor(){super(2)}static get instanceClassName(){return"TranscriptionActionee"}init(){this.setDiscloseType(),this.wrapper=this.node.closest(Je.ACCORDION),this.detectLevel(this.wrapper),this.register(`[aria-controls="${this.id}"]`,es),this.listenDisclose()}get label(){if(this.wrapper){const t=this.wrapper.querySelector(Je.TITLE);if(t){const e=this.getFirstText(t);if(e)return e}}const t=this.element.getInstance("Collapse");if(t){const e=t.buttons.filter((t=>t.isPrimary))[0];if(e){const t=this.getFirstText(e);if(t)return t}}return"transcription"}get component(){return ts}}const is=t.internals.ns.selector("translate"),ns=t.internals.ns.selector("collapse"),rs={BUTTON:`${is}__btn`,COLLAPSE:`${is} > ${ns}, ${is} > *:not(${is}):not(${ns}) > ${ns}, ${is} > *:not(${is}):not(${ns}) > *:not(${is}):not(${ns}) > ${ns}`,COLLAPSE_LEGACY:`${is} ${ns}`},as="translate";class os extends yt{constructor(){super(2)}static get instanceClassName(){return"TranslateActionee"}get label(){const t=this.node.querySelector(rs.BUTTON);if(t){const e=t.getAttribute("title");if(e)return e}return"sélecteur de langue"}get component(){return as}}class ls extends yt{constructor(){super(2)}static get instanceClassName(){return"TranslateButtonActionee"}init(){this.isMuted=!0}get button(){return this.element.getInstance("CollapseButton")}get label(){const t=this.getInteractionLabel();return t||"bouton sélecteur de langue"}get component(){return as}}const cs={UPLOAD:t.internals.ns.selector("upload")};class hs extends yt{constructor(){super(1)}static get instanceClassName(){return"UploadActionee"}init(){this.setChangeType(),this._label=this.node.parentNode.querySelector(t.internals.ns.selector("label")),this.listenChange()}setChangeValue(t){if(!t.target||!t.target.files)return;const e=Array.from(t.target.files).map((t=>/(?:\.([^.]+))?$/.exec(t.name)[1])).filter(((t,e,s)=>s.indexOf(t)===e)).join(" - ");e&&(this.value=e)}get label(){if(this._label){const t=this.getFirstText(this._label);if(t)return t}return"ajout de fichier"}get component(){return"upload"}}const us=(e="")=>{((e="")=>{t.accordion&&t.internals.register(At(t.accordion.AccordionSelector.COLLAPSE,e),vt)})(e),((e="")=>{t.breadcrumb&&(t.internals.register(At(It.COLLAPSE,e),St),t.internals.register(At(It.LINK,e),Ot))})(e),((e="")=>{t.internals.register(At(Ct.ALERT,e),Lt)})(e),((e="")=>{t.internals.register(At(wt.BUTTON,e),xt)})(e),((e="")=>{t.internals.register(At(kt.CALLOUT,e),Dt)})(e),((e="")=>{t.internals.register(At(Bt.CONNECT,e),Ut),t.internals.register(At(Bt.LINK,e),qt)})(e),((e="")=>{t.internals.register(At(jt.BANNER,e),Ht)})(e),((e="")=>{t.internals.register(At(Rt.CARD,e),$t)})(e),((e="")=>{t.internals.register(At(oe.INPUT,e),le)})(e),((e="")=>{t.internals.register(At(Pt.INPUT,e),Mt)})(e),(e=>{t.internals.register(At(Kt.LINK,e),Vt)})(e),((e="")=>{t.internals.register(At(Yt.FOOTER,e),zt),t.internals.register(At(Yt.FOOTER_LINKS,e),Zt)})(e),((e="")=>{t.internals.register(At(Gt.FOLLOW,e),Wt)})(e),((e="")=>{t.header&&(t.internals.register(At(t.header.HeaderSelector.HEADER,e),Xt),t.internals.register(At(t.header.HeaderSelector.MODALS,e),Jt),t.internals.register(At(te.TOOLS_BUTTON,e),ee),t.internals.register(At(te.MENU_BUTTON,e),se))})(e),((e="")=>{t.internals.register(At(ie.HIGHLIGHT,e),ne)})(e),((e="")=>{t.internals.register(At(re.LINK,e),ae)})(e),((e="")=>{t.modal&&t.internals.register(At(t.modal.ModalSelector.MODAL,e),he)})(e),((e="")=>{t.navigation&&(t.internals.register(At(t.navigation.NavigationSelector.NAVIGATION,e),ue),t.internals.register(At(ge.LINK,e),de),t.internals.register(At(t.navigation.NavigationSelector.COLLAPSE,e),_e))})(e),((e="")=>{t.internals.register(At(pe.NOTICE,e),be),t.internals.register(At(pe.LINK,e),fe)})(e),((e="")=>{t.internals.register(At(ye.PAGINATION,e),Ee),t.internals.register(At(ye.LINK,e),Ne)})(e),((e="")=>{t.internals.register(At(Te.QUOTE,e),ve)})(e),((e="")=>{t.internals.register(At(Ae.INPUT,e),Le)})(e),((e="")=>{t.internals.register(At(Ie.SEARCH_BAR,e),Se)})(e),((e="")=>{t.internals.register(At(Oe.SELECT,e),we)})(e),((e="")=>{t.internals.register(At(xe.SHARE,e),ke)})(e),(e=>{t.sidemenu&&(t.internals.register(At(De.SIDEMENU,e),Re),t.internals.register(At(De.LINK,e),$e),t.internals.register(At(t.sidemenu.SidemenuSelector.COLLAPSE,e),Pe))})(e),((e="")=>{t.internals.register(At(Me.SUMMARY,e),Be),t.internals.register(At(Me.LINK,e),Fe),t.internals.register(At(Me.ITEM,e),Ue)})(e),((e="")=>{t.tab&&t.internals.register(At(t.tab.TabSelector.PANEL,e),je)})(e),((e="")=>{t.internals.register(At(He.TABLE,e),Ke)})(e),((e="")=>{t.internals.register(At(Ve.TAG,e),Ge)})(e),((e="")=>{t.internals.register(At(We.TILE,e),Ye)})(e),((e="")=>{t.internals.register(At(ze.INPUT,e),Ze)})(e),((e="")=>{t.internals.register(At(Je.COLLAPSE,e),ss)})(e),((e="")=>{t.internals.register(At(rs.COLLAPSE,e),os),t.internals.register(At(rs.BUTTON,e),ls)})(e),((e="")=>{t.internals.register(At(cs.UPLOAD,e),hs)})(e)},gs=e=>{Object.values(rt).filter((t=>t.attributed)).forEach((e=>t.internals.register(t.internals.ns.attr.selector(`analytics-${e.id}`),bt))),us(e)};t.analytics.readiness.then((()=>{const e=t.analytics._collector.isActionReduced?t.internals.ns.attr.selector("analytics-action"):"";gs(e)}),(()=>{})); diff --git a/dsfr/static/dsfr/dist/analytics/analytics.nomodule.min.js b/dsfr/static/dsfr/dist/analytics/analytics.nomodule.min.js index 94c19bd67..a099a3a75 100644 --- a/dsfr/static/dsfr/dist/analytics/analytics.nomodule.min.js +++ b/dsfr/static/dsfr/dist/analytics/analytics.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t=window.dsfr,e="a4e35ba2a938ba9d007689dbf3f46acbb9807869",n={MANUAL:"manual",LOAD:"load",FULL:"full",HASH:"hash"},i="_EA_",r=i+"disabled",o=i+"toggle",s=function(){this._configure()},a={isDisabled:{configurable:!0}};s.prototype._configure=function(){var t=this;window[r]=function(){return t.isDisabled},window[o]=this.toggle.bind(this)},a.isDisabled.get=function(){return localStorage.getItem(i)},s.prototype.toggle=function(){this.isDisabled?this.enable():this.disable()},s.prototype.enable=function(){localStorage.getItem(i)&&localStorage.removeItem(i)},s.prototype.disable=function(){localStorage.setItem(i,"1")},Object.defineProperties(s.prototype,a);var c=new s,l="EA_push",u=function(t){var e=this;this._domain=t,this._isLoaded=!1,this._promise=new Promise((function(t,n){e._resolve=t,e._reject=n}))},p={id:{configurable:!0},store:{configurable:!0}};p.id.get=function(){return this._id},p.store.get=function(){return this._store},u.prototype.configure=function(){return this.init(),this._promise},u.prototype.init=function(){for(var e=this,n=5381,i=this._domain.length-1;i>0;i--)n=33*n^this._domain.charCodeAt(i);n>>>=0,this._id="_EA_"+n,this._store=[],this._store.eah=this._domain,window[this._id]=this._store,window[l]||(window[l]=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];return e.store.push(t)}),c.isDisabled?(t.inspector.warn("User opted out, eulerian is disabled"),this._reject("User opted out, eulerian is disabled")):this.load()},u.prototype.load=function(){var t=new Date/1e7|0,e=t%26,n=String.fromCharCode(97+e,122-e,65+e)+t%1e3;this._script=document.createElement("script"),this._script.ea=this.id,this._script.async=!0,this._script.addEventListener("load",this.loaded.bind(this)),this._script.addEventListener("error",this.error.bind(this)),this._script.src="//"+this._domain+"/"+n+".js?2";var i=document.getElementsByTagName("script")[0];i.parentNode.insertBefore(this._script,i)},u.prototype.error=function(){t.inspector.error("unable to load Eulerian script file. the domain declared in your configuration must match the domain provided by the Eulerian interface (tag creation)"),this._reject("eulerian script loading error")},u.prototype.loaded=function(){this._isLoaded||(this._isLoaded=!0,this._resolve())},Object.defineProperties(u.prototype,p);var h=-1,f=0,g=1,d=2,_=3,b=function(t){var e=this;this._config=t,this._state=h,this._promise=new Promise((function(t,n){e._resolve=t,e._reject=n}))};b.prototype.configure=function(){if(this._state>=g)return this._promise;this._state===h&&(t.inspector.info("analytics configures tarteaucitron"),this._state=f);var e=window.tarteaucitron;if(e&&e.services){this._state=g;var n={key:"eulerian",type:"analytic",name:"Eulerian Analytics",needConsent:!0,cookies:["etuix"],uri:"https://eulerian.com/vie-privee",js:this.init.bind(this),fallback:function(){e.services.eulerian.js()}};return e.services.eulerian=n,e.job||(e.job=[]),e.job.push("eulerian"),this._promise}window.requestAnimationFrame(this.configure.bind(this))},b.prototype.init=function(){if(!(this._state>=d)){this._state=d,window.__eaGenericCmpApi=this.integrate.bind(this);var t=this.update.bind(this);window.addEventListener("tac.close_alert",t),window.addEventListener("tac.close_panel",t)}},b.prototype.integrate=function(e){this._state>=_||(this._state=_,this._cmpApi=e,t.inspector.info("analytics has integrated tarteaucitron"),this._resolve(),this.update())},b.prototype.update=function(){this._state<_||this._cmpApi("tac",window.tarteaucitron,1)};var y=function(t){if(this._config=t,t&&"tarteaucitron"===t.id)this.integrateTarteAuCitron()};y.prototype.integrateTarteAuCitron=function(){return this._tac=new b(this._config),this._tac.configure()},y.prototype.optin=function(){};var m=function(e,n){"function"==typeof window.EA_push?(t.inspector.info("analytics",e,n),window.EA_push(e,n)):t.inspector.warn("Analytics datalayer not sent, Eulerian API isn't yet avalaible")},v={COLLECTOR:"collector",ACTION:"action",ACTION_PARAMETER:"actionparam"},N=function(){this._renderables=[],this._rendering=this.render.bind(this),requestAnimationFrame(this._rendering)};N.prototype.add=function(t){-1===this._renderables.indexOf(t)&&this._renderables.push(t)},N.prototype.remove=function(t){var e=this._renderables.indexOf(t);e>-1&&this._renderables.splice(e,1)},N.prototype.render=function(){this._renderables.forEach((function(t){return t.render()})),requestAnimationFrame(this._rendering)};var O=new N,C={ENFORCE:"enforce",PREVENT:"prevent",NONE:"none"},E=function(){this._startingActions=[],this._endingActions=[],this._handlingVisibilityChange=this._handleVisibilityChange.bind(this),this._handlingEnd=this._handleEnd.bind(this),this._isStarted=!1,this._isListening=!1,this.reset()};E.prototype.setCollector=function(t){this._collector=t},E.prototype.reset=function(t){void 0===t&&(t=!1),this._type=v.ACTION,t||(this._startingActions.length=0),this._endingActions.length=0,this._count=0,this._delay=-1,this._isRequested=!1,this._unlisten()},E.prototype.start=function(){this._isStarted||(this._isStarted=!0,O.add(this))},E.prototype.collect=function(){this._type=v.COLLECTOR,this._request()},E.prototype.regulate=function(e,n){if(!e)return!1;if(n.some((function(t){return t.test(e)})))return t.inspector.log("action exists in queue",e),!1;switch(e.regulation){case C.PREVENT:return!1;case C.ENFORCE:return!0;default:return this._collector.isActionEnabled}},E.prototype.appendStartingAction=function(t,e){if(this.regulate(t,this._startingActions)){var n=new T(t,e);this._startingActions.push(n),this._request()}},E.prototype.appendEndingAction=function(t,e){if(this.regulate(t,this._endingActions)){var n=new T(t,e);this._endingActions.push(n),this._request()}},E.prototype._request=function(){this._listen(),this._isRequested=!0,this._delay=4},E.prototype._listen=function(){this._isListening||(this._isListening=!0,document.addEventListener("visibilitychange",this._handlingVisibilityChange),document.addEventListener("unload",this._handlingEnd),document.addEventListener("beforeunload",this._handlingEnd),document.addEventListener("pagehide",this._handlingEnd))},E.prototype._unlisten=function(){this._isListening&&(this._isListening=!1,document.removeEventListener("visibilitychange",this._handlingVisibilityChange),document.removeEventListener("unload",this._handlingEnd),document.removeEventListener("beforeunload",this._handlingEnd),document.removeEventListener("pagehide",this._handlingEnd))},E.prototype._handleVisibilityChange=function(t){"hidden"===document.visibilityState&&this.send()},E.prototype._handleEnd=function(){this.send()},E.prototype.render=function(){if(!(this._delay<=-1))switch(this._delay--,this._count++,!0){case this._count>20:case 0===this._delay:this.send()}},E.prototype.send=function(t){if(void 0===t&&(t=!1),this._isRequested){var e=[];t||e.push.apply(e,this._startingActions.map((function(t){return t.start()})).filter((function(t){return t.length>0}))),e.push.apply(e,this._endingActions.map((function(t){return t.end()})).filter((function(t){return t.length>0})));for(var n=e.length/80+1|0,i=[],r=0;r0){var a=i.splice(0,1)[0];a.length>0&&s.push.apply(s,a)}s.flat(),s.length>0&&m(v.COLLECTOR,s)}if(i.length>0)for(var c=0;c0&&m(v.ACTION,l)}this.reset(t)}};var T=function(t,e){this._action=t,this._data=e};T.prototype.test=function(t){return this._action===t},T.prototype.start=function(){return this._action.start(this._data)},T.prototype.end=function(){return this._action.end(this._data)};var A=new E,L=function(){},I={debugger:{configurable:!0},isActive:{configurable:!0}};I.debugger.get=function(){return window._oEa},I.isActive.get=function(){return!!this.debugger&&"1"===this.debugger._dbg},I.isActive.set=function(t){this.debugger&&this.isActive!==t&&this.debugger.debug(t?1:0)},Object.defineProperties(L.prototype,I);var j=new L,P={CONNECTED:{id:"connected",value:"connecté",isConnected:!0,isDefault:!0},ANONYMOUS:{id:"anonymous",value:"anonyme",isConnected:!1,isDefault:!0},GUEST:{id:"guest",value:"invité",isConnected:!1}},S={INDIVIDUAL:{id:"individual",value:"part"},PROFESSIONNAL:{id:"professionnal",value:"pro"}},w={"0x0022":""","0x0024":"$","0x0026":"&","0x0027":"'","0x002a":"*","0x002c":",","0x003c":"<","0x003e":">","0x003f":"?","0x005c":"\","0x005e":"^","0x0060":"`","0x007c":"|","0x007e":"~"},k=function(t){return t?t=(t=(t=[].concat(t).map((function(t){return w[function(t){var e=t.charCodeAt(0).toString(16);return"0x0000".slice(0,-e.length)+e}(t)]||t})).join("")).replace(/\s+/g," ").replace(/\s/g,"_")).toLowerCase():t},x=function(e,n,i){switch(void 0===i&&(i=!0),!0){case"number"==typeof e:return""+e;case"string"==typeof e:return e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a String"),null},D=function(e,n,i){switch(void 0===i&&(i=!0),!0){case!isNaN(e):return e;case"string"==typeof e&&!isNaN(Number(e)):return Number(e);case void 0===e&&i:case null===e&&i:return-1}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a Number"),null},R=function(e,n){switch(!0){case"boolean"==typeof e:return e;case"string"==typeof e&&"true"===e.toLowerCase():case"1"===e:case 1===e:return!0;case"string"==typeof e&&"false"===e.toLowerCase():case"0"===e:case 0===e:return!1;case void 0===e:case null===e:return e}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a Boolean"),null},M=function(e,n,i){switch(void 0===i&&(i=!0),!0){case"string"==typeof e&&/^[A-Za-z]{2}$|^[A-Za-z]{2}[-_]/.test(e):return e.split(/[-_]/)[0].toLowerCase();case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting language as a String following ISO 639-1 format"),null},B=function(e,n,i){switch(void 0===i&&(i=!0),!0){case"string"==typeof e:return/^FR-[A-Z0-9]{2,3}$/.test(e)||t.inspector.warn("value '"+e+"' set at analytics."+n+" with wrong format. Geographic location should be a String following ISO 3166-2:FR format"),e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting geographic location as a String following ISO 3166-2:FR format"),null},F=function(t){return t.toISOString().split("T")[0]},U=function(t){this._config=t||{}},q={uid:{configurable:!0},email:{configurable:!0},isNew:{configurable:!0},status:{configurable:!0},profile:{configurable:!0},language:{configurable:!0},type:{configurable:!0},layer:{configurable:!0}};U.prototype.reset=function(t){void 0===t&&(t=!1),this._isConnected=!1,this.status=P.ANONYMOUS,!t&&this._config.connect?this.connect(this._config.connect.uid,this._config.connect.email,this._config.connect.isNew):(this._uid=void 0,this._email=void 0,this._isNew=!1),this.profile=t?void 0:this._config.profile,this.language=t?void 0:this._config.language,this.type=t?void 0:this._config.type},U.prototype.connect=function(e,n,i){void 0===i&&(i=!1),this._uid=x(e,"user.uid"),/^[a-zA-Z0-9!#$%&'*+/=?^_`{|}~.-]{2,}@[a-zA-Z0-9-]{2,}\.[a-zA-Z]{2,}$/.test(n)&&t.inspector.warn("Please check analytics.user.email is properly encrypted "),this._email=x(n,"user.email"),this._isNew=R(i),this._isConnected=!0,this.status=P.CONNECTED},q.uid.get=function(){return this._uid},q.email.get=function(){return this._email},q.isNew.get=function(){return this._isNew},q.status.set=function(t){var e=this,n=Object.values(P).filter((function(t){return t.isConnected===e._isConnected}));this._status=n.filter((function(e){return e.id===t||e.value===t}))[0]||n.filter((function(t){return t.isDefault}))[0]},q.status.get=function(){return this._status.id},q.profile.set=function(t){var e=x(t,"user.profile");null!==e&&(this._profile=e)},q.profile.get=function(){return this._profile.id},q.language.set=function(t){var e=M(t,"user.language");null!==e&&(this._language=e)},q.language.get=function(){return this._language||navigator.language},q.type.set=function(t){this._type=Object.values(S).filter((function(e){return e.id===t||e.value===t}))[0]},q.type.get=function(){return this._type.id},q.layer.get=function(){var t=[];return this.uid&&t.push("uid",k(this.uid)),this.email&&t.push("email",k(this.email)),this.isNew&&t.push("newcustomer","1"),this.language&&t.push("user_language",this.language),t.push("user_login_status",this._status.value),this._profile&&t.push("profile",this._profile),this._type&&t.push("user_type",this._type.value),t},Object.defineProperties(U.prototype,q),U.Status=P,U.Type=S;var H={DEVELOPMENT:{id:"development",value:"dev"},STAGE:{id:"stage",value:"stage"},PRODUCTION:{id:"production",value:"prod"}},K=function(t){this._config=t||{}},V={environment:{configurable:!0},entity:{configurable:!0},language:{configurable:!0},target:{configurable:!0},type:{configurable:!0},region:{configurable:!0},department:{configurable:!0},version:{configurable:!0},api:{configurable:!0},layer:{configurable:!0}};K.prototype.reset=function(e){void 0===e&&(e=!1),this.environment=e?H.DEVELOPMENT.id:this._config.environment,this.entity=e?void 0:this._config.entity,this.language=e?void 0:this._config.language,this.target=e?void 0:this._config.target,this.type=e?void 0:this._config.type,this.region=e?void 0:this._config.region,this.department=e?void 0:this._config.department,this.version=e?void 0:this._config.version,this._api=t.version},V.environment.set=function(t){switch(t){case H.PRODUCTION.id:case H.PRODUCTION.value:this._environment=H.PRODUCTION;break;case H.STAGE.id:case H.STAGE.value:this._environment=H.STAGE;break;case H.DEVELOPMENT.id:case H.DEVELOPMENT.value:default:this._environment=H.DEVELOPMENT}},V.environment.get=function(){return this._environment?this._environment.id:H.DEVELOPMENT.id},V.entity.set=function(t){var e=x(t,"site.entity");null!==e&&(this._entity=e)},V.entity.get=function(){return this._entity},V.language.set=function(t){var e=M(t,"site.language");null!==e&&(this._language=e)},V.language.get=function(){return this._language||document.documentElement.lang},V.target.set=function(t){var e=x(t,"site.target");null!==e&&(this._target=e)},V.target.get=function(){return this._target},V.type.set=function(t){var e=x(t,"site.type");null!==e&&(this._type=e)},V.type.get=function(){return this._type},V.region.set=function(t){var e=B(t,"site.region");null!==e&&(this._region=e)},V.region.get=function(){return this._region},V.department.set=function(t){var e=B(t,"site.department");null!==e&&(this._department=e)},V.department.get=function(){return this._department},V.version.set=function(t){var e=x(t,"site.version");null!==e&&(this._version=e)},V.version.get=function(){return this._version},V.api.get=function(){return this._api},V.layer.get=function(){var e=[];return e.push("site_environment",this._environment.value),this.entity?e.push("site_entity",k(this.entity)):t.inspector.warn("entity is required in analytics.site"),this.language&&e.push("site_language",this.language),this.target&&e.push("site_target",k(this.target)),this.type&&e.push("site_type",k(this.type)),this.region&&e.push("site_region",this.region),this.department&&e.push("site_department",this.department),this.version&&e.push("site_version",this.version),this.api&&e.push("api_version",this.api),e},Object.defineProperties(K.prototype,V),K.Environment=H;var G={accordion:t.internals.ns.selector("accordion"),alert:t.internals.ns.selector("alert"),badge:t.internals.ns.selector("badge"),breadcrumb:t.internals.ns.selector("breadcrumb"),button:t.internals.ns.selector("btn"),callout:t.internals.ns.selector("callout"),card:t.internals.ns.selector("card"),checkbox:t.internals.ns.selector("checkbox-group"),connect:t.internals.ns.selector("connect"),consent:t.internals.ns.selector("consent-banner"),content:t.internals.ns.selector("content-media"),download:t.internals.ns.selector("download"),follow:t.internals.ns.selector("follow"),footer:t.internals.ns.selector("footer"),header:t.internals.ns.selector("header"),highlight:t.internals.ns.selector("highlight"),input:t.internals.ns.selector("input-group"),link:t.internals.ns.selector("link"),modal:t.internals.ns.selector("modal"),navigation:t.internals.ns.selector("nav"),notice:t.internals.ns.selector("notice"),pagination:t.internals.ns.selector("pagination"),quote:t.internals.ns.selector("quote"),radio:t.internals.ns.selector("radio-group"),search:t.internals.ns.selector("search-bar"),select:t.internals.ns.selector("select"),share:t.internals.ns.selector("share"),sidemenu:t.internals.ns.selector("sidemenu"),stepper:t.internals.ns.selector("stepper"),summary:t.internals.ns.selector("summary"),tab:t.internals.ns.selector("tabs"),table:t.internals.ns.selector("table"),tag:t.internals.ns.selector("tag"),tile:t.internals.ns.selector("tile"),toggle:t.internals.ns.selector("toggle"),tooltip:t.internals.ns.selector("tooltip"),transcription:t.internals.ns.selector("transcription"),translate:t.internals.ns.selector("translate"),upload:t.internals.ns.selector("upload-group")},W="collectable",Y="collecting",z="collected",Z=function(t){this._config=t||{},this._state=W},X={isCollecting:{configurable:!0},path:{configurable:!0},referrer:{configurable:!0},title:{configurable:!0},id:{configurable:!0},author:{configurable:!0},date:{configurable:!0},tags:{configurable:!0},name:{configurable:!0},labels:{configurable:!0},categories:{configurable:!0},isError:{configurable:!0},template:{configurable:!0},segment:{configurable:!0},group:{configurable:!0},subtemplate:{configurable:!0},theme:{configurable:!0},subtheme:{configurable:!0},related:{configurable:!0},depth:{configurable:!0},current:{configurable:!0},total:{configurable:!0},filters:{configurable:!0},layer:{configurable:!0}};Z.prototype.reset=function(t){void 0===t&&(t=!1),this.path=t?"":this._config.path,this.referrer=t?"":this._config.referrer,this.title=t?"":this._config.title,this.name=t?"":this._config.name,this.id=t?"":this._config.id,this.author=t?"":this._config.author,this.date=t?"":this._config.date,this._labels=t||!this._config.labels?["","","","",""]:this._config.labels,this._labels.length=5,this._tags=t||!this._config.tags?[]:this._config.tags,this._categories=t||!this._config.categories?["","",""]:this._config.categories,this.isError=!t&&this._config.isError,this.template=t?"":this._config.template,this.group=t?"":this._config.group,this.segment=t?"":this._config.segment,this.subtemplate=t?"":this._config.subtemplate,this.theme=t?"":this._config.theme,this.subtheme=t?"":this._config.subtheme,this.related=t?"":this._config.related,this.depth=t||isNaN(this._config.depth)?0:this._config.depth,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this._filters=t||!this._config.filters?[]:this._config.filters},Z.prototype.collecting=function(){return this._state!==W?(t.inspector.warn("current path '"+this.path+"' was already collected"),!1):(this._state=Y,!0)},X.isCollecting.get=function(){return this._state===Y},X.path.set=function(t){var e=x(t,"page.path");null!==e&&(this._path=e,this._state=W)},X.path.get=function(){return this._path||""+document.location.pathname+document.location.search},X.referrer.set=function(t){var e=x(t,"page.referrer");null!==e&&(this._referrer=e)},X.referrer.get=function(){return this._referrer},X.title.set=function(t){var e=x(t,"page.title");null!==e&&(this._title=e)},X.title.get=function(){return this._title||document.title},X.id.set=function(t){var e=x(t,"page.id");null!==e&&(this._id=e)},X.id.get=function(){return this._id},X.author.set=function(t){var e=x(t,"page.author");null!==e&&(this._author=e)},X.author.get=function(){return this._author},X.date.set=function(e){var n=function(e,n,i){switch(void 0===i&&(i=!0),!0){case e instanceof Date:return F(e);case"string"==typeof e:var r=new Date(e);if("Invalid Date"!==r.toString())return F(r);break;case void 0===e&&i:case null===e&&i:return null}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a Date"),null}(e,"page.date");null!==n&&(this._date=n)},X.date.get=function(){return this._date},X.tags.get=function(){return this._tags},X.name.set=function(t){var e=x(t,"page.name");null!==e&&(this._name=e)},X.name.get=function(){return this._name||this.title},X.labels.get=function(){return this._labels},X.categories.get=function(){return this._categories},X.isError.set=function(t){var e=R(t,"page.isError");null!==e&&(this._isError=e)},X.isError.get=function(){return this._isError},X.template.set=function(t){var e=x(t,"page.template");null!==e&&(this._template=e)},X.template.get=function(){return this._template||"autres"},X.segment.set=function(t){var e=x(t,"page.segment");null!==e&&(this._segment=e)},X.segment.get=function(){return this._segment||this.template},X.group.set=function(t){var e=x(t,"page.group");null!==e&&(this._group=e)},X.group.get=function(){return this._group||this.template},X.subtemplate.set=function(t){var e=x(t,"page.subtemplate");null!==e&&(this._subtemplate=e)},X.subtemplate.get=function(){return this._subtemplate},X.theme.set=function(t){var e=x(t,"page.theme");null!==e&&(this._theme=e)},X.theme.get=function(){return this._theme},X.subtheme.set=function(t){var e=x(t,"page.subtheme");null!==e&&(this._subtheme=e)},X.subtheme.get=function(){return this._subtheme},X.related.set=function(t){var e=x(t,"page.related");null!==e&&(this._related=e)},X.related.get=function(){return this._related},X.depth.set=function(t){var e=D(t,"page.depth");null!==e&&(this._depth=e)},X.depth.get=function(){return this._depth},X.current.set=function(t){var e=D(t,"page.current");null!==e&&(this._current=e)},X.current.get=function(){return this._current},X.total.set=function(t){var e=D(t,"page.total");null!==e&&(this._total=e)},X.total.get=function(){return this._total},X.filters.get=function(){return this._filters},X.layer.get=function(){this._state=z;var t=[];this.path&&t.push("path",k(this.path)),this.referrer&&t.push("referrer",k(this.referrer)),this.title&&t.push("page_title",k(this.title)),this.name&&t.push("page_name",k(this.name)),this.id&&t.push("page_id",k(this.id)),this.author&&t.push("page_author",k(this.author)),this.date&&t.push("page_date",k(this.date));var e=Object.keys(G).map((function(t){return null!==document.querySelector(G[t])?t:null})).filter((function(t){return null!==t})).join(",");e&&t.push("page_components",e);var n=this._labels.slice(0,5);n.length=5,n.some((function(t){return t}))&&t.push("pagelabel",n.map((function(t){return"string"==typeof t?k(t):""})).join(","));var i=this._tags;if(i.some((function(t){return t}))&&t.push("pagetag",i.map((function(t){return"string"==typeof t?k(t):""})).join(",")),this._categories.forEach((function(e,n){e&&t.push("page_category"+(n+1),e)})),this._isError&&t.push("error","1"),t.push("page_template",k(this.template)),t.push("pagegroup",k(this.group)),t.push("site-segment",k(this.segment)),this.subtemplate&&t.push("page_subtemplate",k(this.subtemplate)),this.theme&&t.push("page_theme",k(this.theme)),this.subtheme&&t.push("page_subtheme",k(this.subtheme)),this.related&&t.push("page_related",k(this.related)),isNaN(this.depth)||t.push("page_depth",this.depth),!isNaN(this.current)&&this.current>-1){var r=""+this.current;!isNaN(this.total)&&this.total>-1&&(r+="/"+this.total),t.push("page_pagination",r)}if(this.filters.length&&this.filters.some((function(t){return t}))){var o=this.filters.map((function(t){return"string"==typeof t?k(t):""}));t.push("page_filters",o.join(","))}return t},Object.defineProperties(Z.prototype,X);var $={STANDARD:{id:"standard",value:"standard",isDefault:!0},AUTOCOMPLETE:{id:"autocomplete",value:"autocompletion"}},Q=function(t){this._config=t||{}},J={engine:{configurable:!0},results:{configurable:!0},terms:{configurable:!0},category:{configurable:!0},theme:{configurable:!0},type:{configurable:!0},method:{configurable:!0},layer:{configurable:!0}};Q.prototype.reset=function(t){void 0===t&&(t=!1),this.engine=t?void 0:this._config.engine,this.results=t||isNaN(this._config.results)?-1:this._config.results,this.terms=t?void 0:this._config.terms,this.category=t?void 0:this._config.category,this.theme=t?void 0:this._config.theme,this.type=t?void 0:this._config.type,this.method=t?void 0:this._config.method},J.engine.set=function(t){var e=x(t,"search.engine");null!==e&&(this._engine=e)},J.engine.get=function(){return this._engine},J.results.set=function(t){var e=D(t,"search.results");null!==e&&(this._results=e)},J.results.get=function(){return this._results},J.terms.set=function(t){var e=x(t,"search.terms");null!==e&&(this._terms=e)},J.terms.get=function(){return this._terms},J.category.set=function(t){var e=x(t,"search.category");null!==e&&(this._category=e)},J.category.get=function(){return this._category},J.theme.set=function(t){var e=x(t,"search.theme");null!==e&&(this._theme=e)},J.theme.get=function(){return this._theme},J.type.set=function(t){var e=x(t,"search.type");null!==e&&(this._type=e),this._type=t},J.type.get=function(){return this._type},J.method.set=function(t){var e=Object.values($);this._method=e.filter((function(e){return e.id===t||e.value===t}))[0]||e.filter((function(t){return t.isDefault}))[0]},J.method.get=function(){return this._method},J.layer.get=function(){var t=[];return this.engine&&t.push("isearchengine",k(this.engine)),this.results>-1&&t.push("isearchresults",this.results),this.terms&&t.push("isearchkey","search_terms","isearchdata",k(this.terms)),this.category&&t.push("isearchkey","search_category","isearchdata",k(this.category)),this.theme&&t.push("isearchkey","search_theme","isearchdata",k(this.theme)),this.type&&t.push("isearchkey","search_type","isearchdata",k(this.type)),this._method&&t.length&&t.push("isearchkey","search_method","isearchdata",this._method.value),t},Object.defineProperties(Q.prototype,J),Q.Method=$;var tt=function(t){this._config=t||{}},et={id:{configurable:!0},type:{configurable:!0},name:{configurable:!0},step:{configurable:!0},current:{configurable:!0},total:{configurable:!0},objective:{configurable:!0},error:{configurable:!0},layer:{configurable:!0}};tt.prototype.reset=function(t){void 0===t&&(t=!1),this.id=t?void 0:this._config.id,this.type=t?void 0:this._config.type,this.name=t?void 0:this._config.name,this.step=t?void 0:this._config.step,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this.objective=t?void 0:this._config.objective,this.error=t?void 0:this._config.error},et.id.set=function(t){var e=x(t,"funnel.id");null!==e&&(this._id=e)},et.id.get=function(){return this._id},et.type.set=function(t){var e=x(t,"funnel.type");null!==e&&(this._type=e)},et.type.get=function(){return this._type},et.name.set=function(t){var e=x(t,"funnel.name");null!==e&&(this._name=e)},et.name.get=function(){return this._name},et.step.set=function(t){var e=x(t,"funnel.step");null!==e&&(this._step=e)},et.step.get=function(){return this._step},et.current.set=function(t){var e=D(t,"funnel.current");null!==e&&(this._current=e)},et.current.get=function(){return this._current},et.total.set=function(t){var e=D(t,"funnel.total");null!==e&&(this._total=e)},et.total.get=function(){return this._total},et.objective.set=function(t){var e=x(t,"funnel.objective");null!==e&&(this._objective=e),this._objective=t},et.objective.get=function(){return this._objective},et.error.set=function(t){var e=x(t,"funnel.error");null!==e&&(this._error=e),this._error=t},et.error.get=function(){return this._error},et.layer.get=function(){var t=[];return this.id&&t.push("funnel_id",k(this.id)),this.type&&t.push("funnel_type",k(this.type)),this.name&&t.push("funnel_name",k(this.name)),this.step&&t.push("funnel_step_name",k(this.step)),!isNaN(this.current)&&this.current>-1&&t.push("funnel_step_number",this.current),!isNaN(this.total)&&this.total>-1&&t.push("funnel_step_max",this.total),this.objective&&t.push("funnel_objective",k(this.objective)),this.error&&t.push("funnel_error",k(this.error)),t},Object.defineProperties(tt.prototype,et);var nt={IN:"in",OUT:"out",NONE:"none"},it={id:"unstarted",value:-1},rt={id:"started",value:1},ot={id:"singular",value:2},st={id:"ended",value:3},at=function(t){return Object.entries(t).map((function(t){var e=t[0],n=t[1];return["actionpname",k(e),"actionpvalue",k(n)]})).flat()},ct=function(t){this._isMuted=!1,this._regulation=C.NONE,this._name=t,this._status=it,this._labels=[],this._parameters={},this._sentData=[]},lt={isMuted:{configurable:!0},regulation:{configurable:!0},isSingular:{configurable:!0},status:{configurable:!0},name:{configurable:!0},labels:{configurable:!0},reference:{configurable:!0},parameters:{configurable:!0},mode:{configurable:!0},_base:{configurable:!0}};lt.isMuted.get=function(){return this._isMuted},lt.isMuted.set=function(t){this._isMuted=t},lt.regulation.get=function(){return this._regulation},lt.regulation.set=function(t){Object.values(C).includes(t)&&(this._regulation=t)},lt.isSingular.get=function(){return this._status===ot},lt.status.get=function(){return this._status},lt.name.get=function(){return this._name},lt.labels.get=function(){return this._labels},lt.reference.get=function(){return this._reference},lt.parameters.get=function(){return this._parameters},lt.mode.get=function(){return this._mode},ct.prototype.singularize=function(){this._status=ot},ct.prototype.rewind=function(){this._sentData=[],this._status=it},ct.prototype.addParameter=function(t,e){this._parameters[t]=e},ct.prototype.removeParameter=function(t){delete this._parameters[t]},lt.reference.set=function(t){var e=x(t,"action "+this._name);null!==e&&(this._reference=e)},lt._base.get=function(){return["actionname",this._name]},ct.prototype._getLayer=function(t){if(void 0===t&&(t={}),this._isMuted)return[];this._mode!==nt.IN&&this._sentData.push(JSON.stringify(t));var e=this._base;switch(this._mode){case nt.IN:case nt.OUT:e.push("actionmode",this._mode)}var n=this._labels.slice(0,5);return n.length=5,n.some((function(t){return t}))&&e.push("actionlabel",n.map((function(t){return"string"==typeof t?k(t):""})).join(",")),this._reference&&e.push("actionref",this._reference),e.push.apply(e,at(Object.assign(this._parameters,t||{}))),e},ct.prototype.start=function(e){switch(this._status){case it:this._mode=nt.IN,this._status=rt;break;case ot:this._mode=nt.NONE,this._status=st;break;default:return t.inspector.error("unexpected start on action "+this._name+" with status "+this._status.id),[]}return this._getLayer(e)},ct.prototype.end=function(t){switch(this._status){case rt:this._mode=nt.OUT,this._status=st;break;case it:case ot:this._mode=nt.NONE,this._status=st;break;case st:if(this._sentData.includes(JSON.stringify(t)))return[];this._mode=nt.NONE,this._status=st;break;default:return[]}return this._getLayer(t)},ct.prototype.resume=function(e){if(this._isMuted)return[];if(this._status.value>=st.value)return t.inspector.error("unexpected resuming on action "+this._name+" with status "+this._status.id),[];var n=this._base;return e&&n.push.apply(n,at(e)),n},Object.defineProperties(ct.prototype,lt);var ut=function(){this._actions=[]};ut.prototype.rewind=function(){this._actions.forEach((function(t){return t.rewind()}))},ut.prototype.getAction=function(t){var e=this._actions.filter((function(e){return e.name===t}))[0];return e||(e=new ct(t),this._actions.push(e)),e},ut.prototype.hasAction=function(t){return this._actions.some((function(e){return e.name===t}))},ut.prototype.remove=function(t){var e=this._actions.indexOf(t);return-1!==e&&(this._actions.splice(e,1),!0)},ut.ActionMode=nt;var pt=new ut;ut.instance=pt;var ht=function(t,e){void 0===e&&(e=!1),this._onRouteChange=t,this._isListeningHash=e,this._update(),O.add(this)},ft={path:{configurable:!0},hasTitle:{configurable:!0},title:{configurable:!0},referrer:{configurable:!0}};ht.prototype._update=function(){this._pathname=document.location.pathname,this._search=document.location.search,this._hash=document.location.hash,this._path=""+this._pathname+this._search,this._isListeningHash&&(this._path+=this._hash),this._hasTitle=this._title===document.title,this._title=document.title},ht.prototype.render=function(){this._pathname===document.location.pathname&&this._search===document.location.search||this.change(),this._isListeningHash&&this._hash!==document.location.hash&&this.change()},ht.prototype.change=function(){this._referrer=this._path,this._update(),this._onRouteChange()},ft.path.get=function(){return this._path},ft.hasTitle.get=function(){return this._hasTitle},ft.title.get=function(){return this._title},ft.referrer.get=function(){return this._referrer},Object.defineProperties(ht.prototype,ft);var gt={COLLECT:t.internals.ns.event("collect")},dt={REWIND:t.internals.ns.emission("analytics","rewind")},_t=function(e){switch(e.collection){case n.MANUAL:case n.LOAD:case n.FULL:case n.HASH:this._collection=e.collection;break;default:if(e.mode&&"manual"===e.mode)this._collection=e.collection;switch(!0){case"manual"===e.mode:this._collection=n.MANUAL;break;case t.mode===t.Modes.ANGULAR:case t.mode===t.Modes.REACT:case t.mode===t.Modes.VUE:this._collection=n.FULL;break;default:this._collection=n.LOAD}}this._isActionEnabled="false"===e.isActionEnabled||e.isActionEnabled,this._user=new U(e.user),this._site=new K(e.site),this._page=new Z(e.page),this._search=new Q(e.search),this._funnel=new tt(e.funnel),this._delay=-1,A.setCollector(this)},bt={page:{configurable:!0},user:{configurable:!0},site:{configurable:!0},search:{configurable:!0},funnel:{configurable:!0},collection:{configurable:!0},isCollecting:{configurable:!0},isActionEnabled:{configurable:!0},layer:{configurable:!0}};bt.page.get=function(){return this._page},bt.user.get=function(){return this._user},bt.site.get=function(){return this._site},bt.search.get=function(){return this._search},bt.funnel.get=function(){return this._funnel},_t.prototype.start=function(){var t=this._handleRouteChange.bind(this);switch(this._collection){case n.LOAD:this.collect();break;case n.FULL:this.collect(),this._location=new ht(t);break;case n.HASH:this.collect(),this._location=new ht(t,!0)}},_t.prototype._handleRouteChange=function(){A.send(!0),this._delay=6,O.add(this)},_t.prototype.render=function(){this._delay--,this._delay<0&&(O.remove(this),this._routeChanged())},_t.prototype._routeChanged=function(){pt.rewind(),this._page.referrer=this._location.referrer,this._location.hasTitle&&(this._page.title=this._location.title),this._page.path=this._location.path;var e=new CustomEvent(gt.COLLECT);document.documentElement.dispatchEvent(e),this.collect(),t.internals&&t.internals.stage&&t.internals.stage.root&&t.internals.stage.root.descend(dt.REWIND)},_t.prototype.reset=function(t){void 0===t&&(t=!1),this._user.reset(t),this._site.reset(t),this._page.reset(t),this._search.reset(t),this._funnel.reset(t)},_t.prototype.collect=function(){this.page.collecting()&&A.collect()},bt.collection.get=function(){return this._collection},bt.isCollecting.get=function(){return this._page.isCollecting},bt.isActionEnabled.get=function(){return this._isActionEnabled},bt.isActionEnabled.set=function(t){this._isActionEnabled=t},bt.layer.get=function(){return this._user.layer.concat(this._site.layer,this._page.layer,this._search.layer,this._funnel.layer)},Object.defineProperties(_t.prototype,bt);var yt=function(){var t=this;this._isReady=!1,this._readiness=new Promise((function(e,n){t._isReady?e():(t._resolve=e,t._reject=n)})),this._configure()},mt={isReady:{configurable:!0},readiness:{configurable:!0},page:{configurable:!0},user:{configurable:!0},site:{configurable:!0},search:{configurable:!0},funnel:{configurable:!0},cmp:{configurable:!0},opt:{configurable:!0},collection:{configurable:!0},isActionEnabled:{configurable:!0},isDebugging:{configurable:!0}};yt.prototype._configure=function(){switch(!0){case void 0!==window[e]:this._config=window[e].configuration.analytics,window[e].promise.then(this._build.bind(this),(function(){}));break;case void 0!==t.internals&&void 0!==t.internals.configuration&&void 0!==t.internals.configuration.analytics&&void 0!==t.internals.configuration.analytics.domain:this._config=t.internals.configuration.analytics,this._build();break;case void 0!==t.analytics&&void 0!==t.analytics.domain:this._config=t.analytics,this._build();break;default:t.inspector.warn("analytics configuration is incorrect or missing (required : domain)")}},yt.prototype._build=function(){var t=this;this._init=new u(this._config.domain),this._init.configure().then(this._start.bind(this),(function(e){return t._reject(e)}))},mt.isReady.get=function(){return this._isReady},mt.readiness.get=function(){return this._readiness},yt.prototype._start=function(){this._isReady||(this._cmp=new y(this._config.cmp),this._collector=new _t(this._config),this._collector.reset(),this._isReady=!0,this._resolve(),A.start(),this._collector.start())},mt.page.get=function(){return this._collector.page},mt.user.get=function(){return this._collector.user},mt.site.get=function(){return this._collector._site},mt.search.get=function(){return this._collector.search},mt.funnel.get=function(){return this._collector.funnel},mt.cmp.get=function(){return this._cmp},mt.opt.get=function(){return c},mt.collection.get=function(){return this._collector.collection},mt.isActionEnabled.get=function(){return this._collector.isActionEnabled},mt.isActionEnabled.set=function(t){this._collector.isActionEnabled=t},mt.isDebugging.get=function(){return j.isActive},mt.isDebugging.set=function(t){j.isActive=t},yt.prototype.push=function(t,e){m(t,e)},yt.prototype.reset=function(t){this._collector.reset()},yt.prototype.collect=function(){this._collector.collect()},Object.defineProperties(yt.prototype,mt);var vt=new yt;vt.Collection=n,vt.PushType=v;t.analytics=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return e.forEach((function(e){var n=Object.keys(e).reduce((function(t,n){return t[n]=Object.getOwnPropertyDescriptor(e,n),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var i=Object.getOwnPropertyDescriptor(e,t);i.enumerable&&(n[t]=i)})),Object.defineProperties(t,n)})),t}(vt,{});var Nt={IMPRESSION:{id:"impression",isSingular:!0,isBeginning:!0,attributed:!1,type:"impression"},CLICK:{id:"click",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},INTERNAL:{id:"internal",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},EXTERNAL:{id:"external",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOWNLOAD:{id:"download",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},BUTTON:{id:"button",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOUBLE_CLICK:{id:"dblclick",isBeginning:!0,attributed:!0,type:"interaction",event:"dblclick",method:"eventListener"},OPEN:{id:"open",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},COMPLETE:{id:"complete",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},FOCUS:{id:"focus",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},ERROR:{id:"error",isSingular:!0,attributed:!1,type:"event"},ADD:{id:"add",isSingular:!0,attributed:!1,type:"event"},REMOVE:{id:"remove",isSingular:!0,attributed:!1,type:"event"},DISPLAY:{id:"display",isSingular:!0,attributed:!1,type:"event"},CHANGE:{id:"change",isSingular:!0,attributed:!0,type:"event",event:"change",method:"change"},PROGRESS:{id:"progress",isBeginning:!0,attributed:!0,type:"event"},SHARE:{id:"share",isBeginning:!0,attributed:!1,type:"interaction"},PRESS:{id:"press",isBeginning:!0,attributed:!1,type:"interaction"},RELEASE:{id:"release",isBeginning:!0,attributed:!1,type:"interaction"},DISMISS:{id:"dismiss",isBeginning:!0,attributed:!1,type:"interaction"},UPLOAD:{id:"upload",isBeginning:!0,attributed:!1,type:"interaction"},CHECK:{id:"check",isBeginning:!0,attributed:!1,type:"interaction"},UNCHECK:{id:"uncheck",isBeginning:!0,attributed:!1,type:"interaction"},SELECT:{id:"select",isBeginning:!0,attributed:!1,type:"interaction"},SUBSCRIBE:{id:"subscribe",isBeginning:!0,attributed:!1,type:"interaction"},DISCLOSE:{id:"disclose",isBeginning:!0,attributed:!1,type:"event"},SEARCH:{id:"search",isBeginning:!0,attributed:!1,type:"event"},SHOW:{id:"show",isSingular:!0,attributed:!1,type:"event"},HIDE:{id:"hide",isSingular:!0,attributed:!1,type:"event"},AUTOPLAY:{id:"autoplay",isBeginning:!0,attributed:!1,type:"event"},PLAY:{id:"play",isBeginning:!0,attributed:!1,type:"interaction"},PAUSE:{id:"pause",isBeginning:!0,attributed:!1,type:"interaction"},END:{id:"end",isBeginning:!0,attributed:!1,type:"event"}},Ot="undefined",Ct="heading",Et="component",Tt="content",At=Node.DOCUMENT_POSITION_PRECEDING|Node.DOCUMENT_POSITION_CONTAINED_BY,Lt=function(t){this._label=t.textContent.trim(),this._level=Number(t.tagName.charAt(1))},It={level:{configurable:!0},label:{configurable:!0}};It.level.get=function(){return this._level},It.label.get=function(){return this._label},Object.defineProperties(Lt.prototype,It);var jt=function(t,e,n){this._type=Ot,this._node=t,this._target=e,this._level=n,this._label="",this._component="",this._isValid=!0,this.analyse()},Pt={type:{configurable:!0},level:{configurable:!0},label:{configurable:!0},component:{configurable:!0},node:{configurable:!0},target:{configurable:!0},isValid:{configurable:!0}};jt.prototype._parseHeadings=function(){var t=this,e=Array.from({length:this._level},(function(t,e){return"h"+(e+1)})).join(",");this._headings=Array.from(this._node.querySelectorAll(e)).filter((function(e){return e===t._node||e.parentNode===t._node||null!=e.parentNode&&e.parentNode.parentNode===t._node})).filter((function(e){return(t._target.compareDocumentPosition(e)&At)>0})).map((function(t){return new Lt(t)})).reverse()},jt.prototype._getComponent=function(){if("function"!=typeof t)return!1;var e=t(this._node);if(!e)return!1;var n=Object.values(e).filter((function(t){return t.isActionee})).sort((function(t,e){return e.priority-t.priority}))[0];if(!n)return!1;this._type=Et,this._isValid=n.validate(this._target);var i=Array.from({length:6},(function(t,e){return"h"+(e+1)})).join(","),r=Array.from(this._node.querySelectorAll(i)).map((function(t){return new Lt(t)})).sort((function(t,e){return t.level-e.level}))[0];r&&r.level<=this._level&&(this._level=r.level-1);var o=this._node.closest(i);if(o){var s=new Lt(o);s.level<=this._level&&(this._level=s.level-1)}return!isNaN(n.level)&&n.level1&&e.unshift(n.label),t._level=n.level-1)})),!!e.length&&(this._type=Ct,this._label=e.join(" › "),!0)},jt.prototype.analyse=function(){if(this._parseHeadings(),!this._getComponent()&&!this._getHeading()&&this._node===this._target){var t=this._node.textContent.trim();t&&(this._type=Tt,this._label=t)}},Pt.type.get=function(){return this._type},Pt.level.get=function(){return this._level},Pt.label.get=function(){return this._label},Pt.component.get=function(){return this._component},Pt.node.get=function(){return this._node},Pt.target.get=function(){return this._target},Pt.isValid.get=function(){return this._isValid},Object.defineProperties(jt.prototype,Pt);var St=function(t){this._node=t,this._process()},wt={localComponent:{configurable:!0},globalComponent:{configurable:!0},label:{configurable:!0},title:{configurable:!0},component:{configurable:!0}};St.prototype._process=function(){var t=new jt(this._node,this._node,6);this._level=t.level,this._members=[t];for(var e=this._node.parentNode;document.documentElement.contains(e)&&e!==document.documentElement&&this._level>0;){var n=new jt(e,this._node,this._level);switch(!0){case n.type===Ot:case!n.isValid:case n.label===this._members[0].label&&n.type===Ct&&this._members[0].type===Et:break;case n.label===this._members[0].label&&n.type===Et&&this._members[0].type===Ct:this._members.splice(0,1,n);break;default:this._members.unshift(n),n.level0}))},i.isMuted.get=function(){return this._actionElement?this._actionElement.isMuted:this._isMuted},i.isMuted.set=function(t){this._isMuted=t,this._actionElement&&(this._actionElement.isMuted=t)},i.priority.get=function(){return this._priority},n.prototype.setPriority=function(t){this._priority=t},i.isInteractive.get=function(){return"A"===this.node.tagName||"BUTTON"===this.node.tagName},n.prototype.detectInteractionType=function(t){t||(t=this.node);var e=t.tagName,n=t.getAttribute("href"),i=t.hasAttribute("download"),r=t.hostname;switch(!0){case"A"!==e:this._type=Nt.CLICK;break;case i:this._type=Nt.DOWNLOAD,this.value=n;break;case r===location.hostname:this._type=Nt.INTERNAL,this.value=n;break;case r.length>0:this._type=Nt.EXTERNAL,this.value=n;break;default:this._type=Nt.CLICK}},n.prototype.setClickType=function(){this._type=Nt.CLICK},n.prototype.listenActionClick=function(t){t?(this._clickTarget=t,this._clickTarget.addEventListener("click",this._handlingClick,{capture:!0})):this.listenClick({capture:!0})},n.prototype.handleClick=function(){this.act()},n.prototype.setImpressionType=function(){this._type=Nt.IMPRESSION},n.prototype.rewind=function(){this._actionElement&&this._actionElement.rewind()},n.prototype.act=function(t){void 0===t&&(t={}),void 0!==this._actionElement&&(this._data.component_value=this.value,this._actionElement.act(Object.assign(this._data,t)))},n.prototype.getFirstText=function(t){if(t||(t=this.node),t.childNodes&&t.childNodes.length>0){for(var e=0;e50?t.substring(0,50).trim()+"[...]":t},n.prototype.getInteractionLabel=function(){var t=this.getAttribute("title");if(t)return this.cropText(t);var e=this.getFirstText();if(e)return e;var n=this.node.querySelector("img");if(n){var i=n.getAttribute("alt");if(i)return this.cropText(i)}return null},n.prototype.getHeadingLabel=function(t){var e=this;void 0===t&&(t=6);var n=Array.from({length:t},(function(t,e){return"h"+(e+1)})).join(","),i=Array.from(this.querySelectorAll(n)).filter((function(t){return(e.node.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)>0}));if(i.length)for(var r=0,o=i;r "+yn+", "+bn+" > *:not("+bn+"):not("+yn+") > "+yn+", "+bn+" > *:not("+bn+"):not("+yn+") > *:not("+bn+"):not("+yn+") > "+yn,COLLAPSE_LEGACY:bn+" "+yn,TITLE:bn+"__title"},vn="transcription",Nn=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={button:{configurable:!0},label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranscriptionButtonActionee"},e.prototype.init=function(){this.isMuted=!0},n.button.get=function(){return this.element.getInstance("CollapseButton")},n.label.get=function(){var t=this.getFirstText();return t||"bouton transcription"},n.component.get=function(){return vn},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ft),On=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranscriptionActionee"},e.prototype.init=function(){this.setDiscloseType(),this.wrapper=this.node.closest(mn.ACCORDION),this.detectLevel(this.wrapper),this.register('[aria-controls="'+this.id+'"]',Nn),this.listenDisclose()},n.label.get=function(){if(this.wrapper){var t=this.wrapper.querySelector(mn.TITLE);if(t){var e=this.getFirstText(t);if(e)return e}}var n=this.element.getInstance("Collapse");if(n){var i=n.buttons.filter((function(t){return t.isPrimary}))[0];if(i){var r=this.getFirstText(i);if(r)return r}}return"transcription"},n.component.get=function(){return vn},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ft),Cn=t.internals.ns.selector("translate"),En=t.internals.ns.selector("collapse"),Tn={BUTTON:Cn+"__btn",COLLAPSE:Cn+" > "+En+", "+Cn+" > *:not("+Cn+"):not("+En+") > "+En+", "+Cn+" > *:not("+Cn+"):not("+En+") > *:not("+Cn+"):not("+En+") > "+En,COLLAPSE_LEGACY:Cn+" "+En},An="translate",Ln=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranslateActionee"},n.label.get=function(){var t=this.node.querySelector(Tn.BUTTON);if(t){var e=t.getAttribute("title");if(e)return e}return"sélecteur de langue"},n.component.get=function(){return An},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ft),In=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={button:{configurable:!0},label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranslateButtonActionee"},e.prototype.init=function(){this.isMuted=!0},n.button.get=function(){return this.element.getInstance("CollapseButton")},n.label.get=function(){var t=this.getInteractionLabel();return t||"bouton sélecteur de langue"},n.component.get=function(){return An},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ft),jn={UPLOAD:t.internals.ns.selector("upload")},Pn=function(e){function n(){e.call(this,1)}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var i={label:{configurable:!0},component:{configurable:!0}},r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"UploadActionee"},n.prototype.init=function(){this.setChangeType(),this._label=this.node.parentNode.querySelector(t.internals.ns.selector("label")),this.listenChange()},n.prototype.setChangeValue=function(t){if(t.target&&t.target.files){var e=Array.from(t.target.files).map((function(t){return/(?:\.([^.]+))?$/.exec(t.name)[1]})).filter((function(t,e,n){return n.indexOf(t)===e})).join(" - ");e&&(this.value=e)}},i.label.get=function(){if(this._label){var t=this.getFirstText(this._label);if(t)return t}return"ajout de fichier"},i.component.get=function(){return"upload"},Object.defineProperties(n.prototype,i),Object.defineProperties(n,r),n}(Ft),Sn=function(){t.accordion&&t.internals.register(t.accordion.AccordionSelector.COLLAPSE,Kt),t.breadcrumb&&(t.internals.register(Wt.COLLAPSE,Yt),t.internals.register(Wt.LINK,zt)),t.internals.register(Vt.ALERT,Gt),t.internals.register(Zt.BUTTON,Xt),t.internals.register($t.CALLOUT,Qt),t.internals.register(ie.CONNECT,oe),t.internals.register(ie.LINK,se),t.internals.register(ae.BANNER,ce),t.internals.register(Jt.CARD,te),t.internals.register(Ae.INPUT,Le),t.internals.register(ee.INPUT,ne),t.internals.register(le.LINK,ue),t.internals.register(fe.FOOTER,ge),t.internals.register(fe.FOOTER_LINKS,de),t.internals.register(pe.FOLLOW,he),t.header&&(t.internals.register(t.header.HeaderSelector.HEADER,_e),t.internals.register(t.header.HeaderSelector.MODALS,ye),t.internals.register(me.TOOLS_BUTTON,ve),t.internals.register(me.MENU_BUTTON,Ne)),t.internals.register(Oe.HIGHLIGHT,Ce),t.internals.register(Ee.LINK,Te),t.modal&&t.internals.register(t.modal.ModalSelector.MODAL,je),t.navigation&&(t.internals.register(t.navigation.NavigationSelector.NAVIGATION,Pe),t.internals.register(Se.LINK,we),t.internals.register(t.navigation.NavigationSelector.COLLAPSE,ke)),t.internals.register(xe.NOTICE,Re),t.internals.register(xe.LINK,Me),t.internals.register(Be.PAGINATION,Fe),t.internals.register(Be.LINK,Ue),t.internals.register(qe.QUOTE,He),t.internals.register(Ke.INPUT,Ge),t.internals.register(We.SEARCH_BAR,Ye),t.internals.register(ze.SELECT,Ze),t.internals.register(Xe.SHARE,$e),t.sidemenu&&(t.internals.register(Qe.SIDEMENU,Je),t.internals.register(Qe.LINK,tn),t.internals.register(t.sidemenu.SidemenuSelector.COLLAPSE,en)),t.internals.register(nn.SUMMARY,rn),t.internals.register(nn.LINK,on),t.internals.register(nn.ITEM,sn),t.tab&&t.internals.register(t.tab.TabSelector.PANEL,cn),t.internals.register(ln.TABLE,un),t.internals.register(pn.TAG,hn),t.internals.register(fn.TILE,gn),t.internals.register(dn.INPUT,_n),t.internals.register(mn.COLLAPSE,On),t.internals.register(Tn.COLLAPSE,Ln),t.internals.register(Tn.BUTTON,In),t.internals.register(jn.UPLOAD,Pn)},wn=function(){Object.values(Nt).filter((function(t){return t.attributed})).forEach((function(e){return t.internals.register(t.internals.ns.attr.selector("analytics-"+e.id),Mt)})),Sn()};t.analytics.readiness.then((function(){return wn()}),(function(){}))}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t=window.dsfr,e="a4e35ba2a938ba9d007689dbf3f46acbb9807869",n={MANUAL:"manual",LOAD:"load",FULL:"full",HASH:"hash"},i="_EA_",r=i+"disabled",o=i+"toggle",s=function(){this._configure()},a={isDisabled:{configurable:!0}};s.prototype._configure=function(){var t=this;window[r]=function(){return t.isDisabled},window[o]=this.toggle.bind(this)},a.isDisabled.get=function(){return localStorage.getItem(i)},s.prototype.toggle=function(){this.isDisabled?this.enable():this.disable()},s.prototype.enable=function(){localStorage.getItem(i)&&localStorage.removeItem(i)},s.prototype.disable=function(){localStorage.setItem(i,"1")},Object.defineProperties(s.prototype,a);var c=new s,l="EA_push",u=function(t){var e=this;this._domain=t,this._isLoaded=!1,this._promise=new Promise((function(t,n){e._resolve=t,e._reject=n}))},p={id:{configurable:!0},store:{configurable:!0}};p.id.get=function(){return this._id},p.store.get=function(){return this._store},u.prototype.configure=function(){return this.init(),this._promise},u.prototype.init=function(){for(var e=this,n=5381,i=this._domain.length-1;i>0;i--)n=33*n^this._domain.charCodeAt(i);n>>>=0,this._id="_EA_"+n,this._store=[],this._store.eah=this._domain,window[this._id]=this._store,window[l]||(window[l]=function(){for(var t=[],n=arguments.length;n--;)t[n]=arguments[n];return e.store.push(t)}),c.isDisabled?(t.inspector.warn("User opted out, eulerian is disabled"),this._reject("User opted out, eulerian is disabled")):this.load()},u.prototype.load=function(){var t=new Date/1e7|0,e=t%26,n=String.fromCharCode(97+e,122-e,65+e)+t%1e3;this._script=document.createElement("script"),this._script.ea=this.id,this._script.async=!0,this._script.addEventListener("load",this.loaded.bind(this)),this._script.addEventListener("error",this.error.bind(this)),this._script.src="//"+this._domain+"/"+n+".js?2";var i=document.getElementsByTagName("script")[0];i.parentNode.insertBefore(this._script,i)},u.prototype.error=function(){t.inspector.error("unable to load Eulerian script file. the domain declared in your configuration must match the domain provided by the Eulerian interface (tag creation)"),this._reject("eulerian script loading error")},u.prototype.loaded=function(){this._isLoaded||(this._isLoaded=!0,this._resolve())},Object.defineProperties(u.prototype,p);var h=-1,f=0,g=1,d=2,_=3,b=function(t){var e=this;this._config=t,this._state=h,this._promise=new Promise((function(t,n){e._resolve=t,e._reject=n}))};b.prototype.configure=function(){if(this._state>=g)return this._promise;this._state===h&&(t.inspector.info("analytics configures tarteaucitron"),this._state=f);var e=window.tarteaucitron;if(e&&e.services){this._state=g;var n={key:"eulerian",type:"analytic",name:"Eulerian Analytics",needConsent:!0,cookies:["etuix"],uri:"https://eulerian.com/vie-privee",js:this.init.bind(this),fallback:function(){e.services.eulerian.js()}};return e.services.eulerian=n,e.job||(e.job=[]),e.job.push("eulerian"),this._promise}window.requestAnimationFrame(this.configure.bind(this))},b.prototype.init=function(){if(!(this._state>=d)){this._state=d,window.__eaGenericCmpApi=this.integrate.bind(this);var t=this.update.bind(this);window.addEventListener("tac.close_alert",t),window.addEventListener("tac.close_panel",t)}},b.prototype.integrate=function(e){this._state>=_||(this._state=_,this._cmpApi=e,t.inspector.info("analytics has integrated tarteaucitron"),this._resolve(),this.update())},b.prototype.update=function(){this._state<_||this._cmpApi("tac",window.tarteaucitron,1)};var y=function(t){if(this._config=t,t&&"tarteaucitron"===t.id)this.integrateTarteAuCitron()};y.prototype.integrateTarteAuCitron=function(){return this._tac=new b(this._config),this._tac.configure()},y.prototype.optin=function(){};var m=function(e,n){"function"==typeof window.EA_push?(t.inspector.info("analytics",e,n),window.EA_push(e,n)):t.inspector.warn("Analytics datalayer not sent, Eulerian API isn't yet avalaible")},v={COLLECTOR:"collector",ACTION:"action",ACTION_PARAMETER:"actionparam"},N=function(){this._renderables=[],this._rendering=this.render.bind(this),requestAnimationFrame(this._rendering)};N.prototype.add=function(t){-1===this._renderables.indexOf(t)&&this._renderables.push(t)},N.prototype.remove=function(t){var e=this._renderables.indexOf(t);e>-1&&this._renderables.splice(e,1)},N.prototype.render=function(){this._renderables.forEach((function(t){return t.render()})),requestAnimationFrame(this._rendering)};var O=new N,C={ENFORCE:"enforce",PREVENT:"prevent",NONE:"none"},E=function(){this._startingActions=[],this._endingActions=[],this._handlingVisibilityChange=this._handleVisibilityChange.bind(this),this._handlingEnd=this._handleEnd.bind(this),this._isStarted=!1,this._isListening=!1,this.reset()};E.prototype.setCollector=function(t){this._collector=t},E.prototype.reset=function(t){void 0===t&&(t=!1),this._type=v.ACTION,t||(this._startingActions.length=0),this._endingActions.length=0,this._count=0,this._delay=-1,this._isRequested=!1,this._unlisten()},E.prototype.start=function(){this._isStarted||(this._isStarted=!0,O.add(this))},E.prototype.collect=function(){this._type=v.COLLECTOR,this._request()},E.prototype.regulate=function(e,n){if(!e)return!1;if(n.some((function(t){return t.test(e)})))return t.inspector.log("action exists in queue",e),!1;switch(e.regulation){case C.PREVENT:return!1;case C.ENFORCE:return!0;default:return!0===this._collector.isActionEnabled}},E.prototype.appendStartingAction=function(t,e){if(this.regulate(t,this._startingActions)){var n=new T(t,e);this._startingActions.push(n),this._request()}},E.prototype.appendEndingAction=function(t,e){if(this.regulate(t,this._endingActions)){var n=new T(t,e);this._endingActions.push(n),this._request()}},E.prototype._request=function(){this._listen(),this._isRequested=!0,this._delay=4},E.prototype._listen=function(){this._isListening||(this._isListening=!0,document.addEventListener("visibilitychange",this._handlingVisibilityChange),document.addEventListener("unload",this._handlingEnd),document.addEventListener("beforeunload",this._handlingEnd),document.addEventListener("pagehide",this._handlingEnd))},E.prototype._unlisten=function(){this._isListening&&(this._isListening=!1,document.removeEventListener("visibilitychange",this._handlingVisibilityChange),document.removeEventListener("unload",this._handlingEnd),document.removeEventListener("beforeunload",this._handlingEnd),document.removeEventListener("pagehide",this._handlingEnd))},E.prototype._handleVisibilityChange=function(t){"hidden"===document.visibilityState&&this.send()},E.prototype._handleEnd=function(){this.send()},E.prototype.render=function(){if(!(this._delay<=-1))switch(this._delay--,this._count++,!0){case this._count>20:case 0===this._delay:this.send()}},E.prototype.send=function(t){if(void 0===t&&(t=!1),this._isRequested){var e=[];t||e.push.apply(e,this._startingActions.map((function(t){return t.start()})).filter((function(t){return t.length>0}))),e.push.apply(e,this._endingActions.map((function(t){return t.end()})).filter((function(t){return t.length>0})));for(var n=e.length/80+1|0,i=[],r=0;r0){var a=i.splice(0,1)[0];a.length>0&&s.push.apply(s,a)}s.flat(),s.length>0&&m(v.COLLECTOR,s)}if(i.length>0)for(var c=0;c0&&m(v.ACTION,l)}this.reset(t)}};var T=function(t,e){this._action=t,this._data=e};T.prototype.test=function(t){return this._action===t},T.prototype.start=function(){return this._action.start(this._data)},T.prototype.end=function(){return this._action.end(this._data)};var A=new E,L=function(){},I={debugger:{configurable:!0},isActive:{configurable:!0}};I.debugger.get=function(){return window._oEa},I.isActive.get=function(){return!!this.debugger&&"1"===this.debugger._dbg},I.isActive.set=function(t){this.debugger&&this.isActive!==t&&this.debugger.debug(t?1:0)},Object.defineProperties(L.prototype,I);var j=new L,P={CONNECTED:{id:"connected",value:"connecté",isConnected:!0,isDefault:!0},ANONYMOUS:{id:"anonymous",value:"anonyme",isConnected:!1,isDefault:!0},GUEST:{id:"guest",value:"invité",isConnected:!1}},S={INDIVIDUAL:{id:"individual",value:"part"},PROFESSIONNAL:{id:"professionnal",value:"pro"}},w={"0x0022":""","0x0024":"$","0x0026":"&","0x0027":"'","0x002a":"*","0x002c":",","0x003c":"<","0x003e":">","0x003f":"?","0x005c":"\","0x005e":"^","0x0060":"`","0x007c":"|","0x007e":"~"},k=function(t){return t?t=(t=(t=[].concat(t).map((function(t){return w[function(t){var e=t.charCodeAt(0).toString(16);return"0x0000".slice(0,-e.length)+e}(t)]||t})).join("")).replace(/\s+/g," ").replace(/\s/g,"_")).toLowerCase():t},x=function(e,n,i){switch(void 0===i&&(i=!0),!0){case"number"==typeof e:return""+e;case"string"==typeof e:return e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a String"),null},D=function(e,n,i){switch(void 0===i&&(i=!0),!0){case!isNaN(e):return e;case"string"==typeof e&&!isNaN(Number(e)):return Number(e);case void 0===e&&i:case null===e&&i:return-1}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a Number"),null},R=function(e,n){switch(!0){case"boolean"==typeof e:return e;case"string"==typeof e&&"true"===e.toLowerCase():case"1"===e:case 1===e:return!0;case"string"==typeof e&&"false"===e.toLowerCase():case"0"===e:case 0===e:return!1;case void 0===e:case null===e:return e}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a Boolean"),null},M=function(e,n,i){switch(void 0===i&&(i=!0),!0){case"string"==typeof e&&/^[A-Za-z]{2}$|^[A-Za-z]{2}[-_]/.test(e):return e.split(/[-_]/)[0].toLowerCase();case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting language as a String following ISO 639-1 format"),null},B=function(e,n,i){switch(void 0===i&&(i=!0),!0){case"string"==typeof e:return/^FR-[A-Z0-9]{2,3}$/.test(e)||t.inspector.warn("value '"+e+"' set at analytics."+n+" with wrong format. Geographic location should be a String following ISO 3166-2:FR format"),e;case void 0===e&&i:case null===e&&i:return""}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting geographic location as a String following ISO 3166-2:FR format"),null},F=function(t){return t.toISOString().split("T")[0]},U=function(t){this._config=t||{}},q={uid:{configurable:!0},email:{configurable:!0},isNew:{configurable:!0},status:{configurable:!0},profile:{configurable:!0},language:{configurable:!0},type:{configurable:!0},layer:{configurable:!0}};U.prototype.reset=function(t){void 0===t&&(t=!1),this._isConnected=!1,this.status=P.ANONYMOUS,!t&&this._config.connect?this.connect(this._config.connect.uid,this._config.connect.email,this._config.connect.isNew):(this._uid=void 0,this._email=void 0,this._isNew=!1),this.profile=t?void 0:this._config.profile,this.language=t?void 0:this._config.language,this.type=t?void 0:this._config.type},U.prototype.connect=function(e,n,i){void 0===i&&(i=!1),this._uid=x(e,"user.uid"),/^[a-zA-Z0-9!#$%&'*+/=?^_`{|}~.-]{2,}@[a-zA-Z0-9-]{2,}\.[a-zA-Z]{2,}$/.test(n)&&t.inspector.warn("Please check analytics.user.email is properly encrypted "),this._email=x(n,"user.email"),this._isNew=R(i),this._isConnected=!0,this.status=P.CONNECTED},q.uid.get=function(){return this._uid},q.email.get=function(){return this._email},q.isNew.get=function(){return this._isNew},q.status.set=function(t){var e=this,n=Object.values(P).filter((function(t){return t.isConnected===e._isConnected}));this._status=n.filter((function(e){return e.id===t||e.value===t}))[0]||n.filter((function(t){return t.isDefault}))[0]},q.status.get=function(){return this._status.id},q.profile.set=function(t){var e=x(t,"user.profile");null!==e&&(this._profile=e)},q.profile.get=function(){return this._profile.id},q.language.set=function(t){var e=M(t,"user.language");null!==e&&(this._language=e)},q.language.get=function(){return this._language||navigator.language},q.type.set=function(t){this._type=Object.values(S).filter((function(e){return e.id===t||e.value===t}))[0]},q.type.get=function(){return this._type.id},q.layer.get=function(){var t=[];return this.uid&&t.push("uid",k(this.uid)),this.email&&t.push("email",k(this.email)),this.isNew&&t.push("newcustomer","1"),this.language&&t.push("user_language",this.language),t.push("user_login_status",this._status.value),this._profile&&t.push("profile",this._profile),this._type&&t.push("user_type",this._type.value),t},Object.defineProperties(U.prototype,q),U.Status=P,U.Type=S;var H={DEVELOPMENT:{id:"development",value:"dev"},STAGE:{id:"stage",value:"stage"},PRODUCTION:{id:"production",value:"prod"}},K=function(t){this._config=t||{}},V={environment:{configurable:!0},entity:{configurable:!0},language:{configurable:!0},target:{configurable:!0},type:{configurable:!0},region:{configurable:!0},department:{configurable:!0},version:{configurable:!0},api:{configurable:!0},layer:{configurable:!0}};K.prototype.reset=function(e){void 0===e&&(e=!1),this.environment=e?H.DEVELOPMENT.id:this._config.environment,this.entity=e?void 0:this._config.entity,this.language=e?void 0:this._config.language,this.target=e?void 0:this._config.target,this.type=e?void 0:this._config.type,this.region=e?void 0:this._config.region,this.department=e?void 0:this._config.department,this.version=e?void 0:this._config.version,this._api=t.version},V.environment.set=function(t){switch(t){case H.PRODUCTION.id:case H.PRODUCTION.value:this._environment=H.PRODUCTION;break;case H.STAGE.id:case H.STAGE.value:this._environment=H.STAGE;break;case H.DEVELOPMENT.id:case H.DEVELOPMENT.value:default:this._environment=H.DEVELOPMENT}},V.environment.get=function(){return this._environment?this._environment.id:H.DEVELOPMENT.id},V.entity.set=function(t){var e=x(t,"site.entity");null!==e&&(this._entity=e)},V.entity.get=function(){return this._entity},V.language.set=function(t){var e=M(t,"site.language");null!==e&&(this._language=e)},V.language.get=function(){return this._language||document.documentElement.lang},V.target.set=function(t){var e=x(t,"site.target");null!==e&&(this._target=e)},V.target.get=function(){return this._target},V.type.set=function(t){var e=x(t,"site.type");null!==e&&(this._type=e)},V.type.get=function(){return this._type},V.region.set=function(t){var e=B(t,"site.region");null!==e&&(this._region=e)},V.region.get=function(){return this._region},V.department.set=function(t){var e=B(t,"site.department");null!==e&&(this._department=e)},V.department.get=function(){return this._department},V.version.set=function(t){var e=x(t,"site.version");null!==e&&(this._version=e)},V.version.get=function(){return this._version},V.api.get=function(){return this._api},V.layer.get=function(){var e=[];return e.push("site_environment",this._environment.value),this.entity?e.push("site_entity",k(this.entity)):t.inspector.warn("entity is required in analytics.site"),this.language&&e.push("site_language",this.language),this.target&&e.push("site_target",k(this.target)),this.type&&e.push("site_type",k(this.type)),this.region&&e.push("site_region",this.region),this.department&&e.push("site_department",this.department),this.version&&e.push("site_version",this.version),this.api&&e.push("api_version",this.api),e},Object.defineProperties(K.prototype,V),K.Environment=H;var G={accordion:t.internals.ns.selector("accordion"),alert:t.internals.ns.selector("alert"),badge:t.internals.ns.selector("badge"),breadcrumb:t.internals.ns.selector("breadcrumb"),button:t.internals.ns.selector("btn"),callout:t.internals.ns.selector("callout"),card:t.internals.ns.selector("card"),checkbox:t.internals.ns.selector("checkbox-group"),connect:t.internals.ns.selector("connect"),consent:t.internals.ns.selector("consent-banner"),content:t.internals.ns.selector("content-media"),download:t.internals.ns.selector("download"),follow:t.internals.ns.selector("follow"),footer:t.internals.ns.selector("footer"),header:t.internals.ns.selector("header"),highlight:t.internals.ns.selector("highlight"),input:t.internals.ns.selector("input-group"),link:t.internals.ns.selector("link"),modal:t.internals.ns.selector("modal"),navigation:t.internals.ns.selector("nav"),notice:t.internals.ns.selector("notice"),pagination:t.internals.ns.selector("pagination"),quote:t.internals.ns.selector("quote"),radio:t.internals.ns.selector("radio-group"),search:t.internals.ns.selector("search-bar"),select:t.internals.ns.selector("select"),share:t.internals.ns.selector("share"),sidemenu:t.internals.ns.selector("sidemenu"),stepper:t.internals.ns.selector("stepper"),summary:t.internals.ns.selector("summary"),tab:t.internals.ns.selector("tabs"),table:t.internals.ns.selector("table"),tag:t.internals.ns.selector("tag"),tile:t.internals.ns.selector("tile"),toggle:t.internals.ns.selector("toggle"),tooltip:t.internals.ns.selector("tooltip"),transcription:t.internals.ns.selector("transcription"),translate:t.internals.ns.selector("translate"),upload:t.internals.ns.selector("upload-group")},W="collectable",Y="collecting",z="collected",Z=function(t){this._config=t||{},this._state=W},X={isCollecting:{configurable:!0},path:{configurable:!0},referrer:{configurable:!0},title:{configurable:!0},id:{configurable:!0},author:{configurable:!0},date:{configurable:!0},tags:{configurable:!0},name:{configurable:!0},labels:{configurable:!0},categories:{configurable:!0},isError:{configurable:!0},template:{configurable:!0},segment:{configurable:!0},group:{configurable:!0},subtemplate:{configurable:!0},theme:{configurable:!0},subtheme:{configurable:!0},related:{configurable:!0},depth:{configurable:!0},current:{configurable:!0},total:{configurable:!0},filters:{configurable:!0},layer:{configurable:!0}};Z.prototype.reset=function(t){void 0===t&&(t=!1),this.path=t?"":this._config.path,this.referrer=t?"":this._config.referrer,this.title=t?"":this._config.title,this.name=t?"":this._config.name,this.id=t?"":this._config.id,this.author=t?"":this._config.author,this.date=t?"":this._config.date,this._labels=t||!this._config.labels?["","","","",""]:this._config.labels,this._labels.length=5,this._tags=t||!this._config.tags?[]:this._config.tags,this._categories=t||!this._config.categories?["","",""]:this._config.categories,this.isError=!t&&this._config.isError,this.template=t?"":this._config.template,this.group=t?"":this._config.group,this.segment=t?"":this._config.segment,this.subtemplate=t?"":this._config.subtemplate,this.theme=t?"":this._config.theme,this.subtheme=t?"":this._config.subtheme,this.related=t?"":this._config.related,this.depth=t||isNaN(this._config.depth)?0:this._config.depth,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this._filters=t||!this._config.filters?[]:this._config.filters},Z.prototype.collecting=function(){return this._state!==W?(t.inspector.warn("current path '"+this.path+"' was already collected"),!1):(this._state=Y,!0)},X.isCollecting.get=function(){return this._state===Y},X.path.set=function(t){var e=x(t,"page.path");null!==e&&(this._path=e,this._state=W)},X.path.get=function(){return this._path||""+document.location.pathname+document.location.search},X.referrer.set=function(t){var e=x(t,"page.referrer");null!==e&&(this._referrer=e)},X.referrer.get=function(){return this._referrer},X.title.set=function(t){var e=x(t,"page.title");null!==e&&(this._title=e)},X.title.get=function(){return this._title||document.title},X.id.set=function(t){var e=x(t,"page.id");null!==e&&(this._id=e)},X.id.get=function(){return this._id},X.author.set=function(t){var e=x(t,"page.author");null!==e&&(this._author=e)},X.author.get=function(){return this._author},X.date.set=function(e){var n=function(e,n,i){switch(void 0===i&&(i=!0),!0){case e instanceof Date:return F(e);case"string"==typeof e:var r=new Date(e);if("Invalid Date"!==r.toString())return F(r);break;case void 0===e&&i:case null===e&&i:return null}return t.inspector.warn("unexpected value '"+e+"' set at analytics."+n+". Expecting a Date"),null}(e,"page.date");null!==n&&(this._date=n)},X.date.get=function(){return this._date},X.tags.get=function(){return this._tags},X.name.set=function(t){var e=x(t,"page.name");null!==e&&(this._name=e)},X.name.get=function(){return this._name||this.title},X.labels.get=function(){return this._labels},X.categories.get=function(){return this._categories},X.isError.set=function(t){var e=R(t,"page.isError");null!==e&&(this._isError=e)},X.isError.get=function(){return this._isError},X.template.set=function(t){var e=x(t,"page.template");null!==e&&(this._template=e)},X.template.get=function(){return this._template||"autres"},X.segment.set=function(t){var e=x(t,"page.segment");null!==e&&(this._segment=e)},X.segment.get=function(){return this._segment||this.template},X.group.set=function(t){var e=x(t,"page.group");null!==e&&(this._group=e)},X.group.get=function(){return this._group||this.template},X.subtemplate.set=function(t){var e=x(t,"page.subtemplate");null!==e&&(this._subtemplate=e)},X.subtemplate.get=function(){return this._subtemplate},X.theme.set=function(t){var e=x(t,"page.theme");null!==e&&(this._theme=e)},X.theme.get=function(){return this._theme},X.subtheme.set=function(t){var e=x(t,"page.subtheme");null!==e&&(this._subtheme=e)},X.subtheme.get=function(){return this._subtheme},X.related.set=function(t){var e=x(t,"page.related");null!==e&&(this._related=e)},X.related.get=function(){return this._related},X.depth.set=function(t){var e=D(t,"page.depth");null!==e&&(this._depth=e)},X.depth.get=function(){return this._depth},X.current.set=function(t){var e=D(t,"page.current");null!==e&&(this._current=e)},X.current.get=function(){return this._current},X.total.set=function(t){var e=D(t,"page.total");null!==e&&(this._total=e)},X.total.get=function(){return this._total},X.filters.get=function(){return this._filters},X.layer.get=function(){this._state=z;var t=[];this.path&&t.push("path",k(this.path)),this.referrer&&t.push("referrer",k(this.referrer)),this.title&&t.push("page_title",k(this.title)),this.name&&t.push("page_name",k(this.name)),this.id&&t.push("page_id",k(this.id)),this.author&&t.push("page_author",k(this.author)),this.date&&t.push("page_date",k(this.date));var e=Object.keys(G).map((function(t){return null!==document.querySelector(G[t])?t:null})).filter((function(t){return null!==t})).join(",");e&&t.push("page_components",e);var n=this._labels.slice(0,5);n.length=5,n.some((function(t){return t}))&&t.push("pagelabel",n.map((function(t){return"string"==typeof t?k(t):""})).join(","));var i=this._tags;if(i.some((function(t){return t}))&&t.push("pagetag",i.map((function(t){return"string"==typeof t?k(t):""})).join(",")),this._categories.forEach((function(e,n){e&&t.push("page_category"+(n+1),e)})),this._isError&&t.push("error","1"),t.push("page_template",k(this.template)),t.push("pagegroup",k(this.group)),t.push("site-segment",k(this.segment)),this.subtemplate&&t.push("page_subtemplate",k(this.subtemplate)),this.theme&&t.push("page_theme",k(this.theme)),this.subtheme&&t.push("page_subtheme",k(this.subtheme)),this.related&&t.push("page_related",k(this.related)),isNaN(this.depth)||t.push("page_depth",this.depth),!isNaN(this.current)&&this.current>-1){var r=""+this.current;!isNaN(this.total)&&this.total>-1&&(r+="/"+this.total),t.push("page_pagination",r)}if(this.filters.length&&this.filters.some((function(t){return t}))){var o=this.filters.map((function(t){return"string"==typeof t?k(t):""}));t.push("page_filters",o.join(","))}return t},Object.defineProperties(Z.prototype,X);var $={STANDARD:{id:"standard",value:"standard",isDefault:!0},AUTOCOMPLETE:{id:"autocomplete",value:"autocompletion"}},Q=function(t){this._config=t||{}},J={engine:{configurable:!0},results:{configurable:!0},terms:{configurable:!0},category:{configurable:!0},theme:{configurable:!0},type:{configurable:!0},method:{configurable:!0},layer:{configurable:!0}};Q.prototype.reset=function(t){void 0===t&&(t=!1),this.engine=t?void 0:this._config.engine,this.results=t||isNaN(this._config.results)?-1:this._config.results,this.terms=t?void 0:this._config.terms,this.category=t?void 0:this._config.category,this.theme=t?void 0:this._config.theme,this.type=t?void 0:this._config.type,this.method=t?void 0:this._config.method},J.engine.set=function(t){var e=x(t,"search.engine");null!==e&&(this._engine=e)},J.engine.get=function(){return this._engine},J.results.set=function(t){var e=D(t,"search.results");null!==e&&(this._results=e)},J.results.get=function(){return this._results},J.terms.set=function(t){var e=x(t,"search.terms");null!==e&&(this._terms=e)},J.terms.get=function(){return this._terms},J.category.set=function(t){var e=x(t,"search.category");null!==e&&(this._category=e)},J.category.get=function(){return this._category},J.theme.set=function(t){var e=x(t,"search.theme");null!==e&&(this._theme=e)},J.theme.get=function(){return this._theme},J.type.set=function(t){var e=x(t,"search.type");null!==e&&(this._type=e),this._type=t},J.type.get=function(){return this._type},J.method.set=function(t){var e=Object.values($);this._method=e.filter((function(e){return e.id===t||e.value===t}))[0]||e.filter((function(t){return t.isDefault}))[0]},J.method.get=function(){return this._method},J.layer.get=function(){var t=[];return this.engine&&t.push("isearchengine",k(this.engine)),this.results>-1&&t.push("isearchresults",this.results),this.terms&&t.push("isearchkey","search_terms","isearchdata",k(this.terms)),this.category&&t.push("isearchkey","search_category","isearchdata",k(this.category)),this.theme&&t.push("isearchkey","search_theme","isearchdata",k(this.theme)),this.type&&t.push("isearchkey","search_type","isearchdata",k(this.type)),this._method&&t.length&&t.push("isearchkey","search_method","isearchdata",this._method.value),t},Object.defineProperties(Q.prototype,J),Q.Method=$;var tt=function(t){this._config=t||{}},et={id:{configurable:!0},type:{configurable:!0},name:{configurable:!0},step:{configurable:!0},current:{configurable:!0},total:{configurable:!0},objective:{configurable:!0},error:{configurable:!0},layer:{configurable:!0}};tt.prototype.reset=function(t){void 0===t&&(t=!1),this.id=t?void 0:this._config.id,this.type=t?void 0:this._config.type,this.name=t?void 0:this._config.name,this.step=t?void 0:this._config.step,this.current=t||isNaN(this._config.current)?-1:this._config.current,this.total=t||isNaN(this._config.total)?-1:this._config.total,this.objective=t?void 0:this._config.objective,this.error=t?void 0:this._config.error},et.id.set=function(t){var e=x(t,"funnel.id");null!==e&&(this._id=e)},et.id.get=function(){return this._id},et.type.set=function(t){var e=x(t,"funnel.type");null!==e&&(this._type=e)},et.type.get=function(){return this._type},et.name.set=function(t){var e=x(t,"funnel.name");null!==e&&(this._name=e)},et.name.get=function(){return this._name},et.step.set=function(t){var e=x(t,"funnel.step");null!==e&&(this._step=e)},et.step.get=function(){return this._step},et.current.set=function(t){var e=D(t,"funnel.current");null!==e&&(this._current=e)},et.current.get=function(){return this._current},et.total.set=function(t){var e=D(t,"funnel.total");null!==e&&(this._total=e)},et.total.get=function(){return this._total},et.objective.set=function(t){var e=x(t,"funnel.objective");null!==e&&(this._objective=e),this._objective=t},et.objective.get=function(){return this._objective},et.error.set=function(t){var e=x(t,"funnel.error");null!==e&&(this._error=e),this._error=t},et.error.get=function(){return this._error},et.layer.get=function(){var t=[];return this.id&&t.push("funnel_id",k(this.id)),this.type&&t.push("funnel_type",k(this.type)),this.name&&t.push("funnel_name",k(this.name)),this.step&&t.push("funnel_step_name",k(this.step)),!isNaN(this.current)&&this.current>-1&&t.push("funnel_step_number",this.current),!isNaN(this.total)&&this.total>-1&&t.push("funnel_step_max",this.total),this.objective&&t.push("funnel_objective",k(this.objective)),this.error&&t.push("funnel_error",k(this.error)),t},Object.defineProperties(tt.prototype,et);var nt={IN:"in",OUT:"out",NONE:"none"},it={id:"unstarted",value:-1},rt={id:"started",value:1},ot={id:"singular",value:2},st={id:"ended",value:3},at=function(t){return Object.entries(t).map((function(t){var e=t[0],n=t[1];return["actionpname",k(e),"actionpvalue",k(n)]})).flat()},ct=function(t){this._isMuted=!1,this._regulation=C.NONE,this._name=t,this._status=it,this._labels=[],this._parameters={},this._sentData=[]},lt={isMuted:{configurable:!0},regulation:{configurable:!0},isSingular:{configurable:!0},status:{configurable:!0},name:{configurable:!0},labels:{configurable:!0},reference:{configurable:!0},parameters:{configurable:!0},mode:{configurable:!0},_base:{configurable:!0}};lt.isMuted.get=function(){return this._isMuted},lt.isMuted.set=function(t){this._isMuted=t},lt.regulation.get=function(){return this._regulation},lt.regulation.set=function(t){Object.values(C).includes(t)&&(this._regulation=t)},lt.isSingular.get=function(){return this._status===ot},lt.status.get=function(){return this._status},lt.name.get=function(){return this._name},lt.labels.get=function(){return this._labels},lt.reference.get=function(){return this._reference},lt.parameters.get=function(){return this._parameters},lt.mode.get=function(){return this._mode},ct.prototype.singularize=function(){this._status=ot},ct.prototype.rewind=function(){this._sentData=[],this._status=it},ct.prototype.addParameter=function(t,e){this._parameters[t]=e},ct.prototype.removeParameter=function(t){delete this._parameters[t]},lt.reference.set=function(t){var e=x(t,"action "+this._name);null!==e&&(this._reference=e)},lt._base.get=function(){return["actionname",this._name]},ct.prototype._getLayer=function(t){if(void 0===t&&(t={}),this._isMuted)return[];this._mode!==nt.IN&&this._sentData.push(JSON.stringify(t));var e=this._base;switch(this._mode){case nt.IN:case nt.OUT:e.push("actionmode",this._mode)}var n=this._labels.slice(0,5);return n.length=5,n.some((function(t){return t}))&&e.push("actionlabel",n.map((function(t){return"string"==typeof t?k(t):""})).join(",")),this._reference&&e.push("actionref",this._reference),e.push.apply(e,at(Object.assign(this._parameters,t||{}))),e},ct.prototype.start=function(e){switch(this._status){case it:this._mode=nt.IN,this._status=rt;break;case ot:this._mode=nt.NONE,this._status=st;break;default:return t.inspector.error("unexpected start on action "+this._name+" with status "+this._status.id),[]}return this._getLayer(e)},ct.prototype.end=function(t){switch(this._status){case rt:this._mode=nt.OUT,this._status=st;break;case it:case ot:this._mode=nt.NONE,this._status=st;break;case st:if(this._sentData.includes(JSON.stringify(t)))return[];this._mode=nt.NONE,this._status=st;break;default:return[]}return this._getLayer(t)},ct.prototype.resume=function(e){if(this._isMuted)return[];if(this._status.value>=st.value)return t.inspector.error("unexpected resuming on action "+this._name+" with status "+this._status.id),[];var n=this._base;return e&&n.push.apply(n,at(e)),n},Object.defineProperties(ct.prototype,lt);var ut=function(){this._actions=[]};ut.prototype.rewind=function(){this._actions.forEach((function(t){return t.rewind()}))},ut.prototype.getAction=function(t){var e=this._actions.filter((function(e){return e.name===t}))[0];return e||(e=new ct(t),this._actions.push(e)),e},ut.prototype.hasAction=function(t){return this._actions.some((function(e){return e.name===t}))},ut.prototype.remove=function(t){var e=this._actions.indexOf(t);return-1!==e&&(this._actions.splice(e,1),!0)},ut.ActionMode=nt;var pt=new ut;ut.instance=pt;var ht=function(t,e){void 0===e&&(e=!1),this._onRouteChange=t,this._isListeningHash=e,this._update(),O.add(this)},ft={path:{configurable:!0},hasTitle:{configurable:!0},title:{configurable:!0},referrer:{configurable:!0}};ht.prototype._update=function(){this._pathname=document.location.pathname,this._search=document.location.search,this._hash=document.location.hash,this._path=""+this._pathname+this._search,this._isListeningHash&&(this._path+=this._hash),this._hasTitle=this._title===document.title,this._title=document.title},ht.prototype.render=function(){this._pathname===document.location.pathname&&this._search===document.location.search||this.change(),this._isListeningHash&&this._hash!==document.location.hash&&this.change()},ht.prototype.change=function(){this._referrer=this._path,this._update(),this._onRouteChange()},ft.path.get=function(){return this._path},ft.hasTitle.get=function(){return this._hasTitle},ft.title.get=function(){return this._title},ft.referrer.get=function(){return this._referrer},Object.defineProperties(ht.prototype,ft);var gt={COLLECT:t.internals.ns.event("collect")},dt={REWIND:t.internals.ns.emission("analytics","rewind")},_t={ENABLE:{entries:["enable","enabled","true","yes","1",!0],value:!0,output:!0},DISABLE:{entries:["disable","disabled","false","no","0",!1],value:!1,output:!1},REDUCE:{entries:["reduce"],value:"reduce",output:!1}},bt=function(e){switch(e.collection){case n.MANUAL:case n.LOAD:case n.FULL:case n.HASH:this._collection=e.collection;break;default:if(e.mode&&"manual"===e.mode)this._collection=e.collection;switch(!0){case"manual"===e.mode:this._collection=n.MANUAL;break;case t.mode===t.Modes.ANGULAR:case t.mode===t.Modes.REACT:case t.mode===t.Modes.VUE:this._collection=n.FULL;break;default:this._collection=n.LOAD}}this.isActionEnabled=e.isActionEnabled,this._user=new U(e.user),this._site=new K(e.site),this._page=new Z(e.page),this._search=new Q(e.search),this._funnel=new tt(e.funnel),this._delay=-1,A.setCollector(this)},yt={page:{configurable:!0},user:{configurable:!0},site:{configurable:!0},search:{configurable:!0},funnel:{configurable:!0},collection:{configurable:!0},isCollecting:{configurable:!0},isActionEnabled:{configurable:!0},isActionReduced:{configurable:!0},layer:{configurable:!0}};yt.page.get=function(){return this._page},yt.user.get=function(){return this._user},yt.site.get=function(){return this._site},yt.search.get=function(){return this._search},yt.funnel.get=function(){return this._funnel},bt.prototype.start=function(){var t=this._handleRouteChange.bind(this);switch(this._collection){case n.LOAD:this.collect();break;case n.FULL:this.collect(),this._location=new ht(t);break;case n.HASH:this.collect(),this._location=new ht(t,!0)}},bt.prototype._handleRouteChange=function(){A.send(!0),this._delay=6,O.add(this)},bt.prototype.render=function(){this._delay--,this._delay<0&&(O.remove(this),this._routeChanged())},bt.prototype._routeChanged=function(){pt.rewind(),this._page.referrer=this._location.referrer,this._location.hasTitle&&(this._page.title=this._location.title),this._page.path=this._location.path;var e=new CustomEvent(gt.COLLECT);document.documentElement.dispatchEvent(e),this.collect(),t.internals&&t.internals.stage&&t.internals.stage.root&&t.internals.stage.root.descend(dt.REWIND)},bt.prototype.reset=function(t){void 0===t&&(t=!1),this._user.reset(t),this._site.reset(t),this._page.reset(t),this._search.reset(t),this._funnel.reset(t)},bt.prototype.collect=function(){this.page.collecting()&&A.collect()},yt.collection.get=function(){return this._collection},yt.isCollecting.get=function(){return this._page.isCollecting},yt.isActionEnabled.get=function(){return this._isActionEnabled.value},yt.isActionEnabled.set=function(t){this._isActionEnabled=Object.values(_t).find((function(e){return e.entries.includes(t)}))||_t.DISABLE},yt.isActionReduced.get=function(){return this._isActionEnabled===_t.REDUCE},yt.layer.get=function(){return this._user.layer.concat(this._site.layer,this._page.layer,this._search.layer,this._funnel.layer)},Object.defineProperties(bt.prototype,yt);var mt=function(){var t=this;this._isReady=!1,this._readiness=new Promise((function(e,n){t._isReady?e():(t._resolve=e,t._reject=n)})),this._configure()},vt={isReady:{configurable:!0},readiness:{configurable:!0},page:{configurable:!0},user:{configurable:!0},site:{configurable:!0},search:{configurable:!0},funnel:{configurable:!0},cmp:{configurable:!0},opt:{configurable:!0},collection:{configurable:!0},isActionEnabled:{configurable:!0},isDebugging:{configurable:!0}};mt.prototype._configure=function(){switch(!0){case void 0!==window[e]:this._config=window[e].configuration.analytics,window[e].promise.then(this._build.bind(this),(function(){}));break;case void 0!==t.internals&&void 0!==t.internals.configuration&&void 0!==t.internals.configuration.analytics&&void 0!==t.internals.configuration.analytics.domain:this._config=t.internals.configuration.analytics,this._build();break;case void 0!==t.analytics&&void 0!==t.analytics.domain:this._config=t.analytics,this._build();break;default:t.inspector.warn("analytics configuration is incorrect or missing (required : domain)")}},mt.prototype._build=function(){var t=this;this._init=new u(this._config.domain),this._init.configure().then(this._start.bind(this),(function(e){return t._reject(e)}))},vt.isReady.get=function(){return this._isReady},vt.readiness.get=function(){return this._readiness},mt.prototype._start=function(){this._isReady||(this._cmp=new y(this._config.cmp),this._collector=new bt(this._config),this._collector.reset(),this._isReady=!0,this._resolve(),A.start(),this._collector.start())},vt.page.get=function(){return this._collector.page},vt.user.get=function(){return this._collector.user},vt.site.get=function(){return this._collector._site},vt.search.get=function(){return this._collector.search},vt.funnel.get=function(){return this._collector.funnel},vt.cmp.get=function(){return this._cmp},vt.opt.get=function(){return c},vt.collection.get=function(){return this._collector.collection},vt.isActionEnabled.get=function(){return this._collector.isActionEnabled},vt.isActionEnabled.set=function(t){this._collector.isActionEnabled=t},vt.isDebugging.get=function(){return j.isActive},vt.isDebugging.set=function(t){j.isActive=t},mt.prototype.push=function(t,e){m(t,e)},mt.prototype.reset=function(t){this._collector.reset()},mt.prototype.collect=function(){this._collector.collect()},Object.defineProperties(mt.prototype,vt);var Nt=new mt;Nt.Collection=n,Nt.PushType=v;t.analytics=function(t){for(var e=[],n=arguments.length-1;n-- >0;)e[n]=arguments[n+1];return e.forEach((function(e){var n=Object.keys(e).reduce((function(t,n){return t[n]=Object.getOwnPropertyDescriptor(e,n),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var i=Object.getOwnPropertyDescriptor(e,t);i.enumerable&&(n[t]=i)})),Object.defineProperties(t,n)})),t}(Nt,{});var Ot={IMPRESSION:{id:"impression",isSingular:!0,isBeginning:!0,attributed:!1,type:"impression"},CLICK:{id:"click",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},INTERNAL:{id:"internal",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},EXTERNAL:{id:"external",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOWNLOAD:{id:"download",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},BUTTON:{id:"button",isBeginning:!0,attributed:!0,type:"interaction",event:"click",method:"eventListener"},DOUBLE_CLICK:{id:"dblclick",isBeginning:!0,attributed:!0,type:"interaction",event:"dblclick",method:"eventListener"},OPEN:{id:"open",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},COMPLETE:{id:"complete",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},FOCUS:{id:"focus",isSingular:!0,attributed:!1,type:"event",method:"eventListener"},ERROR:{id:"error",isSingular:!0,attributed:!1,type:"event"},ADD:{id:"add",isSingular:!0,attributed:!1,type:"event"},REMOVE:{id:"remove",isSingular:!0,attributed:!1,type:"event"},DISPLAY:{id:"display",isSingular:!0,attributed:!1,type:"event"},CHANGE:{id:"change",isSingular:!0,attributed:!0,type:"event",event:"change",method:"change"},PROGRESS:{id:"progress",isBeginning:!0,attributed:!0,type:"event"},SHARE:{id:"share",isBeginning:!0,attributed:!1,type:"interaction"},PRESS:{id:"press",isBeginning:!0,attributed:!1,type:"interaction"},RELEASE:{id:"release",isBeginning:!0,attributed:!1,type:"interaction"},DISMISS:{id:"dismiss",isBeginning:!0,attributed:!1,type:"interaction"},UPLOAD:{id:"upload",isBeginning:!0,attributed:!1,type:"interaction"},CHECK:{id:"check",isBeginning:!0,attributed:!1,type:"interaction"},UNCHECK:{id:"uncheck",isBeginning:!0,attributed:!1,type:"interaction"},SELECT:{id:"select",isBeginning:!0,attributed:!1,type:"interaction"},SUBSCRIBE:{id:"subscribe",isBeginning:!0,attributed:!1,type:"interaction"},DISCLOSE:{id:"disclose",isBeginning:!0,attributed:!1,type:"event"},SEARCH:{id:"search",isBeginning:!0,attributed:!1,type:"event"},SHOW:{id:"show",isSingular:!0,attributed:!1,type:"event"},HIDE:{id:"hide",isSingular:!0,attributed:!1,type:"event"},AUTOPLAY:{id:"autoplay",isBeginning:!0,attributed:!1,type:"event"},PLAY:{id:"play",isBeginning:!0,attributed:!1,type:"interaction"},PAUSE:{id:"pause",isBeginning:!0,attributed:!1,type:"interaction"},END:{id:"end",isBeginning:!0,attributed:!1,type:"event"}},Ct="undefined",Et="heading",Tt="component",At="content",Lt=Node.DOCUMENT_POSITION_PRECEDING|Node.DOCUMENT_POSITION_CONTAINED_BY,It=function(t){this._label=t.textContent.trim(),this._level=Number(t.tagName.charAt(1))},jt={level:{configurable:!0},label:{configurable:!0}};jt.level.get=function(){return this._level},jt.label.get=function(){return this._label},Object.defineProperties(It.prototype,jt);var Pt=function(t,e,n){this._type=Ct,this._node=t,this._target=e,this._level=n,this._label="",this._component="",this._isValid=!0,this.analyse()},St={type:{configurable:!0},level:{configurable:!0},label:{configurable:!0},component:{configurable:!0},node:{configurable:!0},target:{configurable:!0},isValid:{configurable:!0}};Pt.prototype._parseHeadings=function(){var t=this,e=Array.from({length:this._level},(function(t,e){return"h"+(e+1)})).join(",");this._headings=Array.from(this._node.querySelectorAll(e)).filter((function(e){return e===t._node||e.parentNode===t._node||null!=e.parentNode&&e.parentNode.parentNode===t._node})).filter((function(e){return(t._target.compareDocumentPosition(e)&Lt)>0})).map((function(t){return new It(t)})).reverse()},Pt.prototype._getComponent=function(){if("function"!=typeof t)return!1;var e=t(this._node);if(!e)return!1;var n=Object.values(e).filter((function(t){return t.isActionee})).sort((function(t,e){return e.priority-t.priority}))[0];if(!n)return!1;this._type=Tt,this._isValid=n.validate(this._target);var i=Array.from({length:6},(function(t,e){return"h"+(e+1)})).join(","),r=Array.from(this._node.querySelectorAll(i)).map((function(t){return new It(t)})).sort((function(t,e){return t.level-e.level}))[0];r&&r.level<=this._level&&(this._level=r.level-1);var o=this._node.closest(i);if(o){var s=new It(o);s.level<=this._level&&(this._level=s.level-1)}return!isNaN(n.level)&&n.level1&&e.unshift(n.label),t._level=n.level-1)})),!!e.length&&(this._type=Et,this._label=e.join(" › "),!0)},Pt.prototype.analyse=function(){if(this._parseHeadings(),!this._getComponent()&&!this._getHeading()&&this._node===this._target){var t=this._node.textContent.trim();t&&(this._type=At,this._label=t)}},St.type.get=function(){return this._type},St.level.get=function(){return this._level},St.label.get=function(){return this._label},St.component.get=function(){return this._component},St.node.get=function(){return this._node},St.target.get=function(){return this._target},St.isValid.get=function(){return this._isValid},Object.defineProperties(Pt.prototype,St);var wt=function(t){this._node=t,this._process()},kt={localComponent:{configurable:!0},globalComponent:{configurable:!0},label:{configurable:!0},title:{configurable:!0},component:{configurable:!0}};wt.prototype._process=function(){var t=new Pt(this._node,this._node,6);this._level=t.level,this._members=[t];for(var e=this._node.parentNode;document.documentElement.contains(e)&&e!==document.documentElement&&this._level>0;){var n=new Pt(e,this._node,this._level);switch(!0){case n.type===Ct:case!n.isValid:case n.label===this._members[0].label&&n.type===Et&&this._members[0].type===Tt:break;case n.label===this._members[0].label&&n.type===Tt&&this._members[0].type===Et:this._members.splice(0,1,n);break;default:this._members.unshift(n),n.level0}))},i.isMuted.get=function(){return this._actionElement?this._actionElement.isMuted:this._isMuted},i.isMuted.set=function(t){this._isMuted=t,this._actionElement&&(this._actionElement.isMuted=t)},i.priority.get=function(){return this._priority},n.prototype.setPriority=function(t){this._priority=t},i.isInteractive.get=function(){return"A"===this.node.tagName||"BUTTON"===this.node.tagName},n.prototype.detectInteractionType=function(t){t||(t=this.node);var e=t.tagName,n=t.getAttribute("href"),i=t.hasAttribute("download"),r=t.hostname;switch(!0){case"A"!==e:this._type=Ot.CLICK;break;case i:this._type=Ot.DOWNLOAD,this.value=n;break;case r===location.hostname:this._type=Ot.INTERNAL,this.value=n;break;case r.length>0:this._type=Ot.EXTERNAL,this.value=n;break;default:this._type=Ot.CLICK}},n.prototype.setClickType=function(){this._type=Ot.CLICK},n.prototype.listenActionClick=function(t){t?(this._clickTarget=t,this._clickTarget.addEventListener("click",this._handlingClick,{capture:!0})):this.listenClick({capture:!0})},n.prototype.handleClick=function(){this.act()},n.prototype.setImpressionType=function(){this._type=Ot.IMPRESSION},n.prototype.rewind=function(){this._actionElement&&this._actionElement.rewind()},n.prototype.act=function(t){void 0===t&&(t={}),void 0!==this._actionElement&&(this._data.component_value=this.value,this._actionElement.act(Object.assign(this._data,t)))},n.prototype.getFirstText=function(t){if(t||(t=this.node),t.childNodes&&t.childNodes.length>0){for(var e=0;e50?t.substring(0,50).trim()+"[...]":t},n.prototype.getInteractionLabel=function(){var t=this.getAttribute("title");if(t)return this.cropText(t);var e=this.getFirstText();if(e)return e;var n=this.node.querySelector("img");if(n){var i=n.getAttribute("alt");if(i)return this.cropText(i)}return null},n.prototype.getHeadingLabel=function(t){var e=this;void 0===t&&(t=6);var n=Array.from({length:t},(function(t,e){return"h"+(e+1)})).join(","),i=Array.from(this.querySelectorAll(n)).filter((function(t){return(e.node.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)>0}));if(i.length)for(var r=0,o=i;r "+vn+", "+mn+" > *:not("+mn+"):not("+vn+") > "+vn+", "+mn+" > *:not("+mn+"):not("+vn+") > *:not("+mn+"):not("+vn+") > "+vn,COLLAPSE_LEGACY:mn+" "+vn,TITLE:mn+"__title"},On="transcription",Cn=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={button:{configurable:!0},label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranscriptionButtonActionee"},e.prototype.init=function(){this.isMuted=!0},n.button.get=function(){return this.element.getInstance("CollapseButton")},n.label.get=function(){var t=this.getFirstText();return t||"bouton transcription"},n.component.get=function(){return On},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ut),En=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranscriptionActionee"},e.prototype.init=function(){this.setDiscloseType(),this.wrapper=this.node.closest(Nn.ACCORDION),this.detectLevel(this.wrapper),this.register('[aria-controls="'+this.id+'"]',Cn),this.listenDisclose()},n.label.get=function(){if(this.wrapper){var t=this.wrapper.querySelector(Nn.TITLE);if(t){var e=this.getFirstText(t);if(e)return e}}var n=this.element.getInstance("Collapse");if(n){var i=n.buttons.filter((function(t){return t.isPrimary}))[0];if(i){var r=this.getFirstText(i);if(r)return r}}return"transcription"},n.component.get=function(){return On},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ut),Tn=t.internals.ns.selector("translate"),An=t.internals.ns.selector("collapse"),Ln={BUTTON:Tn+"__btn",COLLAPSE:Tn+" > "+An+", "+Tn+" > *:not("+Tn+"):not("+An+") > "+An+", "+Tn+" > *:not("+Tn+"):not("+An+") > *:not("+Tn+"):not("+An+") > "+An,COLLAPSE_LEGACY:Tn+" "+An},In="translate",jn=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranslateActionee"},n.label.get=function(){var t=this.node.querySelector(Ln.BUTTON);if(t){var e=t.getAttribute("title");if(e)return e}return"sélecteur de langue"},n.component.get=function(){return In},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ut),Pn=function(t){function e(){t.call(this,2)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={button:{configurable:!0},label:{configurable:!0},component:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TranslateButtonActionee"},e.prototype.init=function(){this.isMuted=!0},n.button.get=function(){return this.element.getInstance("CollapseButton")},n.label.get=function(){var t=this.getInteractionLabel();return t||"bouton sélecteur de langue"},n.component.get=function(){return In},Object.defineProperties(e.prototype,n),Object.defineProperties(e,i),e}(Ut),Sn={UPLOAD:t.internals.ns.selector("upload")},wn=function(e){function n(){e.call(this,1)}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var i={label:{configurable:!0},component:{configurable:!0}},r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"UploadActionee"},n.prototype.init=function(){this.setChangeType(),this._label=this.node.parentNode.querySelector(t.internals.ns.selector("label")),this.listenChange()},n.prototype.setChangeValue=function(t){if(t.target&&t.target.files){var e=Array.from(t.target.files).map((function(t){return/(?:\.([^.]+))?$/.exec(t.name)[1]})).filter((function(t,e,n){return n.indexOf(t)===e})).join(" - ");e&&(this.value=e)}},i.label.get=function(){if(this._label){var t=this.getFirstText(this._label);if(t)return t}return"ajout de fichier"},i.component.get=function(){return"upload"},Object.defineProperties(n.prototype,i),Object.defineProperties(n,r),n}(Ut),kn=function(e){void 0===e&&(e=""),function(e){void 0===e&&(e=""),t.accordion&&t.internals.register(Gt(t.accordion.AccordionSelector.COLLAPSE,e),Vt)}(e),function(e){void 0===e&&(e=""),t.breadcrumb&&(t.internals.register(Gt(zt.COLLAPSE,e),Zt),t.internals.register(Gt(zt.LINK,e),Xt))}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Wt.ALERT,e),Yt)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt($t.BUTTON,e),Qt)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Jt.CALLOUT,e),te)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(oe.CONNECT,e),ae),t.internals.register(Gt(oe.LINK,e),ce)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(le.BANNER,e),ue)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(ee.CARD,e),ne)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ie.INPUT,e),je)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(ie.INPUT,e),re)}(e),function(e){t.internals.register(Gt(pe.LINK,e),he)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(de.FOOTER,e),_e),t.internals.register(Gt(de.FOOTER_LINKS,e),be)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(fe.FOLLOW,e),ge)}(e),function(e){void 0===e&&(e=""),t.header&&(t.internals.register(Gt(t.header.HeaderSelector.HEADER,e),ye),t.internals.register(Gt(t.header.HeaderSelector.MODALS,e),ve),t.internals.register(Gt(Ne.TOOLS_BUTTON,e),Oe),t.internals.register(Gt(Ne.MENU_BUTTON,e),Ce))}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ee.HIGHLIGHT,e),Te)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ae.LINK,e),Le)}(e),function(e){void 0===e&&(e=""),t.modal&&t.internals.register(Gt(t.modal.ModalSelector.MODAL,e),Se)}(e),function(e){void 0===e&&(e=""),t.navigation&&(t.internals.register(Gt(t.navigation.NavigationSelector.NAVIGATION,e),we),t.internals.register(Gt(ke.LINK,e),xe),t.internals.register(Gt(t.navigation.NavigationSelector.COLLAPSE,e),De))}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Re.NOTICE,e),Be),t.internals.register(Gt(Re.LINK,e),Fe)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ue.PAGINATION,e),qe),t.internals.register(Gt(Ue.LINK,e),He)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ke.QUOTE,e),Ve)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ge.INPUT,e),Ye)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(ze.SEARCH_BAR,e),Ze)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Xe.SELECT,e),$e)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Qe.SHARE,e),Je)}(e),function(e){t.sidemenu&&(t.internals.register(Gt(tn.SIDEMENU,e),en),t.internals.register(Gt(tn.LINK,e),nn),t.internals.register(Gt(t.sidemenu.SidemenuSelector.COLLAPSE,e),rn))}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(on.SUMMARY,e),sn),t.internals.register(Gt(on.LINK,e),an),t.internals.register(Gt(on.ITEM,e),cn)}(e),function(e){void 0===e&&(e=""),t.tab&&t.internals.register(Gt(t.tab.TabSelector.PANEL,e),un)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(pn.TABLE,e),hn)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(fn.TAG,e),gn)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(dn.TILE,e),_n)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(bn.INPUT,e),yn)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Nn.COLLAPSE,e),En)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Ln.COLLAPSE,e),jn),t.internals.register(Gt(Ln.BUTTON,e),Pn)}(e),function(e){void 0===e&&(e=""),t.internals.register(Gt(Sn.UPLOAD,e),wn)}(e)},xn=function(e){Object.values(Ot).filter((function(t){return t.attributed})).forEach((function(e){return t.internals.register(t.internals.ns.attr.selector("analytics-"+e.id),Bt)})),kn(e)};t.analytics.readiness.then((function(){var e=t.analytics._collector.isActionReduced?t.internals.ns.attr.selector("analytics-action"):"";xn(e)}),(function(){}))}(); diff --git a/dsfr/static/dsfr/dist/component/accordion/accordion.legacy.min.css b/dsfr/static/dsfr/dist/component/accordion/accordion.legacy.min.css index 20844a52f..3fd5f8b4a 100644 --- a/dsfr/static/dsfr/dist/component/accordion/accordion.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/accordion/accordion.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/accordion/accordion.main.min.css b/dsfr/static/dsfr/dist/component/accordion/accordion.main.min.css index 869060220..20d984e81 100644 --- a/dsfr/static/dsfr/dist/component/accordion/accordion.main.min.css +++ b/dsfr/static/dsfr/dist/component/accordion/accordion.main.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-accordion .fr-collapse{margin:0 -.25rem;padding-left:1rem;padding-right:1rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/accordion/accordion.min.css b/dsfr/static/dsfr/dist/component/accordion/accordion.min.css index dd696ad49..c47f66513 100644 --- a/dsfr/static/dsfr/dist/component/accordion/accordion.min.css +++ b/dsfr/static/dsfr/dist/component/accordion/accordion.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/accordion/accordion.module.min.js b/dsfr/static/dsfr/dist/component/accordion/accordion.module.min.js index c10004b41..5df18cadf 100644 --- a/dsfr/static/dsfr/dist/component/accordion/accordion.module.min.js +++ b/dsfr/static/dsfr/dist/component/accordion/accordion.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const n=window.dsfr,o=n.internals.ns.selector("accordion"),e=n.internals.ns.selector("collapse"),c={GROUP:n.internals.ns.selector("accordions-group"),ACCORDION:o,COLLAPSE:`${o} > ${e}, ${o} > *:not(${o}):not(${e}) > ${e}, ${o} > *:not(${o}):not(${e}) > *:not(${o}):not(${e}) > ${e}`,COLLAPSE_LEGACY:`${o} ${e}`,BUTTON:`${o}__btn`};class r extends n.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((n=>n.getInstance("CollapseButton"))).filter((n=>null!==n&&n.hasClass(c.BUTTON)))[0]}}class s extends n.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(o){const e=o.node.matches(n.internals.legacy.isLegacy?c.COLLAPSE_LEGACY:c.COLLAPSE);return super.validate(o)&&e}}n.accordion={Accordion:r,AccordionSelector:c,AccordionsGroup:s},n.internals.register(n.accordion.AccordionSelector.GROUP,n.accordion.AccordionsGroup),n.internals.register(n.accordion.AccordionSelector.ACCORDION,n.accordion.Accordion); diff --git a/dsfr/static/dsfr/dist/component/accordion/accordion.nomodule.min.js b/dsfr/static/dsfr/dist/component/accordion/accordion.nomodule.min.js index a29e9d10b..1cb65fbcf 100644 --- a/dsfr/static/dsfr/dist/component/accordion/accordion.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/accordion/accordion.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var o=window.dsfr,t=o.internals.ns.selector("accordion"),e=o.internals.ns.selector("collapse"),n={GROUP:o.internals.ns.selector("accordions-group"),ACCORDION:t,COLLAPSE:t+" > "+e+", "+t+" > *:not("+t+"):not("+e+") > "+e+", "+t+" > *:not("+t+"):not("+e+") > *:not("+t+"):not("+e+") > "+e,COLLAPSE_LEGACY:t+" "+e,BUTTON:t+"__btn"},r=function(o){function t(){o.apply(this,arguments)}o&&(t.__proto__=o),t.prototype=Object.create(o&&o.prototype),t.prototype.constructor=t;var e={collapsePrimary:{configurable:!0}},r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Accordion"},e.collapsePrimary.get=function(){return this.element.children.map((function(o){return o.getInstance("CollapseButton")})).filter((function(o){return null!==o&&o.hasClass(n.BUTTON)}))[0]},Object.defineProperties(t.prototype,e),Object.defineProperties(t,r),t}(o.core.Instance),c=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var r=e.node.matches(o.internals.legacy.isLegacy?n.COLLAPSE_LEGACY:n.COLLAPSE);return t.prototype.validate.call(this,e)&&r},Object.defineProperties(e,r),e}(o.core.CollapsesGroup);o.accordion={Accordion:r,AccordionSelector:n,AccordionsGroup:c},o.internals.register(o.accordion.AccordionSelector.GROUP,o.accordion.AccordionsGroup),o.internals.register(o.accordion.AccordionSelector.ACCORDION,o.accordion.Accordion)}(); diff --git a/dsfr/static/dsfr/dist/component/accordion/accordion.print.min.css b/dsfr/static/dsfr/dist/component/accordion/accordion.print.min.css index 8e4f3900d..1e80caee9 100644 --- a/dsfr/static/dsfr/dist/component/accordion/accordion.print.min.css +++ b/dsfr/static/dsfr/dist/component/accordion/accordion.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/alert/alert.legacy.min.css b/dsfr/static/dsfr/dist/component/alert/alert.legacy.min.css index 993ae57e5..933a7edce 100644 --- a/dsfr/static/dsfr/dist/component/alert/alert.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/alert/alert.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/alert/alert.main.min.css b/dsfr/static/dsfr/dist/component/alert/alert.main.min.css index 365755d87..44f70e00a 100644 --- a/dsfr/static/dsfr/dist/component/alert/alert.main.min.css +++ b/dsfr/static/dsfr/dist/component/alert/alert.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/alert/alert.min.css b/dsfr/static/dsfr/dist/component/alert/alert.min.css index e5a91311c..e437eb049 100644 --- a/dsfr/static/dsfr/dist/component/alert/alert.min.css +++ b/dsfr/static/dsfr/dist/component/alert/alert.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/alert/alert.print.min.css b/dsfr/static/dsfr/dist/component/alert/alert.print.min.css index 00180fb7f..d5b51d262 100644 --- a/dsfr/static/dsfr/dist/component/alert/alert.print.min.css +++ b/dsfr/static/dsfr/dist/component/alert/alert.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/badge/badge.legacy.min.css b/dsfr/static/dsfr/dist/component/badge/badge.legacy.min.css index 9c66693ae..db69142d9 100644 --- a/dsfr/static/dsfr/dist/component/badge/badge.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/badge/badge.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/badge/badge.main.min.css b/dsfr/static/dsfr/dist/component/badge/badge.main.min.css index 5b6c9feda..99b2614a5 100644 --- a/dsfr/static/dsfr/dist/component/badge/badge.main.min.css +++ b/dsfr/static/dsfr/dist/component/badge/badge.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/badge/badge.min.css b/dsfr/static/dsfr/dist/component/badge/badge.min.css index ef24ee9bc..37aea1119 100644 --- a/dsfr/static/dsfr/dist/component/badge/badge.min.css +++ b/dsfr/static/dsfr/dist/component/badge/badge.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ diff --git a/dsfr/static/dsfr/dist/component/badge/badge.print.min.css b/dsfr/static/dsfr/dist/component/badge/badge.print.min.css index 42f7a32b6..227c89589 100644 --- a/dsfr/static/dsfr/dist/component/badge/badge.print.min.css +++ b/dsfr/static/dsfr/dist/component/badge/badge.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.legacy.min.css b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.legacy.min.css index e08888770..d9a312df7 100644 --- a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.main.min.css b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.main.min.css index d9b54e899..20635b379 100644 --- a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.main.min.css +++ b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-breadcrumb{margin-bottom:2.5rem}.fr-breadcrumb__button{display:none}.fr-breadcrumb .fr-collapse{margin-left:0;margin-right:0;max-height:none;overflow:visible;padding-left:0;padding-right:0;transform:none;visibility:inherit}.fr-breadcrumb .fr-collapse:before{content:none}.fr-breadcrumb__list{transform:none}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.min.css b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.min.css index fba1542b4..984cadcc7 100644 --- a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.min.css +++ b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.module.min.js b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.module.min.js index 218d3e6b7..49b5d21ca 100644 --- a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.module.min.js +++ b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const s=window.dsfr,e={BREADCRUMB:s.internals.ns.selector("breadcrumb"),BUTTON:s.internals.ns.selector("breadcrumb__button")};class t extends s.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const s=this;return Object.assign(super.proxy,{focus:s.focus.bind(s),disclose:s.collapse.disclose.bind(s.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(s.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(s.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(s.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(s.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const s=this.links[0];s&&(s.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const s=this.links[0];s&&document.activeElement!==s&&this._focus()}get collapsePrimary(){return this.element.children.map((s=>s.getInstance("CollapseButton"))).filter((s=>null!==s&&s.hasClass(e.BUTTON)))[0]}}s.breadcrumb={BreadcrumbSelector:e,Breadcrumb:t},s.internals.register(s.breadcrumb.BreadcrumbSelector.BREADCRUMB,s.breadcrumb.Breadcrumb); diff --git a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.nomodule.min.js b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.nomodule.min.js index da29c2f34..5273ad2ed 100644 --- a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var t=window.dsfr,e={BREADCRUMB:t.internals.ns.selector("breadcrumb"),BUTTON:t.internals.ns.selector("breadcrumb__button")},s=function(s){function n(){s.call(this),this.count=0,this.focusing=this.focus.bind(this)}s&&(n.__proto__=s),n.prototype=Object.create(s&&s.prototype),n.prototype.constructor=n;var o={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Breadcrumb"},n.prototype.init=function(){this.getCollapse(),this.isResizing=!0},o.proxy.get=function(){var t=this;return Object.assign.call(this,s.prototype.proxy,{focus:t.focus.bind(t),disclose:t.collapse.disclose.bind(t.collapse)})},n.prototype.getCollapse=function(){var e=this.collapse;e?e.listen(t.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(t.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},n.prototype.resize=function(){var e=this.collapse,s=this.links;e&&s.length&&(this.isBreakpoint(t.core.Breakpoints.MD)?e.buttonHasFocus&&s[0].focus():s.indexOf(document.activeElement)>-1&&e.focus())},o.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},o.collapse.get=function(){return this.element.getDescendantInstances(t.core.Collapse.instanceClassName,null,!0)[0]},n.prototype.focus=function(){this.count=0,this._focus()},n.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},n.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},o.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(e.BUTTON)}))[0]},Object.defineProperties(n.prototype,o),Object.defineProperties(n,i),n}(t.core.Instance);t.breadcrumb={BreadcrumbSelector:e,Breadcrumb:s},t.internals.register(t.breadcrumb.BreadcrumbSelector.BREADCRUMB,t.breadcrumb.Breadcrumb)}(); diff --git a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.print.min.css b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.print.min.css index 2072e6761..563838318 100644 --- a/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.print.min.css +++ b/dsfr/static/dsfr/dist/component/breadcrumb/breadcrumb.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/button/button.legacy.min.css b/dsfr/static/dsfr/dist/component/button/button.legacy.min.css index 82da09fa0..95d01db4d 100644 --- a/dsfr/static/dsfr/dist/component/button/button.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/button/button.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../../icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(../../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../../icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(../../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/button/button.main.min.css b/dsfr/static/dsfr/dist/component/button/button.main.min.css index 6fb99058a..7a4eac05c 100644 --- a/dsfr/static/dsfr/dist/component/button/button.main.min.css +++ b/dsfr/static/dsfr/dist/component/button/button.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/media/fullscreen-line.svg);mask-image:url(../../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/team-line.svg);mask-image:url(../../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/briefcase-fill.svg);mask-image:url(../../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-down-line.svg);mask-image:url(../../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/media/fullscreen-line.svg);mask-image:url(../../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/team-line.svg);mask-image:url(../../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/briefcase-fill.svg);mask-image:url(../../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-down-line.svg);mask-image:url(../../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */.fr-btns-group--inline-sm .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline-sm>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-sm.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}}@media (min-width:48em){ /*! media md */.fr-btns-group--inline-md .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline-md>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-md.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}}@media (min-width:62em){ /*! media lg */.fr-btns-group--inline-lg .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline-lg>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-lg.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}}@media (min-width:78em){ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/button/button.min.css b/dsfr/static/dsfr/dist/component/button/button.min.css index b2e54e1e6..47c6b0f56 100644 --- a/dsfr/static/dsfr/dist/component/button/button.min.css +++ b/dsfr/static/dsfr/dist/component/button/button.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/media/fullscreen-line.svg);mask-image:url(../../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/team-line.svg);mask-image:url(../../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/briefcase-fill.svg);mask-image:url(../../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-down-line.svg);mask-image:url(../../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/media/fullscreen-line.svg);mask-image:url(../../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/user/team-line.svg);mask-image:url(../../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/briefcase-fill.svg);mask-image:url(../../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-down-line.svg);mask-image:url(../../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */.fr-btns-group--inline-sm .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline-sm>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-sm.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start} /*! media sm */}@media (min-width:48em){ /*! media md */.fr-btns-group--inline-md .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline-md>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-md.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start} @@ -8,4 +8,4 @@ /*! media lg */.fr-btns-group--inline-lg .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline-lg>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-lg.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start} /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../../icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(../../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}}@media print{.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../../icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(../../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}}@media print{.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/button/button.module.min.js b/dsfr/static/dsfr/dist/component/button/button.module.min.js index 5e8e76e18..d21957bf3 100644 --- a/dsfr/static/dsfr/dist/component/button/button.module.min.js +++ b/dsfr/static/dsfr/dist/component/button/button.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr,t={EQUISIZED_BUTTON:`${e.internals.ns.selector("btns-group--equisized")} ${e.internals.ns.selector("btn")}`,EQUISIZED_GROUP:e.internals.ns.selector("btns-group--equisized")};e.button={ButtonSelector:t},e.internals.register(e.button.ButtonSelector.EQUISIZED_BUTTON,e.core.Equisized),e.internals.register(e.button.ButtonSelector.EQUISIZED_GROUP,e.core.EquisizedsGroup); diff --git a/dsfr/static/dsfr/dist/component/button/button.nomodule.min.js b/dsfr/static/dsfr/dist/component/button/button.nomodule.min.js index d1f1c005e..77ff156cc 100644 --- a/dsfr/static/dsfr/dist/component/button/button.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/button/button.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var t=window.dsfr,e={EQUISIZED_BUTTON:t.internals.ns.selector("btns-group--equisized")+" "+t.internals.ns.selector("btn"),EQUISIZED_GROUP:t.internals.ns.selector("btns-group--equisized")};t.button={ButtonSelector:e},t.internals.register(t.button.ButtonSelector.EQUISIZED_BUTTON,t.core.Equisized),t.internals.register(t.button.ButtonSelector.EQUISIZED_GROUP,t.core.EquisizedsGroup)}(); diff --git a/dsfr/static/dsfr/dist/component/button/button.print.min.css b/dsfr/static/dsfr/dist/component/button/button.print.min.css index 63f812225..b76c4e15b 100644 --- a/dsfr/static/dsfr/dist/component/button/button.print.min.css +++ b/dsfr/static/dsfr/dist/component/button/button.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/callout/callout.legacy.min.css b/dsfr/static/dsfr/dist/component/callout/callout.legacy.min.css index 6a2733e53..86954ed56 100644 --- a/dsfr/static/dsfr/dist/component/callout/callout.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/callout/callout.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/callout/callout.main.min.css b/dsfr/static/dsfr/dist/component/callout/callout.main.min.css index 35cbeed9d..d67accd99 100644 --- a/dsfr/static/dsfr/dist/component/callout/callout.main.min.css +++ b/dsfr/static/dsfr/dist/component/callout/callout.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-callout{padding:2rem 3rem}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{margin:-1rem 0 1rem -2rem}.fr-callout__title{font-size:1.5rem;line-height:2rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/callout/callout.min.css b/dsfr/static/dsfr/dist/component/callout/callout.min.css index 67854682b..776ffd715 100644 --- a/dsfr/static/dsfr/dist/component/callout/callout.min.css +++ b/dsfr/static/dsfr/dist/component/callout/callout.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/callout/callout.print.min.css b/dsfr/static/dsfr/dist/component/callout/callout.print.min.css index d2e397570..d06fffb7c 100644 --- a/dsfr/static/dsfr/dist/component/callout/callout.print.min.css +++ b/dsfr/static/dsfr/dist/component/callout/callout.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/card/card.legacy.min.css b/dsfr/static/dsfr/dist/component/card/card.legacy.min.css index 3b1a5b699..44176c8e5 100644 --- a/dsfr/static/dsfr/dist/component/card/card.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/card/card.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/card/card.main.min.css b/dsfr/static/dsfr/dist/component/card/card.main.min.css index 9058d27f4..46b15b2c2 100644 --- a/dsfr/static/dsfr/dist/component/card/card.main.min.css +++ b/dsfr/static/dsfr/dist/component/card/card.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/card/card.min.css b/dsfr/static/dsfr/dist/component/card/card.min.css index 40df9ceee..baff130f6 100644 --- a/dsfr/static/dsfr/dist/component/card/card.min.css +++ b/dsfr/static/dsfr/dist/component/card/card.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/card/card.module.min.js b/dsfr/static/dsfr/dist/component/card/card.module.min.js index 34de7b8a0..93c35c21d 100644 --- a/dsfr/static/dsfr/dist/component/card/card.module.min.js +++ b/dsfr/static/dsfr/dist/component/card/card.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const s=window.dsfr;class e extends s.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(s.core.AssessEmission.UPDATE,(e=>{this.descend(s.core.AssessEmission.UPDATE,e)})),this.addAscent(s.core.AssessEmission.ADDED,(()=>{this.descend(s.core.AssessEmission.ADDED)}))}}const n={DOWNLOAD:s.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${s.internals.ns.selector("card--download")} ${s.internals.ns.selector("card__end")} ${s.internals.ns.selector("card__detail")}`};s.card={CardSelector:n,CardDownload:e},s.internals.register(s.card.CardSelector.DOWNLOAD,s.card.CardDownload),s.internals.register(s.card.CardSelector.DOWNLOAD_DETAIL,s.core.AssessDetail); diff --git a/dsfr/static/dsfr/dist/component/card/card.nomodule.min.js b/dsfr/static/dsfr/dist/component/card/card.nomodule.min.js index 1ef8d6087..c3cac1cfb 100644 --- a/dsfr/static/dsfr/dist/component/card/card.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/card/card.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,s=function(s){function n(){s.apply(this,arguments)}s&&(n.__proto__=s),n.prototype=Object.create(s&&s.prototype),n.prototype.constructor=n;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"CardDownload"},n.prototype.init=function(){var s=this;this.addAscent(e.core.AssessEmission.UPDATE,(function(n){s.descend(e.core.AssessEmission.UPDATE,n)})),this.addAscent(e.core.AssessEmission.ADDED,(function(){s.descend(e.core.AssessEmission.ADDED)}))},Object.defineProperties(n,r),n}(e.core.Instance),n={DOWNLOAD:e.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:e.internals.ns.selector("card--download")+" "+e.internals.ns.selector("card__end")+" "+e.internals.ns.selector("card__detail")};e.card={CardSelector:n,CardDownload:s},e.internals.register(e.card.CardSelector.DOWNLOAD,e.card.CardDownload),e.internals.register(e.card.CardSelector.DOWNLOAD_DETAIL,e.core.AssessDetail)}(); diff --git a/dsfr/static/dsfr/dist/component/card/card.print.min.css b/dsfr/static/dsfr/dist/component/card/card.print.min.css index 52bbdefe8..1e3109d9f 100644 --- a/dsfr/static/dsfr/dist/component/card/card.print.min.css +++ b/dsfr/static/dsfr/dist/component/card/card.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/checkbox/checkbox.legacy.min.css b/dsfr/static/dsfr/dist/component/checkbox/checkbox.legacy.min.css index ec5ecdc30..6d73e27e2 100644 --- a/dsfr/static/dsfr/dist/component/checkbox/checkbox.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/checkbox/checkbox.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/checkbox/checkbox.main.min.css b/dsfr/static/dsfr/dist/component/checkbox/checkbox.main.min.css index e3b74c447..9115d8ddd 100644 --- a/dsfr/static/dsfr/dist/component/checkbox/checkbox.main.min.css +++ b/dsfr/static/dsfr/dist/component/checkbox/checkbox.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/checkbox/checkbox.min.css b/dsfr/static/dsfr/dist/component/checkbox/checkbox.min.css index 2c0f442af..94561b4cd 100644 --- a/dsfr/static/dsfr/dist/component/checkbox/checkbox.min.css +++ b/dsfr/static/dsfr/dist/component/checkbox/checkbox.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/checkbox/checkbox.module.min.js b/dsfr/static/dsfr/dist/component/checkbox/checkbox.module.min.js index 5898dbe35..ca3e9a01c 100644 --- a/dsfr/static/dsfr/dist/component/checkbox/checkbox.module.min.js +++ b/dsfr/static/dsfr/dist/component/checkbox/checkbox.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr,n={INPUT:`${e.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},s={CHANGE:e.internals.ns.emission("checkbox","change"),RETRIEVE:e.internals.ns.emission("checkbox","retrieve")};class t extends e.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(s.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(s.CHANGE,this.node)}}e.checkbox={CheckboxSelector:n,CheckboxEmission:s,CheckboxInput:t},e.internals.register(e.checkbox.CheckboxSelector.INPUT,e.checkbox.CheckboxInput); diff --git a/dsfr/static/dsfr/dist/component/checkbox/checkbox.nomodule.min.js b/dsfr/static/dsfr/dist/component/checkbox/checkbox.nomodule.min.js index 67f01db5f..2a1e5748d 100644 --- a/dsfr/static/dsfr/dist/component/checkbox/checkbox.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/checkbox/checkbox.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,n={INPUT:e.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},t={CHANGE:e.internals.ns.emission("checkbox","change"),RETRIEVE:e.internals.ns.emission("checkbox","retrieve")},c=function(e){function n(){e.call(this),this._handlingChange=this.handleChange.bind(this)}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var c={isChecked:{configurable:!0}},o={instanceClassName:{configurable:!0}};return o.instanceClassName.get=function(){return"CheckboxInput"},n.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(t.RETRIEVE,this._handlingChange),this.handleChange()},c.isChecked.get=function(){return this.node.checked},n.prototype.handleChange=function(){this.ascend(t.CHANGE,this.node)},Object.defineProperties(n.prototype,c),Object.defineProperties(n,o),n}(e.core.Instance);e.checkbox={CheckboxSelector:n,CheckboxEmission:t,CheckboxInput:c},e.internals.register(e.checkbox.CheckboxSelector.INPUT,e.checkbox.CheckboxInput)}(); diff --git a/dsfr/static/dsfr/dist/component/checkbox/checkbox.print.min.css b/dsfr/static/dsfr/dist/component/checkbox/checkbox.print.min.css index e52adbd85..699d40a37 100644 --- a/dsfr/static/dsfr/dist/component/checkbox/checkbox.print.min.css +++ b/dsfr/static/dsfr/dist/component/checkbox/checkbox.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/component.legacy.min.css b/dsfr/static/dsfr/dist/component/component.legacy.min.css index a72c33353..f5506330e 100644 --- a/dsfr/static/dsfr/dist/component/component.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/component.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle--error:before,.fr-toggle--valid:before{content:""}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ @@ -180,4 +180,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(../icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(../icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}.fr-input:-ms-input-placeholder{color:#666}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/component.main.min.css b/dsfr/static/dsfr/dist/component/component.main.min.css index 4bc428f25..f965e7e54 100644 --- a/dsfr/static/dsfr/dist/component/component.main.min.css +++ b/dsfr/static/dsfr/dist/component/component.main.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */ /*! media sm */ @@ -64,7 +64,7 @@ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem} /*! media md */ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem} /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)} /*! media md */ @@ -74,7 +74,7 @@ /*! media md */ /*! media md */.fr-download--card{padding:2rem 2rem 5rem}.fr-download--card .fr-download__link{font-size:1.375rem;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1.5rem;bottom:2rem;right:2rem}.fr-download--card .fr-download__desc{margin-top:.75rem}.fr-download--card .fr-download__detail{bottom:2rem;left:2rem}.fr-downloads-group__title{font-size:1.5rem;line-height:2rem}.fr-downloads-group--bordered{padding:2rem 2rem .5rem}.fr-downloads-group .fr-download{margin-bottom:1.5rem} /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem} - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover} /*! media md */ @@ -132,11 +132,11 @@ /*! media lg */ /*! media lg */ /*! media lg */ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0} - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */ /*! media lg */ /*! media lg */ @@ -145,7 +145,7 @@ /*! media lg */.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-end;position:absolute;width:56%} /*! media lg */ /*! media lg */ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ /*! media xl */ /*! media xl */ /*! media xl */ @@ -193,4 +193,4 @@ /*! media xl */.fr-consent-manager__header .fr-consent-service__radios,.fr-consent-manager__header .fr-consent-service__title{width:50%} /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (hover:hover) and (pointer:fine){.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (hover:hover) and (pointer:fine){.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/component.min.css b/dsfr/static/dsfr/dist/component/component.min.css index 89a3ed55d..501706523 100644 --- a/dsfr/static/dsfr/dist/component/component.min.css +++ b/dsfr/static/dsfr/dist/component/component.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */ /*! media sm */ @@ -109,7 +109,7 @@ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem} /*! media md */ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem} /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)} /*! media md */ @@ -119,7 +119,7 @@ /*! media md */ /*! media md */.fr-download--card{padding:2rem 2rem 5rem}.fr-download--card .fr-download__link{font-size:1.375rem;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1.5rem;bottom:2rem;right:2rem}.fr-download--card .fr-download__desc{margin-top:.75rem}.fr-download--card .fr-download__detail{bottom:2rem;left:2rem}.fr-downloads-group__title{font-size:1.5rem;line-height:2rem}.fr-downloads-group--bordered{padding:2rem 2rem .5rem}.fr-downloads-group .fr-download{margin-bottom:1.5rem} /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem} - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover} /*! media md */ @@ -222,11 +222,11 @@ /*! media lg */ /*! media lg */ /*! media lg */ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0} - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */ /*! media lg */ /*! media lg */ @@ -235,7 +235,7 @@ /*! media lg */.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-end;position:absolute;width:56%} /*! media lg */ /*! media lg */ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} /*! media lg */ /*! media lg */ /*! media lg */ @@ -373,4 +373,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (hover:hover) and (pointer:fine){.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}}@media print{.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (hover:hover) and (pointer:fine){.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(../icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(../icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}.fr-input:-ms-input-placeholder{color:#666}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}}@media print{.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/component.module.min.js b/dsfr/static/dsfr/dist/component/component.module.min.js index 1ba3333aa..6908ef615 100644 --- a/dsfr/static/dsfr/dist/component/component.module.min.js +++ b/dsfr/static/dsfr/dist/component/component.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const e="fr",t="dsfr",s=window[t],i=s.internals.ns.selector("accordion"),n=s.internals.ns.selector("collapse"),r={GROUP:s.internals.ns.selector("accordions-group"),ACCORDION:i,COLLAPSE:`${i} > ${n}, ${i} > *:not(${i}):not(${n}) > ${n}, ${i} > *:not(${i}):not(${n}) > *:not(${i}):not(${n}) > ${n}`,COLLAPSE_LEGACY:`${i} ${n}`,BUTTON:`${i}__btn`};class a extends s.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(r.BUTTON)))[0]}}class o extends s.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(e){const t=e.node.matches(s.internals.legacy.isLegacy?r.COLLAPSE_LEGACY:r.COLLAPSE);return super.validate(e)&&t}}s.accordion={Accordion:a,AccordionSelector:r,AccordionsGroup:o},s.internals.register(s.accordion.AccordionSelector.GROUP,s.accordion.AccordionsGroup),s.internals.register(s.accordion.AccordionSelector.ACCORDION,s.accordion.Accordion);const l={EQUISIZED_BUTTON:`${s.internals.ns.selector("btns-group--equisized")} ${s.internals.ns.selector("btn")}`,EQUISIZED_GROUP:s.internals.ns.selector("btns-group--equisized")};s.button={ButtonSelector:l},s.internals.register(s.button.ButtonSelector.EQUISIZED_BUTTON,s.core.Equisized),s.internals.register(s.button.ButtonSelector.EQUISIZED_GROUP,s.core.EquisizedsGroup);class h extends s.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(s.core.AssessEmission.UPDATE,(e=>{this.descend(s.core.AssessEmission.UPDATE,e)})),this.addAscent(s.core.AssessEmission.ADDED,(()=>{this.descend(s.core.AssessEmission.ADDED)}))}}const c={DOWNLOAD:s.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${s.internals.ns.selector("card--download")} ${s.internals.ns.selector("card__end")} ${s.internals.ns.selector("card__detail")}`};s.card={CardSelector:c,CardDownload:h},s.internals.register(s.card.CardSelector.DOWNLOAD,s.card.CardDownload),s.internals.register(s.card.CardSelector.DOWNLOAD_DETAIL,s.core.AssessDetail);const d={INPUT:`${s.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},u={CHANGE:s.internals.ns.emission("checkbox","change"),RETRIEVE:s.internals.ns.emission("checkbox","retrieve")};class g extends s.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(u.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(u.CHANGE,this.node)}}s.checkbox={CheckboxSelector:d,CheckboxEmission:u,CheckboxInput:g},s.internals.register(s.checkbox.CheckboxSelector.INPUT,s.checkbox.CheckboxInput);const m={SEGMENTED:s.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:s.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:s.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:s.internals.ns.selector("segmented__legend")},p={ADDED:s.internals.ns.emission("segmented","added"),REMOVED:s.internals.ns.emission("segmented","removed")};class _ extends s.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(m.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(m.SEGMENTED_LEGEND),this.addAscent(p.ADDED,this.resize.bind(this)),this.addAscent(p.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${s.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const e=`${s.prefix}-segmented--vertical`,t=`${s.prefix}-segmented__legend--inline`;this.removeClass(e),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(e):this.removeClass(e)}}class E extends s.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(p.ADDED)}dispose(){this.ascend(p.REMOVED)}}s.segmented={SegmentedSelector:m,SegmentedEmission:p,SegmentedElement:E,Segmented:_},s.internals.register(s.segmented.SegmentedSelector.SEGMENTED,s.segmented.Segmented),s.internals.register(s.segmented.SegmentedSelector.SEGMENTED_ELEMENT,s.segmented.SegmentedElement);const b={BREADCRUMB:s.internals.ns.selector("breadcrumb"),BUTTON:s.internals.ns.selector("breadcrumb__button")};class T extends s.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const e=this;return Object.assign(super.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(s.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(s.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(s.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(s.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const e=this.links[0];e&&(e.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const e=this.links[0];e&&document.activeElement!==e&&this._focus()}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(b.BUTTON)))[0]}}s.breadcrumb={BreadcrumbSelector:b,Breadcrumb:T},s.internals.register(s.breadcrumb.BreadcrumbSelector.BREADCRUMB,s.breadcrumb.Breadcrumb);const S={TOOLTIP:s.internals.ns.selector("tooltip"),SHOWN:s.internals.ns.selector("tooltip--shown"),BUTTON:s.internals.ns.selector("btn--tooltip")},A=1,f=2;class N extends s.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(S.BUTTON)){const e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);const t=this.mouseout.bind(this);this.listen("mouseout",t),this.placement.listen("mouseout",t)}this.addEmission(s.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(s.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(e){this.node.contains(e)||this.blur()}_keydown(e){if(e===s.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(e){this._state!==e&&(this.isShown=e>0,this._state=e)}focusIn(){this.state|=A}focusOut(){this.state&=~A}mouseover(){this.state|=f}mouseout(){this.state&=~f}}const C=t=>`${e}-${t}`;C.selector=(e,t)=>(void 0===t&&(t="."),`${t}${C(e)}`),(C.attr=e=>`data-${C(e)}`).selector=(e,t)=>{let s=C.attr(e);return void 0!==t&&(s+=`="${t}"`),`[${s}]`},C.event=e=>`${t}.${e}`,C.emission=(e,t)=>`emission:${e}.${t}`;const I={SHOW:C.event("show"),HIDE:C.event("hide")},L="hidden",D="shown",R="hiding";class v extends s.core.Placement{constructor(){super(s.core.PlacementMode.AUTO,[s.core.PlacementPosition.TOP,s.core.PlacementPosition.BOTTOM],[s.core.PlacementAlign.CENTER,s.core.PlacementAlign.START,s.core.PlacementAlign.END]),this.modifier="",this._state=L}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,N),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===R&&(this._state=L,this.isShown=!1)}get isShown(){return super.isShown}set isShown(e){if(this.isEnabled)switch(!0){case e:this._state=D,this.addClass(S.SHOWN),this.dispatch(I.SHOW),super.isShown=!0;break;case this.isShown&&!e&&this._state===D:this._state=R,this.removeClass(S.SHOWN);break;case this.isShown&&!e&&this._state===L:this.dispatch(I.HIDE),super.isShown=!1}}render(){super.render();let e=this.referentRect.center-this.rect.center;const t=.5*this.rect.width-8;e<-t&&(e=-t),e>t&&(e=t),this.setProperty("--arrow-x",`${e.toFixed(2)}px`)}}s.tooltip={Tooltip:v,TooltipSelector:S,TooltipEvent:I},s.internals.register(s.tooltip.TooltipSelector.TOOLTIP,s.tooltip.Tooltip);class O extends s.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class y extends s.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,O),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const i=getComputedStyle(this.node,":before"),n=parseFloat(i.width);n>s&&(s=n),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const P={STATUS_LABEL:`${s.internals.ns.selector("toggle__label")}${s.internals.ns.attr.selector("checked-label")}${s.internals.ns.attr.selector("unchecked-label")}`};s.toggle={ToggleStatusLabel:y,ToggleSelector:P},s.internals.register(s.toggle.ToggleSelector.STATUS_LABEL,s.toggle.ToggleStatusLabel);const x=s.internals.ns.selector("sidemenu__item"),w=s.internals.ns.selector("collapse"),k={LIST:s.internals.ns.selector("sidemenu__list"),COLLAPSE:`${x} > ${w}, ${x} > *:not(${x}):not(${w}) > ${w}, ${x} > *:not(${x}):not(${w}) > *:not(${x}):not(${w}) > ${w}`,COLLAPSE_LEGACY:`${x} ${w}`,ITEM:s.internals.ns.selector("sidemenu__item"),BUTTON:s.internals.ns.selector("sidemenu__btn")};class G extends s.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(e){return super.validate(e)&&e.node.matches(s.internals.legacy.isLegacy?k.COLLAPSE_LEGACY:k.COLLAPSE)}}class M extends s.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(k.BUTTON)))[0]}}s.sidemenu={SidemenuList:G,SidemenuItem:M,SidemenuSelector:k},s.internals.register(s.sidemenu.SidemenuSelector.LIST,s.sidemenu.SidemenuList),s.internals.register(s.sidemenu.SidemenuSelector.ITEM,s.sidemenu.SidemenuItem);const $={MODAL:s.internals.ns.selector("modal"),SCROLL_DIVIDER:s.internals.ns.selector("scroll-divider"),BODY:s.internals.ns.selector("modal__body"),TITLE:s.internals.ns.selector("modal__title")};class H extends s.core.DisclosureButton{constructor(){super(s.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const U={CONCEALING_BACKDROP:s.internals.ns.attr("concealing-backdrop")};class W extends s.core.Disclosure{constructor(){super(s.core.DisclosureType.OPENED,$.MODAL,H,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(s.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===s.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(e){e.target===this.node&&"false"!==this.getAttribute(U.CONCEALING_BACKDROP)&&this.conceal()}disclose(e){return!!super.disclose(e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(e,t){return!!super.conceal(e,t)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(e){this._isDialog=e}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(e,t){const s=this.retrieveNodeId(e,t);this.warn(`add reference to ${t} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",s)}_ensureAccessibleName(){if(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label"))return;this.warn("missing accessible name");const e=this.node.querySelector($.TITLE),t=this.primaryButtons[0];switch(!0){case null!==e:this._setAccessibleName(e,"title");break;case void 0!==t:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(t,"primary")}}}const B=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),F=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),z=(e,t)=>{if(!(e instanceof Element))return!1;const s=window.getComputedStyle(e);if(!s)return!1;if("hidden"===s.visibility)return!1;for(void 0===t&&(t=e);t.contains(e);){if("none"===s.display)return!1;e=e.parentElement}return!0};class V{constructor(e,t){this.element=null,this.activeElement=null,this.onTrap=e,this.onUntrap=t,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(e){this.trapped&&this.untrap(),this.element=e,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){z(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const e=this.focusables;e.length&&-1===e.indexOf(document.activeElement)&&e[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(e){for(const t of e.children)t!==this.element&&(t.contains(this.element)?this.stun(t):this.stunneds.push(new q(t)))}maintainFocus(e){if(!this.element.contains(e.target)){const t=this.focusables;if(0===t.length)return;const s=t[0];e.preventDefault(),s.focus()}}handle(e){if(9!==e.keyCode)return;const t=this.focusables;if(0===t.length)return;const s=t[0],i=t[t.length-1],n=t.indexOf(document.activeElement);e.shiftKey?!this.element.contains(document.activeElement)||n<1?(e.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||t[n-1].tabIndex>0)&&(e.preventDefault(),t[n-1].focus()):this.element.contains(document.activeElement)&&n!==t.length-1&&-1!==n?document.activeElement.tabIndex>0&&(e.preventDefault(),t[n+1].focus()):(e.preventDefault(),s.focus())}get focusables(){let e=s.internals.dom.querySelectorAllArray(this.element,B);const t=s.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(t.length){const s={};for(const e of t){const t=e.getAttribute("name");void 0===s[t]&&(s[t]=new K(t)),s[t].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||"radio"!==e.getAttribute("type").toLowerCase())return!0;const t=e.getAttribute("name");return s[t].keep(e)}))}const i=s.internals.dom.querySelectorAllArray(this.element,F);i.sort(((e,t)=>e.tabIndex-t.tabIndex));const n=e.filter((e=>-1===i.indexOf(e)));return i.concat(n).filter((e=>"-1"!==e.tabIndex&&z(e,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class q{constructor(e){this.element=e,this.inert=e.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class K{constructor(e){this.name=e,this.buttons=[]}push(e){this.buttons.push(e),(e===document.activeElement||e.checked||void 0===this.selected)&&(this.selected=e)}keep(e){return this.selected===e}}class X extends s.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new V}static get instanceClassName(){return"ModalsGroup"}apply(e,t){super.apply(e,t),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class Y extends s.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass($.SCROLL_DIVIDER):this.addClass($.SCROLL_DIVIDER):this.removeClass($.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(s.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}s.modal={Modal:W,ModalButton:H,ModalBody:Y,ModalsGroup:X,ModalSelector:$},s.internals.register(s.modal.ModalSelector.MODAL,s.modal.Modal),s.internals.register(s.modal.ModalSelector.BODY,s.modal.ModalBody),s.internals.register(s.core.RootSelector.ROOT,s.modal.ModalsGroup);const j={TOGGLE:s.internals.ns.emission("password","toggle"),ADJUST:s.internals.ns.emission("password","adjust")};class J extends s.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(j.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const e=getComputedStyle(this.node.parentNode);return parseInt(e.width)}get isChecked(){return this.node.checked}set isChecked(e){this._isChecked=e,this.ascend(j.TOGGLE,e)}handleClick(){this.isChecked=!this._isChecked}swapFont(e){this.ascend(j.ADJUST,this.width)}}class Q extends s.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(j.TOGGLE,this.toggle.bind(this)),this.addAscent(j.ADJUST,this.adjust.bind(this))}toggle(e){this.descend(j.TOGGLE,e)}adjust(e){this.descend(j.ADJUST,e)}}const Z={PASSWORD:s.internals.ns.selector("password"),INPUT:s.internals.ns.selector("password__input"),LABEL:s.internals.ns.selector("password__label"),TOOGLE:`${s.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class ee extends s.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(j.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(e){this.isRevealed=e,this.setAttribute("type",e?"text":"password")}get isRevealed(){return this._isRevealed}capslock(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(s.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(s.internals.ns.attr("capslock")))}set isRevealed(e){this._isRevealed=e,this.setAttribute("type",e?"text":"password")}}class te extends s.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(j.ADJUST,this.adjust.bind(this))}adjust(e){const t=Math.ceil(e/16);this.node.style.paddingRight=t+"rem"}}s.password={Password:Q,PasswordToggle:J,PasswordSelector:Z,PasswordInput:ee,PasswordLabel:te},s.internals.register(s.password.PasswordSelector.INPUT,s.password.PasswordInput),s.internals.register(s.password.PasswordSelector.PASSWORD,s.password.Password),s.internals.register(s.password.PasswordSelector.TOOGLE,s.password.PasswordToggle),s.internals.register(s.password.PasswordSelector.LABEL,s.password.PasswordLabel);const se=s.internals.ns.selector("nav__item"),ie=s.internals.ns.selector("collapse"),ne={NAVIGATION:s.internals.ns.selector("nav"),COLLAPSE:`${se} > ${ie}, ${se} > *:not(${se}):not(${ie}) > ${ie}, ${se} > *:not(${se}):not(${ie}) > *:not(${se}):not(${ie}) > ${ie}`,COLLAPSE_LEGACY:`${se} ${ie}`,ITEM:se,ITEM_RIGHT:`${se}--align-right`,MENU:s.internals.ns.selector("menu"),BUTTON:s.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:s.internals.ns.selector("translate__btn")};class re extends s.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(s.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(s.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(s.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(s.core.Breakpoints.LG)&&e.element.node.matches(ne.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,i=this.element.node.getBoundingClientRect().left;this.isRightAligned=i+s>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?s.internals.dom.addClass(this.element.node,ne.ITEM_RIGHT):s.internals.dom.removeClass(this.element.node,ne.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&(e.hasClass(ne.BUTTON)||e.hasClass(ne.TRANSLATE_BUTTON))))[0]}}const ae={NONE:-1,INSIDE:0,OUTSIDE:1};class oe extends s.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(s.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(s.internals.legacy.isLegacy?ne.COLLAPSE_LEGACY:ne.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(s.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?ae.INSIDE:ae.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(s.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(s.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case ae.OUTSIDE:this.index=-1;break;case ae.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=ae.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=e}get canUngroup(){return!this.isBreakpoint(s.core.Breakpoints.LG)}resize(){this.update()}}s.navigation={Navigation:oe,NavigationItem:re,NavigationMousePosition:ae,NavigationSelector:ne},s.internals.register(s.navigation.NavigationSelector.NAVIGATION,s.navigation.Navigation),s.internals.register(s.navigation.NavigationSelector.ITEM,s.navigation.NavigationItem);class le extends s.core.DisclosureButton{constructor(){super(s.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(e){super.handleClick(e),this.focus()}apply(e){super.apply(e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const he={TAB:s.internals.ns.selector("tabs__tab"),GROUP:s.internals.ns.selector("tabs"),PANEL:s.internals.ns.selector("tabs__panel"),LIST:s.internals.ns.selector("tabs__list"),SHADOW:s.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:s.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:s.internals.ns.selector("tabs__shadow--right"),PANEL_START:s.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:s.internals.ns.selector("tabs__panel--direction-end")},ce="direction-start",de="direction-end",ue="none";class ge extends s.core.Disclosure{constructor(){super(s.core.DisclosureType.SELECT,he.PANEL,le,"TabsGroup"),this._direction=ue,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(e){if(e!==this._direction){switch(this._direction){case ce:this.removeClass(he.PANEL_START);break;case de:this.removeClass(he.PANEL_END);break;case ue:break;default:return}switch(this._direction=e,this._direction){case ce:this.addClass(he.PANEL_START);break;case de:this.addClass(he.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(e){this._isPreventingTransition!==e&&(e?this.addClass(s.internals.motion.TransitionSelector.NONE):this.removeClass(s.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)}translate(e,t){this.isPreventingTransition=t,this.direction=e}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(e){return this.group&&this.group.list?super._electPrimaries(e).filter((e=>this.group.list.node.contains(e.node))):[]}}const me="tab_keys_left",pe="tab_keys_right",_e="tab_keys_home",Ee="tab_keys_end",be={PRESS_KEY:s.internals.ns.emission("tab","press_key"),LIST_HEIGHT:s.internals.ns.emission("tab","list_height")};class Te extends s.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(be.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(be.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(e=0){super.getIndex(e)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(e){this.listHeight=e}transitionend(e){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((e=>e.buttonHasFocus))}pressKey(e){switch(e){case me:this.pressLeft();break;case pe:this.pressRight();break;case _e:this.pressHome();break;case Ee:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let e=0;es.right&&this.node.scrollTo(i-s.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.apply())}apply(){this._isScrolling?(this.addClass(he.SHADOW),this.scroll()):(this.removeClass(he.SHADOW_RIGHT),this.removeClass(he.SHADOW_LEFT),this.removeClass(he.SHADOW))}scroll(){const e=this.node.scrollLeft,t=e<=16,s=this.node.scrollWidth-this.node.clientWidth-16,i=Math.abs(e)>=s,n="rtl"===document.documentElement.getAttribute("dir"),r=n?he.SHADOW_RIGHT:he.SHADOW_LEFT,a=n?he.SHADOW_LEFT:he.SHADOW_RIGHT;t?this.removeClass(r):this.addClass(r),i?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const e=this.getRect().height;this.setProperty("--tabs-list-height",`${e}px`),this.ascend(be.LIST_HEIGHT,e)}dispose(){this.isScrolling=!1}}s.tab={TabPanel:ge,TabButton:le,TabsGroup:Te,TabsList:Se,TabSelector:he,TabEmission:be},s.internals.register(s.tab.TabSelector.PANEL,s.tab.TabPanel),s.internals.register(s.tab.TabSelector.GROUP,s.tab.TabsGroup),s.internals.register(s.tab.TabSelector.LIST,s.tab.TabsList);const Ae={DISMISS:s.internals.ns.event("dismiss")};class fe extends s.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),s.mode){case s.Modes.ANGULAR:case s.Modes.REACT:case s.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(Ae.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${s.mode} mode, the api doesn't handle dom modification. An event ${Ae.DISMISS} is dispatched by the element to trigger the removal`)}}const Ne={PRESSABLE:`${s.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${s.internals.ns.selector("tag--dismiss")}`};s.tag={TagDismissible:fe,TagSelector:Ne,TagEvent:Ae},s.internals.register(s.tag.TagSelector.PRESSABLE,s.core.Toggle),s.internals.register(s.tag.TagSelector.DISMISSIBLE,s.tag.TagDismissible);const Ce=s.internals.ns.selector("transcription"),Ie={TRANSCRIPTION:Ce,BUTTON:`${Ce}__btn`};class Le extends s.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(Ie.BUTTON)))[0]}}s.transcription={Transcription:Le,TranscriptionSelector:Ie},s.internals.register(s.transcription.TranscriptionSelector.TRANSCRIPTION,s.transcription.Transcription);class De extends s.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(s.core.AssessEmission.UPDATE,(e=>{this.descend(s.core.AssessEmission.UPDATE,e)})),this.addAscent(s.core.AssessEmission.ADDED,(()=>{this.descend(s.core.AssessEmission.ADDED)}))}}const Re={DOWNLOAD:s.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${s.internals.ns.selector("tile--download")} ${s.internals.ns.selector("tile__detail")}`};s.tile={TileSelector:Re,TileDownload:De},s.internals.register(s.tile.TileSelector.DOWNLOAD,s.tile.TileDownload),s.internals.register(s.tile.TileSelector.DOWNLOAD_DETAIL,s.core.AssessDetail);const ve={RANGE:s.internals.ns.selector("range"),RANGE_SM:s.internals.ns.selector("range--sm"),RANGE_STEP:s.internals.ns.selector("range--step"),RANGE_DOUBLE:s.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:s.internals.ns.selector("range--double")+s.internals.ns.selector("range--step"),RANGE_INPUT:s.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${s.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:s.internals.ns.selector("range__output"),RANGE_MIN:s.internals.ns.selector("range__min"),RANGE_MAX:s.internals.ns.selector("range__max"),RANGE_PREFIX:s.internals.ns.attr("prefix"),RANGE_SUFFIX:s.internals.ns.attr("suffix")},Oe={VALUE:s.internals.ns.emission("range","value"),VALUE2:s.internals.ns.emission("range","value2"),OUTPUT:s.internals.ns.emission("range","output"),CONSTRAINTS:s.internals.ns.emission("range","constraints"),MIN:s.internals.ns.emission("range","min"),MAX:s.internals.ns.emission("range","max"),STEP:s.internals.ns.emission("range","step"),PREFIX:s.internals.ns.emission("range","prefix"),SUFFIX:s.internals.ns.emission("range","suffix"),DISABLED:s.internals.ns.emission("range","disabled"),ENABLE_POINTER:s.internals.ns.emission("range","enable_pointer")};class ye{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(e){e&&(this._prefix=e._prefix,this._suffix=e._suffix,this._width=e.width,this.setConstraints(e._constraints),this.value=e.value,this.update())}setPrefix(e){this._prefix=null!==e?e:""}setSuffix(e){this._suffix=null!==e?e:""}_decorate(e){return`${this._prefix}${e}${this._suffix}`}get width(){return this._width}set width(e){this._width=e}get isSm(){return this._isSm}set isSm(e){this._isSm!==e&&(this._isSm=e,this.setThumbSize(e?16:24),this.update())}setThumbSize(e,t=1){this._thumbSize=e,this._innerPadding=e*t}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(e){this._value=e}get outputX(){return this._outputX}setConstraints(e){this._constraints=e,this._min=e.min,this._max=e.max,this._step=e.step,this._rangeWidth=e.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(e){return(e-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const e=this._getRatio(this._value);this._translateX=e*this._width,this._centerPercent=100*e,this._progress={right:`${(this._innerWidth*e+.5*this._innerPadding).toFixed(2)}px`}}}class Pe extends ye{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class xe extends ye{get value2(){return this._value}set value2(e){this._value2!==e&&(this._value2=e,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(e){super.setThumbSize(e,2)}_update(){super._update();const e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;const t=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*t+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class we extends xe{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const ke="step",Ge="double",Me="double-step",$e="default";class He extends s.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Oe.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Oe.VALUE,this.setValue.bind(this)),this.addAscent(Oe.VALUE2,this.setValue2.bind(this)),this.getAttribute(ve.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(ve.RANGE_PREFIX)),this.getAttribute(ve.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(ve.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(ve.RANGE_DOUBLE_STEP):case this.matches(ve.RANGE_DOUBLE):this.type=Ge;break;case this.matches(ve.RANGE_STEP):this.type=ke;break;default:this.type=$e}}set type(e){if(this._type===e)return;this._type=e;const t=this._model;switch(this._type){case Me:this._model=new we;break;case Ge:this._model=new xe;break;case ke:this._model=new Pe;break;default:this._model=new ye}this._model.configure(t)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(ve.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(e){switch(this._model.value=e,this._type){case Me:case Ge:this.descend(Oe.VALUE,e)}this.update()}setValue2(e){this._model.value2=e,this.descend(Oe.VALUE2,e),this.update()}setConstraints(e){this._model.setConstraints(e),this.update(),this.descend(Oe.CONSTRAINTS,e)}setPrefix(e){this._model.setPrefix(e),this.update()}setSuffix(e){this._model.setSuffix(e),this.update()}mutate(e){switch(!0){case e.includes("class"):this._retrieveType(),this._retrieveSize();break;case e.includes(ve.RANGE_PREFIX):case e.includes(ve.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(ve.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(ve.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(Oe.OUTPUT,this._model.output),this.descend(Oe.MIN,this._model.textMin),this.descend(Oe.MAX,this._model.textMax);const e=this._model.progress;e.left?this.style.setProperty("--progress-left",e.left):this.style.removeProperty("--progress-left"),e.right?(this.style.setProperty("--progress-right",e.right),this.isLegacy&&e.left&&(this.style.setProperty("background-position-x",e.left),this.style.setProperty("background-size",`${parseFloat(e.right)-parseFloat(e.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(e){if(this._type!==Ge&&this._type!==Me)return;const t=e.x-this.getRect().left;this.descend(Oe.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(Oe.CONSTRAINTS,new Ue(this.node)),this.ascend(Oe.DISABLED,this.node.disabled)})),this.addDescent(Oe.VALUE2,this.setValue.bind(this))}_enablePointer(e){const t=e===this._pointerId;this._isPointerEnabled!==t&&(this._isPointerEnabled=t,t?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}setValue(e){parseFloat(this.node.value)>e&&(this.node.value=e,this.dispatch("change",void 0,!0),this.change())}change(){this.ascend(Oe.VALUE,parseFloat(this.node.value))}mutate(e){e.includes("disabled")&&this.ascend(Oe.DISABLED,this.node.disabled),(e.includes("min")||e.includes("max")||e.includes("step"))&&(this.ascend(Oe.CONSTRAINTS,new Ue(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class Be extends s.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(Oe.OUTPUT,this.change.bind(this))}change(e){this.node.innerText=e.text,this.node.style.transform=e.transform}}class Fe extends s.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(ve.RANGE_MIN):this.addDescent(Oe.MIN,this.change.bind(this));break;case this.matches(ve.RANGE_MAX):this.addDescent(Oe.MAX,this.change.bind(this))}}change(e){this.node.innerText=e}}s.range={Range:He,RangeInput:We,RangeInput2:class extends We{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(Oe.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Oe.VALUE,this.setValue.bind(this))}setValue(e){parseFloat(this.node.value)e.replace('id="',"").replace('"',"")));const a=i.match(/aria-controls="(.*?)"/gm);let o=i.replace(/id="(.*?)"/gm,'id="$1'+t+'"');if(a)for(const e of a){const s=e.replace('aria-controls="',"").replace('"',"");r.includes(s)&&(o=o.replace(`aria-controls="${s}"`,`aria-controls="${s+t}"`))}if(o!==n)switch(s.mode){case s.Modes.ANGULAR:case s.Modes.REACT:case s.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${s.header.doc}`);break;default:this.menuLinks.innerHTML=o}}}class qe extends s.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.isResizing=!0}resize(){this.isBreakpoint(s.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.unlistenClick({capture:!0}))}handleClick(e){if(e.target.matches("a, button")&&!e.target.matches("[aria-controls]")&&!e.target.matches(s.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}s.header={HeaderLinks:Ve,HeaderModal:qe,HeaderSelector:ze,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},s.internals.register(s.header.HeaderSelector.TOOLS_LINKS,s.header.HeaderLinks),s.internals.register(s.header.HeaderSelector.MODALS,s.header.HeaderModal);const Ke={DISPLAY:s.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${s.internals.ns("radios-theme")}"]`,FIELDSET:s.internals.ns.selector("fieldset")};class Xe extends s.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(Ke.RADIO_BUTTONS),s.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(s.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(s.scheme.SchemeEmission.ASK)}else this.querySelector(Ke.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e&&s.scheme)switch(e){case s.scheme.SchemeValue.SYSTEM:case s.scheme.SchemeValue.LIGHT:case s.scheme.SchemeValue.DARK:this._scheme=e;for(const t of this.radios)t.checked=t.value===e;this.ascend(s.scheme.SchemeEmission.SCHEME,e)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}s.display={Display:Xe,DisplaySelector:Ke},s.internals.register(s.display.DisplaySelector.DISPLAY,s.display.Display);const Ye={SCROLLABLE:s.internals.ns.emission("table","scrollable"),CHANGE:s.internals.ns.emission("table","change"),CAPTION_HEIGHT:s.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:s.internals.ns.emission("table","captionwidth")};class je extends s.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(Ye.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class Je extends s.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(Ye.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(Ye.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const Qe={TABLE:s.internals.ns.selector("table"),TABLE_WRAPPER:[`${s.internals.ns.selector("table")} ${s.internals.ns.selector("table__wrapper")}`],SHADOW:s.internals.ns.selector("table__shadow"),SHADOW_LEFT:s.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:s.internals.ns.selector("table__shadow--right"),ELEMENT:[`${s.internals.ns.selector("table")}:not(${s.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${s.internals.ns.selector("table")} table caption`,ROW:`${s.internals.ns.selector("table")} tbody tr`,COL:`${s.internals.ns.selector("table")} thead th`};class Ze extends s.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(Qe.SHADOW),this.scroll()):(this.removeClass(Qe.SHADOW),this.removeClass(Qe.SHADOW_LEFT),this.removeClass(Qe.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),n=i?Qe.SHADOW_RIGHT:Qe.SHADOW_LEFT,r=i?Qe.SHADOW_LEFT:Qe.SHADOW_RIGHT;e?this.removeClass(n):this.addClass(n),s?this.removeClass(r):this.addClass(r)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class et extends s.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(Ye.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}class tt extends s.core.Instance{static get instanceClassName(){return"TableRow"}init(){s.checkbox&&(this.addAscent(u.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(u.RETRIEVE))}_handleCheckboxChange(e){"row-select"===e.name&&(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}s.table={Table:je,TableWrapper:Je,TableElement:Ze,TableCaption:et,TableSelector:Qe,TableRow:tt},s.internals.register(s.table.TableSelector.TABLE,s.table.Table),s.internals.register(s.table.TableSelector.TABLE_WRAPPER,s.table.TableWrapper),s.internals.register(s.table.TableSelector.ELEMENT,s.table.TableElement),s.internals.register(s.table.TableSelector.CAPTION,s.table.TableCaption),s.internals.register(s.table.TableSelector.ROW,s.table.TableRow); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const e="fr",t="dsfr",s=window[t],i=s.internals.ns.selector("accordion"),n=s.internals.ns.selector("collapse"),r={GROUP:s.internals.ns.selector("accordions-group"),ACCORDION:i,COLLAPSE:`${i} > ${n}, ${i} > *:not(${i}):not(${n}) > ${n}, ${i} > *:not(${i}):not(${n}) > *:not(${i}):not(${n}) > ${n}`,COLLAPSE_LEGACY:`${i} ${n}`,BUTTON:`${i}__btn`};class a extends s.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(r.BUTTON)))[0]}}class o extends s.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(e){const t=e.node.matches(s.internals.legacy.isLegacy?r.COLLAPSE_LEGACY:r.COLLAPSE);return super.validate(e)&&t}}s.accordion={Accordion:a,AccordionSelector:r,AccordionsGroup:o},s.internals.register(s.accordion.AccordionSelector.GROUP,s.accordion.AccordionsGroup),s.internals.register(s.accordion.AccordionSelector.ACCORDION,s.accordion.Accordion);const l={EQUISIZED_BUTTON:`${s.internals.ns.selector("btns-group--equisized")} ${s.internals.ns.selector("btn")}`,EQUISIZED_GROUP:s.internals.ns.selector("btns-group--equisized")};s.button={ButtonSelector:l},s.internals.register(s.button.ButtonSelector.EQUISIZED_BUTTON,s.core.Equisized),s.internals.register(s.button.ButtonSelector.EQUISIZED_GROUP,s.core.EquisizedsGroup);class h extends s.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(s.core.AssessEmission.UPDATE,(e=>{this.descend(s.core.AssessEmission.UPDATE,e)})),this.addAscent(s.core.AssessEmission.ADDED,(()=>{this.descend(s.core.AssessEmission.ADDED)}))}}const c={DOWNLOAD:s.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${s.internals.ns.selector("card--download")} ${s.internals.ns.selector("card__end")} ${s.internals.ns.selector("card__detail")}`};s.card={CardSelector:c,CardDownload:h},s.internals.register(s.card.CardSelector.DOWNLOAD,s.card.CardDownload),s.internals.register(s.card.CardSelector.DOWNLOAD_DETAIL,s.core.AssessDetail);const d={INPUT:`${s.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},u={CHANGE:s.internals.ns.emission("checkbox","change"),RETRIEVE:s.internals.ns.emission("checkbox","retrieve")};class g extends s.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(u.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(u.CHANGE,this.node)}}s.checkbox={CheckboxSelector:d,CheckboxEmission:u,CheckboxInput:g},s.internals.register(s.checkbox.CheckboxSelector.INPUT,s.checkbox.CheckboxInput);const p={SEGMENTED:s.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:s.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:s.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:s.internals.ns.selector("segmented__legend")},m={ADDED:s.internals.ns.emission("segmented","added"),REMOVED:s.internals.ns.emission("segmented","removed")};class _ extends s.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(p.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(p.SEGMENTED_LEGEND),this.addAscent(m.ADDED,this.resize.bind(this)),this.addAscent(m.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${s.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const e=`${s.prefix}-segmented--vertical`,t=`${s.prefix}-segmented__legend--inline`;this.removeClass(e),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(e):this.removeClass(e)}}class b extends s.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(m.ADDED)}dispose(){this.ascend(m.REMOVED)}}s.segmented={SegmentedSelector:p,SegmentedEmission:m,SegmentedElement:b,Segmented:_},s.internals.register(s.segmented.SegmentedSelector.SEGMENTED,s.segmented.Segmented),s.internals.register(s.segmented.SegmentedSelector.SEGMENTED_ELEMENT,s.segmented.SegmentedElement);const E={BREADCRUMB:s.internals.ns.selector("breadcrumb"),BUTTON:s.internals.ns.selector("breadcrumb__button")};class T extends s.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const e=this;return Object.assign(super.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(s.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(s.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(s.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(s.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const e=this.links[0];e&&(e.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const e=this.links[0];e&&document.activeElement!==e&&this._focus()}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(E.BUTTON)))[0]}}s.breadcrumb={BreadcrumbSelector:E,Breadcrumb:T},s.internals.register(s.breadcrumb.BreadcrumbSelector.BREADCRUMB,s.breadcrumb.Breadcrumb);const S={TOOLTIP:s.internals.ns.selector("tooltip"),SHOWN:s.internals.ns.selector("tooltip--shown"),HIDDING:s.internals.ns.selector("tooltip--hidding"),BUTTON:s.internals.ns.selector("btn--tooltip")},A=1,f=2;class N extends s.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(S.BUTTON)){const e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);const t=this.mouseout.bind(this);this.listen("mouseout",t),this.placement.listen("mouseout",t)}this.addEmission(s.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(s.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(e){this.node.contains(e)||this.blur()}_keydown(e){if(e===s.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(e){this._state!==e&&(this.isShown=e>0,this._state=e)}focusIn(){this.state|=A}focusOut(){this.state&=~A}mouseover(){this.state|=f}mouseout(){this.state&=~f}}const C=t=>`${e}-${t}`;C.selector=(e,t)=>(void 0===t&&(t="."),`${t}${C(e)}`),(C.attr=e=>`data-${C(e)}`).selector=(e,t)=>{let s=C.attr(e);return void 0!==t&&(s+=`="${t}"`),`[${s}]`},C.event=e=>`${t}.${e}`,C.emission=(e,t)=>`emission:${e}.${t}`;const I={SHOW:C.event("show"),HIDE:C.event("hide")},D="hidden",L="shown",v="hiding";class R extends s.core.Placement{constructor(){super(s.core.PlacementMode.AUTO,[s.core.PlacementPosition.TOP,s.core.PlacementPosition.BOTTOM],[s.core.PlacementAlign.CENTER,s.core.PlacementAlign.START,s.core.PlacementAlign.END]),this.modifier="",this._state=D}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,N),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===v&&(this.removeClass(S.SHOWN),this.removeClass(S.HIDDING),this._state=D,this.isShown=!1)}get isShown(){return super.isShown}set isShown(e){if(this.isEnabled)switch(!0){case e:this._state=L,this.addClass(S.SHOWN),this.removeClass(S.HIDDING),this.dispatch(I.SHOW),super.isShown=!0;break;case this.isShown&&!e&&this._state===L:this._state=v,this.addClass(S.HIDDING);break;case this.isShown&&!e&&this._state===D:this.dispatch(I.HIDE),this.removeClass(S.HIDDING),super.isShown=!1}}render(){super.render(),this.rect=this.getRect();let e=this.referentRect.center-this.rect.center;const t=.5*this.rect.width-8;e<-t&&(e=-t),e>t&&(e=t),this.setProperty("--arrow-x",`${e.toFixed(2)}px`)}}s.tooltip={Tooltip:R,TooltipSelector:S,TooltipEvent:I},s.internals.register(s.tooltip.TooltipSelector.TOOLTIP,s.tooltip.Tooltip);class y extends s.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class O extends s.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,y),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const i=getComputedStyle(this.node,":before"),n=parseFloat(i.width);n>s&&(s=n),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const x={STATUS_LABEL:`${s.internals.ns.selector("toggle__label")}${s.internals.ns.attr.selector("checked-label")}${s.internals.ns.attr.selector("unchecked-label")}`};s.toggle={ToggleStatusLabel:O,ToggleSelector:x},s.internals.register(s.toggle.ToggleSelector.STATUS_LABEL,s.toggle.ToggleStatusLabel);const P=s.internals.ns.selector("sidemenu__item"),w=s.internals.ns.selector("collapse"),k={LIST:s.internals.ns.selector("sidemenu__list"),COLLAPSE:`${P} > ${w}, ${P} > *:not(${P}):not(${w}) > ${w}, ${P} > *:not(${P}):not(${w}) > *:not(${P}):not(${w}) > ${w}`,COLLAPSE_LEGACY:`${P} ${w}`,ITEM:s.internals.ns.selector("sidemenu__item"),BUTTON:s.internals.ns.selector("sidemenu__btn")};class G extends s.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(e){return super.validate(e)&&e.node.matches(s.internals.legacy.isLegacy?k.COLLAPSE_LEGACY:k.COLLAPSE)}}class M extends s.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(k.BUTTON)))[0]}}s.sidemenu={SidemenuList:G,SidemenuItem:M,SidemenuSelector:k},s.internals.register(s.sidemenu.SidemenuSelector.LIST,s.sidemenu.SidemenuList),s.internals.register(s.sidemenu.SidemenuSelector.ITEM,s.sidemenu.SidemenuItem);const $={MODAL:s.internals.ns.selector("modal"),SCROLL_DIVIDER:s.internals.ns.selector("scroll-divider"),BODY:s.internals.ns.selector("modal__body"),TITLE:s.internals.ns.selector("modal__title")};class H extends s.core.DisclosureButton{constructor(){super(s.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const U={CONCEALING_BACKDROP:s.internals.ns.attr("concealing-backdrop")};class W extends s.core.Disclosure{constructor(){super(s.core.DisclosureType.OPENED,$.MODAL,H,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(s.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===s.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(e){e.target===this.node&&"false"!==this.getAttribute(U.CONCEALING_BACKDROP)&&this.conceal()}disclose(e){return!!super.disclose(e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(e,t){return!!super.conceal(e,t)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(e){this._isDialog=e}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(e,t){const s=this.retrieveNodeId(e,t);this.warn(`add reference to ${t} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",s)}_ensureAccessibleName(){if(!this.isEnabled||this.isEnabled&&(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label")))return;this.warn("missing accessible name");const e=this.node.querySelector($.TITLE),t=this.primaryButtons[0];switch(!0){case null!==e:this._setAccessibleName(e,"title");break;case void 0!==t:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(t,"primary")}}}const B=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),F=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),z=(e,t)=>{if(!(e instanceof Element))return!1;const s=window.getComputedStyle(e);if(!s)return!1;if("hidden"===s.visibility)return!1;for(void 0===t&&(t=e);t.contains(e);){if("none"===s.display)return!1;e=e.parentElement}return!0};class V{constructor(e,t){this.element=null,this.activeElement=null,this.onTrap=e,this.onUntrap=t,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(e){this.trapped&&this.untrap(),this.element=e,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){z(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const e=this.focusables;e.length&&-1===e.indexOf(document.activeElement)&&e[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(e){for(const t of e.children)t!==this.element&&(t.contains(this.element)?this.stun(t):this.stunneds.push(new q(t)))}maintainFocus(e){if(!this.element.contains(e.target)){const t=this.focusables;if(0===t.length)return;const s=t[0];e.preventDefault(),s.focus()}}handle(e){if(9!==e.keyCode)return;const t=this.focusables;if(0===t.length)return;const s=t[0],i=t[t.length-1],n=t.indexOf(document.activeElement);e.shiftKey?!this.element.contains(document.activeElement)||n<1?(e.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||t[n-1].tabIndex>0)&&(e.preventDefault(),t[n-1].focus()):this.element.contains(document.activeElement)&&n!==t.length-1&&-1!==n?document.activeElement.tabIndex>0&&(e.preventDefault(),t[n+1].focus()):(e.preventDefault(),s.focus())}get focusables(){let e=s.internals.dom.querySelectorAllArray(this.element,B);const t=s.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(t.length){const s={};for(const e of t){const t=e.getAttribute("name");void 0===s[t]&&(s[t]=new K(t)),s[t].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||e.getAttribute("type")&&"radio"!==e.getAttribute("type").toLowerCase())return!0;const t=e.getAttribute("name");return s[t].keep(e)}))}const i=s.internals.dom.querySelectorAllArray(this.element,F);i.sort(((e,t)=>e.tabIndex-t.tabIndex));const n=e.filter((e=>-1===i.indexOf(e)));return i.concat(n).filter((e=>"-1"!==e.tabIndex&&z(e,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class q{constructor(e){this.element=e,this.inert=e.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class K{constructor(e){this.name=e,this.buttons=[]}push(e){this.buttons.push(e),(e===document.activeElement||e.checked||void 0===this.selected)&&(this.selected=e)}keep(e){return this.selected===e}}class X extends s.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new V}static get instanceClassName(){return"ModalsGroup"}apply(e,t){super.apply(e,t),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class Y extends s.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass($.SCROLL_DIVIDER):this.addClass($.SCROLL_DIVIDER):this.removeClass($.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(s.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}s.modal={Modal:W,ModalButton:H,ModalBody:Y,ModalsGroup:X,ModalSelector:$},s.internals.register(s.modal.ModalSelector.MODAL,s.modal.Modal),s.internals.register(s.modal.ModalSelector.BODY,s.modal.ModalBody),s.internals.register(s.core.RootSelector.ROOT,s.modal.ModalsGroup);const j={TOGGLE:s.internals.ns.emission("password","toggle"),ADJUST:s.internals.ns.emission("password","adjust")};class J extends s.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(j.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const e=getComputedStyle(this.node.parentNode);return parseInt(e.width)}get isChecked(){return this.node.checked}set isChecked(e){this._isChecked=e,this.ascend(j.TOGGLE,e)}handleClick(){this.isChecked=!this._isChecked}swapFont(e){this.ascend(j.ADJUST,this.width)}}class Q extends s.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(j.TOGGLE,this.toggle.bind(this)),this.addAscent(j.ADJUST,this.adjust.bind(this))}toggle(e){this.descend(j.TOGGLE,e)}adjust(e){this.descend(j.ADJUST,e)}}const Z={PASSWORD:s.internals.ns.selector("password"),INPUT:s.internals.ns.selector("password__input"),LABEL:s.internals.ns.selector("password__label"),TOOGLE:`${s.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class ee extends s.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(j.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(e){this.isRevealed=e,this.setAttribute("type",e?"text":"password")}get isRevealed(){return this._isRevealed}capslock(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(s.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(s.internals.ns.attr("capslock")))}set isRevealed(e){this._isRevealed=e,this.setAttribute("type",e?"text":"password")}}class te extends s.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(j.ADJUST,this.adjust.bind(this))}adjust(e){const t=Math.ceil(e/16);this.node.style.paddingRight=t+"rem"}}s.password={Password:Q,PasswordToggle:J,PasswordSelector:Z,PasswordInput:ee,PasswordLabel:te},s.internals.register(s.password.PasswordSelector.INPUT,s.password.PasswordInput),s.internals.register(s.password.PasswordSelector.PASSWORD,s.password.Password),s.internals.register(s.password.PasswordSelector.TOOGLE,s.password.PasswordToggle),s.internals.register(s.password.PasswordSelector.LABEL,s.password.PasswordLabel);const se=s.internals.ns.selector("nav__item"),ie=s.internals.ns.selector("collapse"),ne={NAVIGATION:s.internals.ns.selector("nav"),COLLAPSE:`${se} > ${ie}, ${se} > *:not(${se}):not(${ie}) > ${ie}, ${se} > *:not(${se}):not(${ie}) > *:not(${se}):not(${ie}) > ${ie}`,COLLAPSE_LEGACY:`${se} ${ie}`,ITEM:se,ITEM_RIGHT:`${se}--align-right`,MENU:s.internals.ns.selector("menu"),BUTTON:s.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:s.internals.ns.selector("translate__btn")};class re extends s.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(s.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(s.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(s.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(s.core.Breakpoints.LG)&&e.element.node.matches(ne.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,i=this.element.node.getBoundingClientRect().left;this.isRightAligned=i+s>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?s.internals.dom.addClass(this.element.node,ne.ITEM_RIGHT):s.internals.dom.removeClass(this.element.node,ne.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&(e.hasClass(ne.BUTTON)||e.hasClass(ne.TRANSLATE_BUTTON))))[0]}}const ae={NONE:-1,INSIDE:0,OUTSIDE:1};class oe extends s.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(s.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(s.internals.legacy.isLegacy?ne.COLLAPSE_LEGACY:ne.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(s.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?ae.INSIDE:ae.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(s.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(s.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case ae.OUTSIDE:this.index=-1;break;case ae.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=ae.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=e}get canUngroup(){return!this.isBreakpoint(s.core.Breakpoints.LG)}resize(){this.update()}}s.navigation={Navigation:oe,NavigationItem:re,NavigationMousePosition:ae,NavigationSelector:ne},s.internals.register(s.navigation.NavigationSelector.NAVIGATION,s.navigation.Navigation),s.internals.register(s.navigation.NavigationSelector.ITEM,s.navigation.NavigationItem);class le extends s.core.DisclosureButton{constructor(){super(s.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(e){super.handleClick(e),this.focus()}apply(e){super.apply(e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const he={TAB:s.internals.ns.selector("tabs__tab"),GROUP:s.internals.ns.selector("tabs"),PANEL:s.internals.ns.selector("tabs__panel"),LIST:s.internals.ns.selector("tabs__list"),SHADOW:s.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:s.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:s.internals.ns.selector("tabs__shadow--right"),PANEL_START:s.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:s.internals.ns.selector("tabs__panel--direction-end")},ce="direction-start",de="direction-end",ue="none";class ge extends s.core.Disclosure{constructor(){super(s.core.DisclosureType.SELECT,he.PANEL,le,"TabsGroup"),this._direction=ue,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(e){if(e!==this._direction){switch(this._direction){case ce:this.removeClass(he.PANEL_START);break;case de:this.removeClass(he.PANEL_END);break;case ue:break;default:return}switch(this._direction=e,this._direction){case ce:this.addClass(he.PANEL_START);break;case de:this.addClass(he.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(e){this._isPreventingTransition!==e&&(e?this.addClass(s.internals.motion.TransitionSelector.NONE):this.removeClass(s.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)}translate(e,t){this.isPreventingTransition=t,this.direction=e}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(e){return this.group&&this.group.list?super._electPrimaries(e).filter((e=>this.group.list.node.contains(e.node))):[]}}const pe="tab_keys_left",me="tab_keys_right",_e="tab_keys_home",be="tab_keys_end",Ee={PRESS_KEY:s.internals.ns.emission("tab","press_key"),LIST_HEIGHT:s.internals.ns.emission("tab","list_height")};class Te extends s.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(Ee.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(Ee.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(e=0){super.getIndex(e)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(e){this.listHeight=e}transitionend(e){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((e=>e.buttonHasFocus))}pressKey(e){switch(e){case pe:this.pressLeft();break;case me:this.pressRight();break;case _e:this.pressHome();break;case be:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let e=0;es.right&&this.node.scrollTo(i-s.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.apply())}apply(){this._isScrolling?(this.addClass(he.SHADOW),this.scroll()):(this.removeClass(he.SHADOW_RIGHT),this.removeClass(he.SHADOW_LEFT),this.removeClass(he.SHADOW))}scroll(){const e=Math.abs(this.node.scrollLeft),t=e<=16,s=this.node.scrollWidth-this.node.clientWidth-16,i=Math.abs(e)>=s,n="rtl"===getComputedStyle(this.node).direction,r=n?he.SHADOW_RIGHT:he.SHADOW_LEFT,a=n?he.SHADOW_LEFT:he.SHADOW_RIGHT;t?this.removeClass(r):this.addClass(r),i?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const e=this.getRect().height;this.setProperty("--tabs-list-height",`${e}px`),this.ascend(Ee.LIST_HEIGHT,e)}dispose(){this.isScrolling=!1}}s.tab={TabPanel:ge,TabButton:le,TabsGroup:Te,TabsList:Se,TabSelector:he,TabEmission:Ee},s.internals.register(s.tab.TabSelector.PANEL,s.tab.TabPanel),s.internals.register(s.tab.TabSelector.GROUP,s.tab.TabsGroup),s.internals.register(s.tab.TabSelector.LIST,s.tab.TabsList);const Ae={DISMISS:s.internals.ns.event("dismiss")};class fe extends s.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),s.mode){case s.Modes.ANGULAR:case s.Modes.REACT:case s.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(Ae.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${s.mode} mode, the api doesn't handle dom modification. An event ${Ae.DISMISS} is dispatched by the element to trigger the removal`)}}const Ne={PRESSABLE:`${s.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${s.internals.ns.selector("tag--dismiss")}`};s.tag={TagDismissible:fe,TagSelector:Ne,TagEvent:Ae},s.internals.register(s.tag.TagSelector.PRESSABLE,s.core.Toggle),s.internals.register(s.tag.TagSelector.DISMISSIBLE,s.tag.TagDismissible);const Ce=s.internals.ns.selector("transcription"),Ie={TRANSCRIPTION:Ce,BUTTON:`${Ce}__btn`};class De extends s.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(Ie.BUTTON)))[0]}}s.transcription={Transcription:De,TranscriptionSelector:Ie},s.internals.register(s.transcription.TranscriptionSelector.TRANSCRIPTION,s.transcription.Transcription);class Le extends s.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(s.core.AssessEmission.UPDATE,(e=>{this.descend(s.core.AssessEmission.UPDATE,e)})),this.addAscent(s.core.AssessEmission.ADDED,(()=>{this.descend(s.core.AssessEmission.ADDED)}))}}const ve={DOWNLOAD:s.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${s.internals.ns.selector("tile--download")} ${s.internals.ns.selector("tile__detail")}`};s.tile={TileSelector:ve,TileDownload:Le},s.internals.register(s.tile.TileSelector.DOWNLOAD,s.tile.TileDownload),s.internals.register(s.tile.TileSelector.DOWNLOAD_DETAIL,s.core.AssessDetail);const Re={RANGE:s.internals.ns.selector("range"),RANGE_SM:s.internals.ns.selector("range--sm"),RANGE_STEP:s.internals.ns.selector("range--step"),RANGE_DOUBLE:s.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:s.internals.ns.selector("range--double")+s.internals.ns.selector("range--step"),RANGE_INPUT:s.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${s.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:s.internals.ns.selector("range__output"),RANGE_MIN:s.internals.ns.selector("range__min"),RANGE_MAX:s.internals.ns.selector("range__max"),RANGE_PREFIX:s.internals.ns.attr("prefix"),RANGE_SUFFIX:s.internals.ns.attr("suffix")},ye={VALUE:s.internals.ns.emission("range","value"),VALUE2:s.internals.ns.emission("range","value2"),OUTPUT:s.internals.ns.emission("range","output"),CONSTRAINTS:s.internals.ns.emission("range","constraints"),MIN:s.internals.ns.emission("range","min"),MAX:s.internals.ns.emission("range","max"),STEP:s.internals.ns.emission("range","step"),PREFIX:s.internals.ns.emission("range","prefix"),SUFFIX:s.internals.ns.emission("range","suffix"),DISABLED:s.internals.ns.emission("range","disabled"),ENABLE_POINTER:s.internals.ns.emission("range","enable_pointer")};class Oe{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(e){e&&(this._prefix=e._prefix,this._suffix=e._suffix,this._width=e.width,this.setConstraints(e._constraints),this.value=e.value,this.update())}setPrefix(e){this._prefix=null!==e?e:""}setSuffix(e){this._suffix=null!==e?e:""}_decorate(e){return`${this._prefix}${e}${this._suffix}`}get width(){return this._width}set width(e){this._width=e}get isSm(){return this._isSm}set isSm(e){this._isSm!==e&&(this._isSm=e,this.setThumbSize(e?16:24),this.update())}setThumbSize(e,t=1){this._thumbSize=e,this._innerPadding=e*t}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(e){this._value=e}get outputX(){return this._outputX}setConstraints(e){this._constraints=e,this._min=e.min,this._max=e.max,this._step=e.step,this._rangeWidth=e.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(e){return(e-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const e=this._getRatio(this._value);this._translateX=e*this._width,this._centerPercent=100*e,this._progress={right:`${(this._innerWidth*e+.5*this._innerPadding).toFixed(2)}px`}}}class xe extends Oe{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class Pe extends Oe{get value2(){return this._value}set value2(e){this._value2!==e&&(this._value2=e,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(e){super.setThumbSize(e,2)}_update(){super._update();const e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;const t=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*t+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class we extends Pe{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const ke="step",Ge="double",Me="double-step",$e="default";class He extends s.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(ye.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(ye.VALUE,this.setValue.bind(this)),this.addAscent(ye.VALUE2,this.setValue2.bind(this)),this.getAttribute(Re.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(Re.RANGE_PREFIX)),this.getAttribute(Re.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(Re.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(Re.RANGE_DOUBLE_STEP):case this.matches(Re.RANGE_DOUBLE):this.type=Ge;break;case this.matches(Re.RANGE_STEP):this.type=ke;break;default:this.type=$e}}set type(e){if(this._type===e)return;this._type=e;const t=this._model;switch(this._type){case Me:this._model=new we;break;case Ge:this._model=new Pe;break;case ke:this._model=new xe;break;default:this._model=new Oe}this._model.configure(t)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(Re.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(e){switch(this._model.value=e,this._type){case Me:case Ge:this.descend(ye.VALUE,e)}this.update()}setValue2(e){this._model.value2=e,this.descend(ye.VALUE2,e),this.update()}setConstraints(e){this._model.setConstraints(e),this.update(),this.descend(ye.CONSTRAINTS,e)}setPrefix(e){this._model.setPrefix(e),this.update()}setSuffix(e){this._model.setSuffix(e),this.update()}mutate(e){switch(!0){case e.includes("class"):this._retrieveType(),this._retrieveSize();break;case e.includes(Re.RANGE_PREFIX):case e.includes(Re.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(Re.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(Re.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(ye.OUTPUT,this._model.output),this.descend(ye.MIN,this._model.textMin),this.descend(ye.MAX,this._model.textMax);const e=this._model.progress;e.left?this.style.setProperty("--progress-left",e.left):this.style.removeProperty("--progress-left"),e.right?(this.style.setProperty("--progress-right",e.right),this.isLegacy&&e.left&&(this.style.setProperty("background-position-x",e.left),this.style.setProperty("background-size",`${parseFloat(e.right)-parseFloat(e.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(e){if(this._type!==Ge&&this._type!==Me)return;const t=e.x-this.getRect().left;this.descend(ye.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(ye.CONSTRAINTS,new Ue(this.node)),this.ascend(ye.DISABLED,this.node.disabled)})),this.addDescent(ye.VALUE2,this.setValue.bind(this))}get proxy(){const e=this,t={get value(){return e.value},set value(t){e.value=t}};return s.internals.property.completeAssign(super.proxy,t)}_enablePointer(e){const t=e===this._pointerId;this._isPointerEnabled!==t&&(this._isPointerEnabled=t,t?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}get value(){return parseFloat(this.node.value)}set value(e){const t=parseFloat(e);t!==this._value&&(this._value=t,this.node.value=t,this.dispatch("change"),this.change())}setValue(e){parseFloat(this.node.value)>e&&(this.value=e)}change(){this.ascend(ye.VALUE,this._value)}render(){const e=parseFloat(this.node.value);e!==this._value&&(this.value=e)}mutate(e){e.includes("disabled")&&this.ascend(ye.DISABLED,this.node.disabled),(e.includes("min")||e.includes("max")||e.includes("step"))&&(this.ascend(ye.CONSTRAINTS,new Ue(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class Be extends s.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(ye.OUTPUT,this.change.bind(this))}change(e){this.node.innerText=e.text,this.node.style.transform=e.transform}}class Fe extends s.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(Re.RANGE_MIN):this.addDescent(ye.MIN,this.change.bind(this));break;case this.matches(Re.RANGE_MAX):this.addDescent(ye.MAX,this.change.bind(this))}}change(e){this.node.innerText=e}}s.range={Range:He,RangeInput:We,RangeInput2:class extends We{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(ye.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(ye.VALUE,this.setValue.bind(this))}setValue(e){parseFloat(this.node.value)e.replace('id="',"").replace('"',"")));const a=["aria-controls","aria-describedby","aria-labelledby"];let o=i.replace(/id="(.*?)"/gm,`id="$1${t}"`);for(const e of a){const s=i.match(new RegExp(`${e}="(.*?)"`,"gm"));if(s)for(const i of s){const s=i.replace(`${e}="`,"").replace('"',"");r.includes(s)&&(o=o.replace(`${e}="${s}"`,`${e}="${s+t}"`))}}if(o!==n)switch(s.mode){case s.Modes.ANGULAR:case s.Modes.REACT:case s.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${s.header.doc}`);break;default:this.menuLinks.innerHTML=o}}}class qe extends s.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.storeAria(),this.isResizing=!0}resize(){this.isBreakpoint(s.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.restoreAria(),this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.storeAria(),this.unlistenClick({capture:!0}))}storeAria(){this.hasAttribute("aria-labelledby")&&(this._ariaLabelledby=this.getAttribute("aria-labelledby")),this.hasAttribute("aria-label")&&(this._ariaLabel=this.getAttribute("aria-label")),this.removeAttribute("aria-labelledby"),this.removeAttribute("aria-label")}restoreAria(){this._ariaLabelledby&&this.setAttribute("aria-labelledby",this._ariaLabelledby),this._ariaLabel&&this.setAttribute("aria-label",this._ariaLabel)}handleClick(e){if(e.target.matches("a, button")&&!e.target.matches("[aria-controls]")&&!e.target.matches(s.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}s.header={HeaderLinks:Ve,HeaderModal:qe,HeaderSelector:ze,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},s.internals.register(s.header.HeaderSelector.TOOLS_LINKS,s.header.HeaderLinks),s.internals.register(s.header.HeaderSelector.MODALS,s.header.HeaderModal);const Ke={DISPLAY:s.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${s.internals.ns("radios-theme")}"]`,FIELDSET:s.internals.ns.selector("fieldset")};class Xe extends s.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(Ke.RADIO_BUTTONS),s.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(s.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(s.scheme.SchemeEmission.ASK)}else this.querySelector(Ke.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e&&s.scheme)switch(e){case s.scheme.SchemeValue.SYSTEM:case s.scheme.SchemeValue.LIGHT:case s.scheme.SchemeValue.DARK:this._scheme=e;for(const t of this.radios)t.checked=t.value===e;this.ascend(s.scheme.SchemeEmission.SCHEME,e)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}s.display={Display:Xe,DisplaySelector:Ke},s.internals.register(s.display.DisplaySelector.DISPLAY,s.display.Display);const Ye={SCROLLABLE:s.internals.ns.emission("table","scrollable"),CHANGE:s.internals.ns.emission("table","change"),CAPTION_HEIGHT:s.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:s.internals.ns.emission("table","captionwidth")};class je extends s.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(Ye.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class Je extends s.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(Ye.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(Ye.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const Qe={TABLE:s.internals.ns.selector("table"),TABLE_WRAPPER:[`${s.internals.ns.selector("table")} ${s.internals.ns.selector("table__wrapper")}`],SHADOW:s.internals.ns.selector("table__shadow"),SHADOW_LEFT:s.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:s.internals.ns.selector("table__shadow--right"),ELEMENT:[`${s.internals.ns.selector("table")}:not(${s.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${s.internals.ns.selector("table")} table caption`,ROW:`${s.internals.ns.selector("table")} tbody tr`,COL:`${s.internals.ns.selector("table")} thead th`};class Ze extends s.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(Qe.SHADOW),this.scroll()):(this.removeClass(Qe.SHADOW),this.removeClass(Qe.SHADOW_LEFT),this.removeClass(Qe.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),n=i?Qe.SHADOW_RIGHT:Qe.SHADOW_LEFT,r=i?Qe.SHADOW_LEFT:Qe.SHADOW_RIGHT;e?this.removeClass(n):this.addClass(n),s?this.removeClass(r):this.addClass(r)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class et extends s.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(Ye.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}class tt extends s.core.Instance{static get instanceClassName(){return"TableRow"}init(){s.checkbox&&(this.addAscent(u.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(u.RETRIEVE))}_handleCheckboxChange(e){"row-select"!==e.name&&"true"!==e.getAttribute(s.internals.ns.attr("row-select"))||(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}s.table={Table:je,TableWrapper:Je,TableElement:Ze,TableCaption:et,TableSelector:Qe,TableRow:tt},s.internals.register(s.table.TableSelector.TABLE,s.table.Table),s.internals.register(s.table.TableSelector.TABLE_WRAPPER,s.table.TableWrapper),s.internals.register(s.table.TableSelector.ELEMENT,s.table.TableElement),s.internals.register(s.table.TableSelector.CAPTION,s.table.TableCaption),s.internals.register(s.table.TableSelector.ROW,s.table.TableRow); diff --git a/dsfr/static/dsfr/dist/component/component.nomodule.min.js b/dsfr/static/dsfr/dist/component/component.nomodule.min.js index a41fbf3fb..0b14d6374 100644 --- a/dsfr/static/dsfr/dist/component/component.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/component.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t="fr",e="dsfr",i=window[e],n=i.internals.ns.selector("accordion"),s=i.internals.ns.selector("collapse"),o={GROUP:i.internals.ns.selector("accordions-group"),ACCORDION:n,COLLAPSE:n+" > "+s+", "+n+" > *:not("+n+"):not("+s+") > "+s+", "+n+" > *:not("+n+"):not("+s+") > *:not("+n+"):not("+s+") > "+s,COLLAPSE_LEGACY:n+" "+s,BUTTON:n+"__btn"},r=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Accordion"},i.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(o.BUTTON)}))[0]},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),a=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var n=e.node.matches(i.internals.legacy.isLegacy?o.COLLAPSE_LEGACY:o.COLLAPSE);return t.prototype.validate.call(this,e)&&n},Object.defineProperties(e,n),e}(i.core.CollapsesGroup);i.accordion={Accordion:r,AccordionSelector:o,AccordionsGroup:a},i.internals.register(i.accordion.AccordionSelector.GROUP,i.accordion.AccordionsGroup),i.internals.register(i.accordion.AccordionSelector.ACCORDION,i.accordion.Accordion);var c={EQUISIZED_BUTTON:i.internals.ns.selector("btns-group--equisized")+" "+i.internals.ns.selector("btn"),EQUISIZED_GROUP:i.internals.ns.selector("btns-group--equisized")};i.button={ButtonSelector:c},i.internals.register(i.button.ButtonSelector.EQUISIZED_BUTTON,i.core.Equisized),i.internals.register(i.button.ButtonSelector.EQUISIZED_GROUP,i.core.EquisizedsGroup);var l=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CardDownload"},e.prototype.init=function(){var t=this;this.addAscent(i.core.AssessEmission.UPDATE,(function(e){t.descend(i.core.AssessEmission.UPDATE,e)})),this.addAscent(i.core.AssessEmission.ADDED,(function(){t.descend(i.core.AssessEmission.ADDED)}))},Object.defineProperties(e,n),e}(i.core.Instance),p={DOWNLOAD:i.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:i.internals.ns.selector("card--download")+" "+i.internals.ns.selector("card__end")+" "+i.internals.ns.selector("card__detail")};i.card={CardSelector:p,CardDownload:l},i.internals.register(i.card.CardSelector.DOWNLOAD,i.card.CardDownload),i.internals.register(i.card.CardSelector.DOWNLOAD_DETAIL,i.core.AssessDetail);var h={INPUT:i.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},u={CHANGE:i.internals.ns.emission("checkbox","change"),RETRIEVE:i.internals.ns.emission("checkbox","retrieve")},d=function(t){function e(){t.call(this),this._handlingChange=this.handleChange.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CheckboxInput"},e.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(u.RETRIEVE,this._handlingChange),this.handleChange()},i.isChecked.get=function(){return this.node.checked},e.prototype.handleChange=function(){this.ascend(u.CHANGE,this.node)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance);i.checkbox={CheckboxSelector:h,CheckboxEmission:u,CheckboxInput:d},i.internals.register(i.checkbox.CheckboxSelector.INPUT,i.checkbox.CheckboxInput);var f={SEGMENTED:i.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:i.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:i.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:i.internals.ns.selector("segmented__legend")},g={ADDED:i.internals.ns.emission("segmented","added"),REMOVED:i.internals.ns.emission("segmented","removed")},_=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Segmented"},e.prototype.init=function(){this.elements=this.node.querySelector(f.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(f.SEGMENTED_LEGEND),this.addAscent(g.ADDED,this.resize.bind(this)),this.addAscent(g.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(i.prefix+"-segmented__legend--inline"),this.isResizing=!0},e.prototype.resize=function(){var t=i.prefix+"-segmented--vertical",e=i.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(e),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(e)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(e,n),e}(i.core.Instance),b=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"SegmentedElement"},e.prototype.init=function(){this.ascend(g.ADDED)},e.prototype.dispose=function(){this.ascend(g.REMOVED)},Object.defineProperties(e,i),e}(i.core.Instance);i.segmented={SegmentedSelector:f,SegmentedEmission:g,SegmentedElement:b,Segmented:_},i.internals.register(i.segmented.SegmentedSelector.SEGMENTED,i.segmented.Segmented),i.internals.register(i.segmented.SegmentedSelector.SEGMENTED_ELEMENT,i.segmented.SegmentedElement);var m={BREADCRUMB:i.internals.ns.selector("breadcrumb"),BUTTON:i.internals.ns.selector("breadcrumb__button")},y=function(t){function e(){t.call(this),this.count=0,this.focusing=this.focus.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Breadcrumb"},e.prototype.init=function(){this.getCollapse(),this.isResizing=!0},n.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})},e.prototype.getCollapse=function(){var t=this.collapse;t?t.listen(i.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(i.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},e.prototype.resize=function(){var t=this.collapse,e=this.links;t&&e.length&&(this.isBreakpoint(i.core.Breakpoints.MD)?t.buttonHasFocus&&e[0].focus():e.indexOf(document.activeElement)>-1&&t.focus())},n.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},n.collapse.get=function(){return this.element.getDescendantInstances(i.core.Collapse.instanceClassName,null,!0)[0]},e.prototype.focus=function(){this.count=0,this._focus()},e.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},e.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},n.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(m.BUTTON)}))[0]},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance);i.breadcrumb={BreadcrumbSelector:m,Breadcrumb:y},i.internals.register(i.breadcrumb.BreadcrumbSelector.BREADCRUMB,i.breadcrumb.Breadcrumb);var E={TOOLTIP:i.internals.ns.selector("tooltip"),SHOWN:i.internals.ns.selector("tooltip--shown"),BUTTON:i.internals.ns.selector("btn--tooltip")},v=1,T=2,S=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={state:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(E.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var n=this.mouseout.bind(this);this.listen("mouseout",n),this.placement.listen("mouseout",n)}this.addEmission(i.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(i.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===i.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},n.state.get=function(){return this._state},n.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=v},e.prototype.focusOut=function(){this.state&=~v},e.prototype.mouseover=function(){this.state|=T},e.prototype.mouseout=function(){this.state&=~T},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.PlacementReferent),A=function(e){return t+"-"+e};A.selector=function(t,e){return void 0===e&&(e="."),""+e+A(t)},(A.attr=function(t){return"data-"+A(t)}).selector=function(t,e){var i=A.attr(t);return void 0!==e&&(i+='="'+e+'"'),"["+i+"]"},A.event=function(t){return e+"."+t},A.emission=function(t,e){return"emission:"+t+"."+e};var O={SHOW:A.event("show"),HIDE:A.event("hide")},N="hidden",C="shown",P="hiding",I=function(t){function e(){t.call(this,i.core.PlacementMode.AUTO,[i.core.PlacementPosition.TOP,i.core.PlacementPosition.BOTTOM],[i.core.PlacementAlign.CENTER,i.core.PlacementAlign.START,i.core.PlacementAlign.END]),this.modifier="",this._state=N}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isShown:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',S),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===P&&(this._state=N,this.isShown=!1)},n.isShown.get=function(){return t.prototype.isShown},n.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=C,this.addClass(E.SHOWN),this.dispatch(O.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===C:this._state=P,this.removeClass(E.SHOWN);break;case this.isShown&&!e&&this._state===N:this.dispatch(O.HIDE),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this);var e=this.referentRect.center-this.rect.center,i=.5*this.rect.width-8;e<-i&&(e=-i),e>i&&(e=i),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Placement);i.tooltip={Tooltip:I,TooltipSelector:E,TooltipEvent:O},i.internals.register(i.tooltip.TooltipSelector.TOOLTIP,i.tooltip.Tooltip);var L=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},i.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),D=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0},input:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleStatusLabel"},e.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',L),this.update(),this.isSwappingFont=!0},i.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},i.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},e.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),i=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),s=parseFloat(n.width);s>i&&(i=s),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",i/16+"rem")},e.prototype.swapFont=function(t){this.update()},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),R={STATUS_LABEL:""+i.internals.ns.selector("toggle__label")+i.internals.ns.attr.selector("checked-label")+i.internals.ns.attr.selector("unchecked-label")};i.toggle={ToggleStatusLabel:D,ToggleSelector:R},i.internals.register(i.toggle.ToggleSelector.STATUS_LABEL,i.toggle.ToggleStatusLabel);var w=i.internals.ns.selector("sidemenu__item"),x=i.internals.ns.selector("collapse"),k={LIST:i.internals.ns.selector("sidemenu__list"),COLLAPSE:w+" > "+x+", "+w+" > *:not("+w+"):not("+x+") > "+x+", "+w+" > *:not("+w+"):not("+x+") > *:not("+w+"):not("+x+") > "+x,COLLAPSE_LEGACY:w+" "+x,ITEM:i.internals.ns.selector("sidemenu__item"),BUTTON:i.internals.ns.selector("sidemenu__btn")},j=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuList"},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.node.matches(i.internals.legacy.isLegacy?k.COLLAPSE_LEGACY:k.COLLAPSE)},Object.defineProperties(e,n),e}(i.core.CollapsesGroup),M=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuItem"},i.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(k.BUTTON)}))[0]},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance);i.sidemenu={SidemenuList:j,SidemenuItem:M,SidemenuSelector:k},i.internals.register(i.sidemenu.SidemenuSelector.LIST,i.sidemenu.SidemenuList),i.internals.register(i.sidemenu.SidemenuSelector.ITEM,i.sidemenu.SidemenuItem);var G={MODAL:i.internals.ns.selector("modal"),SCROLL_DIVIDER:i.internals.ns.selector("scroll-divider"),BODY:i.internals.ns.selector("modal__body"),TITLE:i.internals.ns.selector("modal__title")},H=function(t){function e(){t.call(this,i.core.DisclosureType.OPENED)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(e,n),e}(i.core.DisclosureButton),U={CONCEALING_BACKDROP:i.internals.ns.attr("concealing-backdrop")},W=function(t){function e(){t.call(this,i.core.DisclosureType.OPENED,G.MODAL,H,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={body:{configurable:!0},isDialog:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Modal"},e.prototype.init=function(){t.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(i.core.RootEmission.KEYDOWN,this._keydown.bind(this))},e.prototype._keydown=function(t){if(t===i.core.KeyCodes.ESCAPE)this._escape()},e.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},e.prototype.retrieved=function(){this._ensureAccessibleName()},n.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},e.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(U.CONCEALING_BACKDROP)&&this.conceal()},e.prototype.disclose=function(e){return!!t.prototype.disclose.call(this,e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},e.prototype.conceal=function(e,i){return!!t.prototype.conceal.call(this,e,i)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},n.isDialog.get=function(){return this._isDialog},n.isDialog.set=function(t){this._isDialog=t},e.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},e.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},e.prototype._setAccessibleName=function(t,e){var i=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",i)},e.prototype._ensureAccessibleName=function(){if(!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label")){this.warn("missing accessible name");var t=this.node.querySelector(G.TITLE),e=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==e:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(e,"primary")}}},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Disclosure),B=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),F=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),z=function(t,e){if(!(t instanceof Element))return!1;var i=window.getComputedStyle(t);if(!i)return!1;if("hidden"===i.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===i.display)return!1;t=t.parentElement}return!0},V=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},q={trapped:{configurable:!0},focusables:{configurable:!0}};q.trapped.get=function(){return null!==this.element},V.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},V.prototype.wait=function(){z(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},V.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},V.prototype.stun=function(t){for(var e=0,i=t.children;e0||e[s-1].tabIndex>0)&&(t.preventDefault(),e[s-1].focus()):this.element.contains(document.activeElement)&&s!==e.length-1&&-1!==s?document.activeElement.tabIndex>0&&(t.preventDefault(),e[s+1].focus()):(t.preventDefault(),i.focus())}}},q.focusables.get=function(){var t=this,e=i.internals.dom.querySelectorAllArray(this.element,B),n=i.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(n.length){for(var s={},o=0,r=n;othis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(G.SCROLL_DIVIDER):this.addClass(G.SCROLL_DIVIDER):this.removeClass(G.SCROLL_DIVIDER)},e.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},e.prototype.adjust=function(){var t=32*(this.isBreakpoint(i.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-t+"px":this.style.setProperty("--modal-max-height",window.innerHeight-t+"px"),this.divide()},Object.defineProperties(e,n),e}(i.core.Instance);i.modal={Modal:W,ModalButton:H,ModalBody:J,ModalsGroup:Y,ModalSelector:G},i.internals.register(i.modal.ModalSelector.MODAL,i.modal.Modal),i.internals.register(i.modal.ModalSelector.BODY,i.modal.ModalBody),i.internals.register(i.core.RootSelector.ROOT,i.modal.ModalsGroup);var Q={TOGGLE:i.internals.ns.emission("password","toggle"),ADJUST:i.internals.ns.emission("password","adjust")},Z=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},e.prototype.init=function(){this.listenClick(),this.ascend(Q.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},i.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},i.isChecked.get=function(){return this.node.checked},i.isChecked.set=function(t){this._isChecked=t,this.ascend(Q.TOGGLE,t)},e.prototype.handleClick=function(){this.isChecked=!this._isChecked},e.prototype.swapFont=function(t){this.ascend(Q.ADJUST,this.width)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),$=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Password"},e.prototype.init=function(){this.addAscent(Q.TOGGLE,this.toggle.bind(this)),this.addAscent(Q.ADJUST,this.adjust.bind(this))},e.prototype.toggle=function(t){this.descend(Q.TOGGLE,t)},e.prototype.adjust=function(t){this.descend(Q.ADJUST,t)},Object.defineProperties(e,i),e}(i.core.Instance),tt={PASSWORD:i.internals.ns.selector("password"),INPUT:i.internals.ns.selector("password__input"),LABEL:i.internals.ns.selector("password__label"),TOOGLE:i.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},et=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isRevealed:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"PasswordInput"},e.prototype.init=function(){this.addDescent(Q.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},e.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},n.isRevealed.get=function(){return this._isRevealed},e.prototype.capslock=function(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(i.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(i.internals.ns.attr("capslock")))},n.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance),it=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"PasswordLabel"},e.prototype.init=function(){this.addDescent(Q.ADJUST,this.adjust.bind(this))},e.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(e,i),e}(i.core.Instance);i.password={Password:$,PasswordToggle:Z,PasswordSelector:tt,PasswordInput:et,PasswordLabel:it},i.internals.register(i.password.PasswordSelector.INPUT,i.password.PasswordInput),i.internals.register(i.password.PasswordSelector.PASSWORD,i.password.Password),i.internals.register(i.password.PasswordSelector.TOOGLE,i.password.PasswordToggle),i.internals.register(i.password.PasswordSelector.LABEL,i.password.PasswordLabel);var nt=i.internals.ns.selector("nav__item"),st=i.internals.ns.selector("collapse"),ot={NAVIGATION:i.internals.ns.selector("nav"),COLLAPSE:nt+" > "+st+", "+nt+" > *:not("+nt+"):not("+st+") > "+st+", "+nt+" > *:not("+nt+"):not("+st+") > *:not("+nt+"):not("+st+") > "+st,COLLAPSE_LEGACY:nt+" "+st,ITEM:nt,ITEM_RIGHT:nt+"--align-right",MENU:i.internals.ns.selector("menu"),BUTTON:i.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:i.internals.ns.selector("translate__btn")},rt=function(t){function e(){t.call(this),this._isRightAligned=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"NavigationItem"},e.prototype.init=function(){this.addAscent(i.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(i.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},e.prototype.resize=function(){this.calculate()},e.prototype.calculate=function(){var t=this.element.getDescendantInstances(i.core.Collapse.instanceClassName,null,!0)[0];if(t&&this.isBreakpoint(i.core.Breakpoints.LG)&&t.element.node.matches(ot.MENU)){var e=this.element.node.parentElement.getBoundingClientRect().right,n=t.element.node.getBoundingClientRect().width,s=this.element.node.getBoundingClientRect().left;this.isRightAligned=s+n>e}else this.isRightAligned=!1},n.isRightAligned.get=function(){return this._isRightAligned},n.isRightAligned.set=function(t){this._isRightAligned!==t&&(this._isRightAligned=t,t?i.internals.dom.addClass(this.element.node,ot.ITEM_RIGHT):i.internals.dom.removeClass(this.element.node,ot.ITEM_RIGHT))},n.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(ot.BUTTON)||t.hasClass(ot.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance),at={NONE:-1,INSIDE:0,OUTSIDE:1},ct=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={index:{configurable:!0},canUngroup:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Navigation"},e.prototype.init=function(){t.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(i.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.element.node.matches(i.internals.legacy.isLegacy?ot.COLLAPSE_LEGACY:ot.COLLAPSE)},e.prototype.handleMouseDown=function(t){this.isBreakpoint(i.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(t.target)?at.INSIDE:at.OUTSIDE,this.requestPosition())},e.prototype.handleClick=function(t){!t.target.matches("a, button")||t.target.matches("[aria-controls]")||t.target.matches(i.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},e.prototype._handleRootClick=function(t){this.isBreakpoint(i.core.Breakpoints.LG)&&(this.node.contains(t)||(this.out=!0,this.requestPosition()))},e.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},e.prototype.getPosition=function(){if(this.out)switch(this.position){case at.OUTSIDE:this.index=-1;break;case at.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},e.prototype.requested=function(){this.position=at.NONE,this.out=!1,this.isRequesting=!1},n.index.get=function(){return t.prototype.index},n.index.set=function(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},n.canUngroup.get=function(){return!this.isBreakpoint(i.core.Breakpoints.LG)},e.prototype.resize=function(){this.update()},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.CollapsesGroup);i.navigation={Navigation:ct,NavigationItem:rt,NavigationMousePosition:at,NavigationSelector:ot},i.internals.register(i.navigation.NavigationSelector.NAVIGATION,i.navigation.Navigation),i.internals.register(i.navigation.NavigationSelector.ITEM,i.navigation.NavigationItem);var lt=function(t){function e(){t.call(this,i.core.DisclosureType.SELECT)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={list:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TabButton"},e.prototype.handleClick=function(e){t.prototype.handleClick.call(this,e),this.focus()},e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))},n.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.DisclosureButton),pt={TAB:i.internals.ns.selector("tabs__tab"),GROUP:i.internals.ns.selector("tabs"),PANEL:i.internals.ns.selector("tabs__panel"),LIST:i.internals.ns.selector("tabs__list"),SHADOW:i.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:i.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:i.internals.ns.selector("tabs__shadow--right"),PANEL_START:i.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:i.internals.ns.selector("tabs__panel--direction-end")},ht="direction-start",ut="direction-end",dt="none",ft=function(t){function e(){t.call(this,i.core.DisclosureType.SELECT,pt.PANEL,lt,"TabsGroup"),this._direction=dt,this._isPreventingTransition=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TabPanel"},n.direction.get=function(){return this._direction},n.direction.set=function(t){if(t!==this._direction){switch(this._direction){case ht:this.removeClass(pt.PANEL_START);break;case ut:this.removeClass(pt.PANEL_END);break;case dt:break;default:return}switch(this._direction=t,this._direction){case ht:this.addClass(pt.PANEL_START);break;case ut:this.addClass(pt.PANEL_END)}}},n.isPreventingTransition.get=function(){return this._isPreventingTransition},n.isPreventingTransition.set=function(t){this._isPreventingTransition!==t&&(t?this.addClass(i.internals.motion.TransitionSelector.NONE):this.removeClass(i.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)},e.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},e.prototype.reset=function(){this.group&&this.group.retrieve(!0)},e.prototype._electPrimaries=function(e){var i=this;return this.group&&this.group.list?t.prototype._electPrimaries.call(this,e).filter((function(t){return i.group.list.node.contains(t.node)})):[]},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Disclosure),gt="tab_keys_left",_t="tab_keys_right",bt="tab_keys_home",mt="tab_keys_end",yt={PRESS_KEY:i.internals.ns.emission("tab","press_key"),LIST_HEIGHT:i.internals.ns.emission("tab","list_height")},Et=function(t){function e(){t.call(this,"TabPanel")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TabsGroup"},e.prototype.init=function(){t.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(yt.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(yt.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},e.prototype.getIndex=function(e){void 0===e&&(e=0),t.prototype.getIndex.call(this,e)},n.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},e.prototype.setListHeight=function(t){this.listHeight=t},e.prototype.transitionend=function(t){this.isPreventingTransition=!0},n.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},e.prototype.pressKey=function(t){switch(t){case gt:this.pressLeft();break;case _t:this.pressRight();break;case bt:this.pressHome();break;case mt:this.pressEnd()}},e.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},e.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},e.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},e.prototype.focus=function(){this.current&&this.current.focus()},e.prototype.apply=function(){for(var t=0;ti.right&&this.node.scrollTo(n-i.right+e.right+16,0)},n.isScrolling.get=function(){return this._isScrolling},n.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},e.prototype.apply=function(){this._isScrolling?(this.addClass(pt.SHADOW),this.scroll()):(this.removeClass(pt.SHADOW_RIGHT),this.removeClass(pt.SHADOW_LEFT),this.removeClass(pt.SHADOW))},e.prototype.scroll=function(){var t=this.node.scrollLeft,e=t<=16,i=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=i,s="rtl"===document.documentElement.getAttribute("dir"),o=s?pt.SHADOW_RIGHT:pt.SHADOW_LEFT,r=s?pt.SHADOW_LEFT:pt.SHADOW_RIGHT;e?this.removeClass(o):this.addClass(o),n?this.removeClass(r):this.addClass(r)},e.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(yt.LIST_HEIGHT,t)},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance);i.tab={TabPanel:ft,TabButton:lt,TabsGroup:Et,TabsList:vt,TabSelector:pt,TabEmission:yt},i.internals.register(i.tab.TabSelector.PANEL,i.tab.TabPanel),i.internals.register(i.tab.TabSelector.GROUP,i.tab.TabsGroup),i.internals.register(i.tab.TabSelector.LIST,i.tab.TabsList);var Tt={DISMISS:i.internals.ns.event("dismiss")},St=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TagDismissible"},e.prototype.init=function(){this.listenClick()},e.prototype.handleClick=function(){switch(this.focusClosest(),i.mode){case i.Modes.ANGULAR:case i.Modes.REACT:case i.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(Tt.DISMISS)},e.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+i.mode+" mode, the api doesn't handle dom modification. An event "+Tt.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(e,n),e}(i.core.Instance),At={PRESSABLE:i.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+i.internals.ns.selector("tag--dismiss")};i.tag={TagDismissible:St,TagSelector:At,TagEvent:Tt},i.internals.register(i.tag.TagSelector.PRESSABLE,i.core.Toggle),i.internals.register(i.tag.TagSelector.DISMISSIBLE,i.tag.TagDismissible);var Ot=i.internals.ns.selector("transcription"),Nt={TRANSCRIPTION:Ot,BUTTON:Ot+"__btn"},Ct=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Transcription"},i.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Nt.BUTTON)}))[0]},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance);i.transcription={Transcription:Ct,TranscriptionSelector:Nt},i.internals.register(i.transcription.TranscriptionSelector.TRANSCRIPTION,i.transcription.Transcription);var Pt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TileDownload"},e.prototype.init=function(){var t=this;this.addAscent(i.core.AssessEmission.UPDATE,(function(e){t.descend(i.core.AssessEmission.UPDATE,e)})),this.addAscent(i.core.AssessEmission.ADDED,(function(){t.descend(i.core.AssessEmission.ADDED)}))},Object.defineProperties(e,n),e}(i.core.Instance),It={DOWNLOAD:i.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:i.internals.ns.selector("tile--download")+" "+i.internals.ns.selector("tile__detail")};i.tile={TileSelector:It,TileDownload:Pt},i.internals.register(i.tile.TileSelector.DOWNLOAD,i.tile.TileDownload),i.internals.register(i.tile.TileSelector.DOWNLOAD_DETAIL,i.core.AssessDetail);var Lt={RANGE:i.internals.ns.selector("range"),RANGE_SM:i.internals.ns.selector("range--sm"),RANGE_STEP:i.internals.ns.selector("range--step"),RANGE_DOUBLE:i.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:i.internals.ns.selector("range--double")+i.internals.ns.selector("range--step"),RANGE_INPUT:i.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:i.internals.ns.selector("range--double")+" input[type=range]:nth-of-type(2)",RANGE_OUTPUT:i.internals.ns.selector("range__output"),RANGE_MIN:i.internals.ns.selector("range__min"),RANGE_MAX:i.internals.ns.selector("range__max"),RANGE_PREFIX:i.internals.ns.attr("prefix"),RANGE_SUFFIX:i.internals.ns.attr("suffix")},Dt={VALUE:i.internals.ns.emission("range","value"),VALUE2:i.internals.ns.emission("range","value2"),OUTPUT:i.internals.ns.emission("range","output"),CONSTRAINTS:i.internals.ns.emission("range","constraints"),MIN:i.internals.ns.emission("range","min"),MAX:i.internals.ns.emission("range","max"),STEP:i.internals.ns.emission("range","step"),PREFIX:i.internals.ns.emission("range","prefix"),SUFFIX:i.internals.ns.emission("range","suffix"),DISABLED:i.internals.ns.emission("range","disabled"),ENABLE_POINTER:i.internals.ns.emission("range","enable_pointer")},Rt=function(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}},wt={width:{configurable:!0},isSm:{configurable:!0},textValue:{configurable:!0},value:{configurable:!0},outputX:{configurable:!0},min:{configurable:!0},textMin:{configurable:!0},max:{configurable:!0},textMax:{configurable:!0},step:{configurable:!0},output:{configurable:!0},progress:{configurable:!0}};Rt.prototype.configure=function(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())},Rt.prototype.setPrefix=function(t){this._prefix=null!==t?t:""},Rt.prototype.setSuffix=function(t){this._suffix=null!==t?t:""},Rt.prototype._decorate=function(t){return""+this._prefix+t+this._suffix},wt.width.get=function(){return this._width},wt.width.set=function(t){this._width=t},wt.isSm.get=function(){return this._isSm},wt.isSm.set=function(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())},Rt.prototype.setThumbSize=function(t,e){void 0===e&&(e=1),this._thumbSize=t,this._innerPadding=t*e},wt.textValue.get=function(){return this._decorate(this._value)},wt.value.get=function(){return this._value},wt.value.set=function(t){this._value=t},wt.outputX.get=function(){return this._outputX},Rt.prototype.setConstraints=function(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth},wt.min.get=function(){return this._min},wt.textMin.get=function(){return this._decorate(this._min)},wt.max.get=function(){return this._max},wt.textMax.get=function(){return this._decorate(this._max)},wt.step.get=function(){return this._step},wt.output.get=function(){return{text:this.textValue,transform:"translateX("+this._translateX+"px) translateX(-"+this._centerPercent+"%)"}},Rt.prototype._getRatio=function(t){return(t-this._min)/this._rangeWidth},wt.progress.get=function(){return this._progress},Rt.prototype.update=function(){this._update()},Rt.prototype._update=function(){this._innerWidth=this._width-this._innerPadding;var t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:(this._innerWidth*t+.5*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(Rt.prototype,wt);var xt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={stepWidth:{configurable:!0}};return i.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2},Object.defineProperties(e.prototype,i),e}(Rt),kt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={value2:{configurable:!0},textValue:{configurable:!0}};return i.value2.get=function(){return this._value},i.value2.set=function(t){this._value2!==t&&(this._value2=t,this.update())},i.textValue.get=function(){return this._decorate(this._value)+" - "+this._decorate(this._value2)},e.prototype.setThumbSize=function(e){t.prototype.setThumbSize.call(this,e,2)},e.prototype._update=function(){t.prototype._update.call(this);var e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;var i=this._getRatio(this._value),n=this._getRatio(this._value2);this._progress={left:(this._innerWidth*i+.25*this._innerPadding).toFixed(2)+"px",right:(this._innerWidth*n+.75*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(e.prototype,i),e}(Rt),jt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={stepWidth:{configurable:!0}};return i.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))},Object.defineProperties(e.prototype,i),e}(kt),Mt="step",Gt="double",Ht="double-step",Ut="default",Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={type:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Range"},e.prototype.init=function(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Dt.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Dt.VALUE,this.setValue.bind(this)),this.addAscent(Dt.VALUE2,this.setValue2.bind(this)),this.getAttribute(Lt.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(Lt.RANGE_PREFIX)),this.getAttribute(Lt.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(Lt.RANGE_SUFFIX)),this.update()},e.prototype._retrieveType=function(){switch(!0){case this.matches(Lt.RANGE_DOUBLE_STEP):case this.matches(Lt.RANGE_DOUBLE):this.type=Gt;break;case this.matches(Lt.RANGE_STEP):this.type=Mt;break;default:this.type=Ut}},i.type.set=function(t){if(this._type!==t){this._type=t;var e=this._model;switch(this._type){case Ht:this._model=new jt;break;case Gt:this._model=new kt;break;case Mt:this._model=new xt;break;default:this._model=new Rt}this._model.configure(e)}},i.type.get=function(){return this._type},e.prototype._retrieveSize=function(){this._model.isSm=this.matches(Lt.RANGE_SM)},e.prototype.resize=function(){this._retrieveWidth(),this.update()},e.prototype._retrieveWidth=function(){this._model.width=this.getRect().width},e.prototype.setValue=function(t){switch(this._model.value=t,this._type){case Ht:case Gt:this.descend(Dt.VALUE,t)}this.update()},e.prototype.setValue2=function(t){this._model.value2=t,this.descend(Dt.VALUE2,t),this.update()},e.prototype.setConstraints=function(t){this._model.setConstraints(t),this.update(),this.descend(Dt.CONSTRAINTS,t)},e.prototype.setPrefix=function(t){this._model.setPrefix(t),this.update()},e.prototype.setSuffix=function(t){this._model.setSuffix(t),this.update()},e.prototype.mutate=function(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(Lt.RANGE_PREFIX):case t.includes(Lt.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(Lt.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(Lt.RANGE_SUFFIX)),this.update()}},e.prototype.update=function(){this._model.update(),this.descend(Dt.OUTPUT,this._model.output),this.descend(Dt.MIN,this._model.textMin),this.descend(Dt.MAX,this._model.textMax);var t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",parseFloat(t.right)-parseFloat(t.left)+"px "+(this._model.isSm?"8px":"12px")))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")},e.prototype.mouseMove=function(t){if(this._type===Gt||this._type===Ht){var e=t.x-this.getRect().left;this.descend(Dt.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left)t&&(this.node.value=t,this.dispatch("change",void 0,!0),this.change())},e.prototype.change=function(){this.ascend(Dt.VALUE,parseFloat(this.node.value))},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(Dt.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(Dt.CONSTRAINTS,new Bt(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e,i),e}(i.core.Instance),Vt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(Dt.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Dt.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)=e,n="rtl"===document.documentElement.getAttribute("dir"),s=n?ie.SHADOW_RIGHT:ie.SHADOW_LEFT,o=n?ie.SHADOW_LEFT:ie.SHADOW_RIGHT;t?this.removeClass(s):this.addClass(s),i?this.removeClass(o):this.addClass(o)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),se=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TableCaption"},e.prototype.init=function(){this.height=0,this.isResizing=!0},e.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend($t.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(e,i),e}(i.core.Instance),oe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isSelected:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableRow"},e.prototype.init=function(){i.checkbox&&(this.addAscent(u.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(u.RETRIEVE))},e.prototype._handleCheckboxChange=function(t){"row-select"===t.name&&(this.isSelected=!0===t.checked)},e.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},n.isSelected.get=function(){return this._isSelected},n.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance);i.table={Table:te,TableWrapper:ee,TableElement:ne,TableCaption:se,TableSelector:ie,TableRow:oe},i.internals.register(i.table.TableSelector.TABLE,i.table.Table),i.internals.register(i.table.TableSelector.TABLE_WRAPPER,i.table.TableWrapper),i.internals.register(i.table.TableSelector.ELEMENT,i.table.TableElement),i.internals.register(i.table.TableSelector.CAPTION,i.table.TableCaption),i.internals.register(i.table.TableSelector.ROW,i.table.TableRow)}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t="fr",e="dsfr",i=window[e],n=i.internals.ns.selector("accordion"),s=i.internals.ns.selector("collapse"),o={GROUP:i.internals.ns.selector("accordions-group"),ACCORDION:n,COLLAPSE:n+" > "+s+", "+n+" > *:not("+n+"):not("+s+") > "+s+", "+n+" > *:not("+n+"):not("+s+") > *:not("+n+"):not("+s+") > "+s,COLLAPSE_LEGACY:n+" "+s,BUTTON:n+"__btn"},r=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Accordion"},i.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(o.BUTTON)}))[0]},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),a=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var n=e.node.matches(i.internals.legacy.isLegacy?o.COLLAPSE_LEGACY:o.COLLAPSE);return t.prototype.validate.call(this,e)&&n},Object.defineProperties(e,n),e}(i.core.CollapsesGroup);i.accordion={Accordion:r,AccordionSelector:o,AccordionsGroup:a},i.internals.register(i.accordion.AccordionSelector.GROUP,i.accordion.AccordionsGroup),i.internals.register(i.accordion.AccordionSelector.ACCORDION,i.accordion.Accordion);var c={EQUISIZED_BUTTON:i.internals.ns.selector("btns-group--equisized")+" "+i.internals.ns.selector("btn"),EQUISIZED_GROUP:i.internals.ns.selector("btns-group--equisized")};i.button={ButtonSelector:c},i.internals.register(i.button.ButtonSelector.EQUISIZED_BUTTON,i.core.Equisized),i.internals.register(i.button.ButtonSelector.EQUISIZED_GROUP,i.core.EquisizedsGroup);var l=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CardDownload"},e.prototype.init=function(){var t=this;this.addAscent(i.core.AssessEmission.UPDATE,(function(e){t.descend(i.core.AssessEmission.UPDATE,e)})),this.addAscent(i.core.AssessEmission.ADDED,(function(){t.descend(i.core.AssessEmission.ADDED)}))},Object.defineProperties(e,n),e}(i.core.Instance),p={DOWNLOAD:i.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:i.internals.ns.selector("card--download")+" "+i.internals.ns.selector("card__end")+" "+i.internals.ns.selector("card__detail")};i.card={CardSelector:p,CardDownload:l},i.internals.register(i.card.CardSelector.DOWNLOAD,i.card.CardDownload),i.internals.register(i.card.CardSelector.DOWNLOAD_DETAIL,i.core.AssessDetail);var h={INPUT:i.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},u={CHANGE:i.internals.ns.emission("checkbox","change"),RETRIEVE:i.internals.ns.emission("checkbox","retrieve")},d=function(t){function e(){t.call(this),this._handlingChange=this.handleChange.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CheckboxInput"},e.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(u.RETRIEVE,this._handlingChange),this.handleChange()},i.isChecked.get=function(){return this.node.checked},e.prototype.handleChange=function(){this.ascend(u.CHANGE,this.node)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance);i.checkbox={CheckboxSelector:h,CheckboxEmission:u,CheckboxInput:d},i.internals.register(i.checkbox.CheckboxSelector.INPUT,i.checkbox.CheckboxInput);var f={SEGMENTED:i.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:i.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:i.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:i.internals.ns.selector("segmented__legend")},g={ADDED:i.internals.ns.emission("segmented","added"),REMOVED:i.internals.ns.emission("segmented","removed")},_=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Segmented"},e.prototype.init=function(){this.elements=this.node.querySelector(f.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(f.SEGMENTED_LEGEND),this.addAscent(g.ADDED,this.resize.bind(this)),this.addAscent(g.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(i.prefix+"-segmented__legend--inline"),this.isResizing=!0},e.prototype.resize=function(){var t=i.prefix+"-segmented--vertical",e=i.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(e),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(e)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(e,n),e}(i.core.Instance),b=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"SegmentedElement"},e.prototype.init=function(){this.ascend(g.ADDED)},e.prototype.dispose=function(){this.ascend(g.REMOVED)},Object.defineProperties(e,i),e}(i.core.Instance);i.segmented={SegmentedSelector:f,SegmentedEmission:g,SegmentedElement:b,Segmented:_},i.internals.register(i.segmented.SegmentedSelector.SEGMENTED,i.segmented.Segmented),i.internals.register(i.segmented.SegmentedSelector.SEGMENTED_ELEMENT,i.segmented.SegmentedElement);var y={BREADCRUMB:i.internals.ns.selector("breadcrumb"),BUTTON:i.internals.ns.selector("breadcrumb__button")},m=function(t){function e(){t.call(this),this.count=0,this.focusing=this.focus.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Breadcrumb"},e.prototype.init=function(){this.getCollapse(),this.isResizing=!0},n.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})},e.prototype.getCollapse=function(){var t=this.collapse;t?t.listen(i.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(i.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},e.prototype.resize=function(){var t=this.collapse,e=this.links;t&&e.length&&(this.isBreakpoint(i.core.Breakpoints.MD)?t.buttonHasFocus&&e[0].focus():e.indexOf(document.activeElement)>-1&&t.focus())},n.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},n.collapse.get=function(){return this.element.getDescendantInstances(i.core.Collapse.instanceClassName,null,!0)[0]},e.prototype.focus=function(){this.count=0,this._focus()},e.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},e.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},n.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(y.BUTTON)}))[0]},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance);i.breadcrumb={BreadcrumbSelector:y,Breadcrumb:m},i.internals.register(i.breadcrumb.BreadcrumbSelector.BREADCRUMB,i.breadcrumb.Breadcrumb);var E={TOOLTIP:i.internals.ns.selector("tooltip"),SHOWN:i.internals.ns.selector("tooltip--shown"),HIDDING:i.internals.ns.selector("tooltip--hidding"),BUTTON:i.internals.ns.selector("btn--tooltip")},v=1,S=2,T=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={state:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(E.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var n=this.mouseout.bind(this);this.listen("mouseout",n),this.placement.listen("mouseout",n)}this.addEmission(i.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(i.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===i.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},n.state.get=function(){return this._state},n.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=v},e.prototype.focusOut=function(){this.state&=~v},e.prototype.mouseover=function(){this.state|=S},e.prototype.mouseout=function(){this.state&=~S},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.PlacementReferent),A=function(e){return t+"-"+e};A.selector=function(t,e){return void 0===e&&(e="."),""+e+A(t)},(A.attr=function(t){return"data-"+A(t)}).selector=function(t,e){var i=A.attr(t);return void 0!==e&&(i+='="'+e+'"'),"["+i+"]"},A.event=function(t){return e+"."+t},A.emission=function(t,e){return"emission:"+t+"."+e};var O={SHOW:A.event("show"),HIDE:A.event("hide")},N="hidden",C="shown",P="hiding",I=function(t){function e(){t.call(this,i.core.PlacementMode.AUTO,[i.core.PlacementPosition.TOP,i.core.PlacementPosition.BOTTOM],[i.core.PlacementAlign.CENTER,i.core.PlacementAlign.START,i.core.PlacementAlign.END]),this.modifier="",this._state=N}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isShown:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',T),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===P&&(this.removeClass(E.SHOWN),this.removeClass(E.HIDDING),this._state=N,this.isShown=!1)},n.isShown.get=function(){return t.prototype.isShown},n.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=C,this.addClass(E.SHOWN),this.removeClass(E.HIDDING),this.dispatch(O.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===C:this._state=P,this.addClass(E.HIDDING);break;case this.isShown&&!e&&this._state===N:this.dispatch(O.HIDE),this.removeClass(E.HIDDING),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this),this.rect=this.getRect();var e=this.referentRect.center-this.rect.center,i=.5*this.rect.width-8;e<-i&&(e=-i),e>i&&(e=i),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Placement);i.tooltip={Tooltip:I,TooltipSelector:E,TooltipEvent:O},i.internals.register(i.tooltip.TooltipSelector.TOOLTIP,i.tooltip.Tooltip);var D=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},i.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),L=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0},input:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleStatusLabel"},e.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',D),this.update(),this.isSwappingFont=!0},i.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},i.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},e.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),i=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),s=parseFloat(n.width);s>i&&(i=s),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",i/16+"rem")},e.prototype.swapFont=function(t){this.update()},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),R={STATUS_LABEL:""+i.internals.ns.selector("toggle__label")+i.internals.ns.attr.selector("checked-label")+i.internals.ns.attr.selector("unchecked-label")};i.toggle={ToggleStatusLabel:L,ToggleSelector:R},i.internals.register(i.toggle.ToggleSelector.STATUS_LABEL,i.toggle.ToggleStatusLabel);var w=i.internals.ns.selector("sidemenu__item"),x=i.internals.ns.selector("collapse"),k={LIST:i.internals.ns.selector("sidemenu__list"),COLLAPSE:w+" > "+x+", "+w+" > *:not("+w+"):not("+x+") > "+x+", "+w+" > *:not("+w+"):not("+x+") > *:not("+w+"):not("+x+") > "+x,COLLAPSE_LEGACY:w+" "+x,ITEM:i.internals.ns.selector("sidemenu__item"),BUTTON:i.internals.ns.selector("sidemenu__btn")},j=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuList"},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.node.matches(i.internals.legacy.isLegacy?k.COLLAPSE_LEGACY:k.COLLAPSE)},Object.defineProperties(e,n),e}(i.core.CollapsesGroup),G=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuItem"},i.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(k.BUTTON)}))[0]},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance);i.sidemenu={SidemenuList:j,SidemenuItem:G,SidemenuSelector:k},i.internals.register(i.sidemenu.SidemenuSelector.LIST,i.sidemenu.SidemenuList),i.internals.register(i.sidemenu.SidemenuSelector.ITEM,i.sidemenu.SidemenuItem);var M={MODAL:i.internals.ns.selector("modal"),SCROLL_DIVIDER:i.internals.ns.selector("scroll-divider"),BODY:i.internals.ns.selector("modal__body"),TITLE:i.internals.ns.selector("modal__title")},H=function(t){function e(){t.call(this,i.core.DisclosureType.OPENED)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(e,n),e}(i.core.DisclosureButton),U={CONCEALING_BACKDROP:i.internals.ns.attr("concealing-backdrop")},W=function(t){function e(){t.call(this,i.core.DisclosureType.OPENED,M.MODAL,H,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={body:{configurable:!0},isDialog:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Modal"},e.prototype.init=function(){t.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(i.core.RootEmission.KEYDOWN,this._keydown.bind(this))},e.prototype._keydown=function(t){if(t===i.core.KeyCodes.ESCAPE)this._escape()},e.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},e.prototype.retrieved=function(){this._ensureAccessibleName()},n.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},e.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(U.CONCEALING_BACKDROP)&&this.conceal()},e.prototype.disclose=function(e){return!!t.prototype.disclose.call(this,e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},e.prototype.conceal=function(e,i){return!!t.prototype.conceal.call(this,e,i)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},n.isDialog.get=function(){return this._isDialog},n.isDialog.set=function(t){this._isDialog=t},e.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},e.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},e.prototype._setAccessibleName=function(t,e){var i=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",i)},e.prototype._ensureAccessibleName=function(){if(this.isEnabled&&(!this.isEnabled||!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label"))){this.warn("missing accessible name");var t=this.node.querySelector(M.TITLE),e=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==e:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(e,"primary")}}},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Disclosure),B=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),F=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),z=function(t,e){if(!(t instanceof Element))return!1;var i=window.getComputedStyle(t);if(!i)return!1;if("hidden"===i.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===i.display)return!1;t=t.parentElement}return!0},V=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},q={trapped:{configurable:!0},focusables:{configurable:!0}};q.trapped.get=function(){return null!==this.element},V.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},V.prototype.wait=function(){z(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},V.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},V.prototype.stun=function(t){for(var e=0,i=t.children;e0||e[s-1].tabIndex>0)&&(t.preventDefault(),e[s-1].focus()):this.element.contains(document.activeElement)&&s!==e.length-1&&-1!==s?document.activeElement.tabIndex>0&&(t.preventDefault(),e[s+1].focus()):(t.preventDefault(),i.focus())}}},q.focusables.get=function(){var t=this,e=i.internals.dom.querySelectorAllArray(this.element,B),n=i.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(n.length){for(var s={},o=0,r=n;othis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(M.SCROLL_DIVIDER):this.addClass(M.SCROLL_DIVIDER):this.removeClass(M.SCROLL_DIVIDER)},e.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},e.prototype.adjust=function(){var t=32*(this.isBreakpoint(i.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-t+"px":this.style.setProperty("--modal-max-height",window.innerHeight-t+"px"),this.divide()},Object.defineProperties(e,n),e}(i.core.Instance);i.modal={Modal:W,ModalButton:H,ModalBody:J,ModalsGroup:Y,ModalSelector:M},i.internals.register(i.modal.ModalSelector.MODAL,i.modal.Modal),i.internals.register(i.modal.ModalSelector.BODY,i.modal.ModalBody),i.internals.register(i.core.RootSelector.ROOT,i.modal.ModalsGroup);var Q={TOGGLE:i.internals.ns.emission("password","toggle"),ADJUST:i.internals.ns.emission("password","adjust")},Z=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},e.prototype.init=function(){this.listenClick(),this.ascend(Q.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},i.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},i.isChecked.get=function(){return this.node.checked},i.isChecked.set=function(t){this._isChecked=t,this.ascend(Q.TOGGLE,t)},e.prototype.handleClick=function(){this.isChecked=!this._isChecked},e.prototype.swapFont=function(t){this.ascend(Q.ADJUST,this.width)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),$=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Password"},e.prototype.init=function(){this.addAscent(Q.TOGGLE,this.toggle.bind(this)),this.addAscent(Q.ADJUST,this.adjust.bind(this))},e.prototype.toggle=function(t){this.descend(Q.TOGGLE,t)},e.prototype.adjust=function(t){this.descend(Q.ADJUST,t)},Object.defineProperties(e,i),e}(i.core.Instance),tt={PASSWORD:i.internals.ns.selector("password"),INPUT:i.internals.ns.selector("password__input"),LABEL:i.internals.ns.selector("password__label"),TOOGLE:i.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},et=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isRevealed:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"PasswordInput"},e.prototype.init=function(){this.addDescent(Q.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},e.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},n.isRevealed.get=function(){return this._isRevealed},e.prototype.capslock=function(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(i.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(i.internals.ns.attr("capslock")))},n.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance),it=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"PasswordLabel"},e.prototype.init=function(){this.addDescent(Q.ADJUST,this.adjust.bind(this))},e.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(e,i),e}(i.core.Instance);i.password={Password:$,PasswordToggle:Z,PasswordSelector:tt,PasswordInput:et,PasswordLabel:it},i.internals.register(i.password.PasswordSelector.INPUT,i.password.PasswordInput),i.internals.register(i.password.PasswordSelector.PASSWORD,i.password.Password),i.internals.register(i.password.PasswordSelector.TOOGLE,i.password.PasswordToggle),i.internals.register(i.password.PasswordSelector.LABEL,i.password.PasswordLabel);var nt=i.internals.ns.selector("nav__item"),st=i.internals.ns.selector("collapse"),ot={NAVIGATION:i.internals.ns.selector("nav"),COLLAPSE:nt+" > "+st+", "+nt+" > *:not("+nt+"):not("+st+") > "+st+", "+nt+" > *:not("+nt+"):not("+st+") > *:not("+nt+"):not("+st+") > "+st,COLLAPSE_LEGACY:nt+" "+st,ITEM:nt,ITEM_RIGHT:nt+"--align-right",MENU:i.internals.ns.selector("menu"),BUTTON:i.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:i.internals.ns.selector("translate__btn")},rt=function(t){function e(){t.call(this),this._isRightAligned=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"NavigationItem"},e.prototype.init=function(){this.addAscent(i.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(i.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},e.prototype.resize=function(){this.calculate()},e.prototype.calculate=function(){var t=this.element.getDescendantInstances(i.core.Collapse.instanceClassName,null,!0)[0];if(t&&this.isBreakpoint(i.core.Breakpoints.LG)&&t.element.node.matches(ot.MENU)){var e=this.element.node.parentElement.getBoundingClientRect().right,n=t.element.node.getBoundingClientRect().width,s=this.element.node.getBoundingClientRect().left;this.isRightAligned=s+n>e}else this.isRightAligned=!1},n.isRightAligned.get=function(){return this._isRightAligned},n.isRightAligned.set=function(t){this._isRightAligned!==t&&(this._isRightAligned=t,t?i.internals.dom.addClass(this.element.node,ot.ITEM_RIGHT):i.internals.dom.removeClass(this.element.node,ot.ITEM_RIGHT))},n.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(ot.BUTTON)||t.hasClass(ot.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance),at={NONE:-1,INSIDE:0,OUTSIDE:1},ct=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={index:{configurable:!0},canUngroup:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Navigation"},e.prototype.init=function(){t.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(i.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.element.node.matches(i.internals.legacy.isLegacy?ot.COLLAPSE_LEGACY:ot.COLLAPSE)},e.prototype.handleMouseDown=function(t){this.isBreakpoint(i.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(t.target)?at.INSIDE:at.OUTSIDE,this.requestPosition())},e.prototype.handleClick=function(t){!t.target.matches("a, button")||t.target.matches("[aria-controls]")||t.target.matches(i.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},e.prototype._handleRootClick=function(t){this.isBreakpoint(i.core.Breakpoints.LG)&&(this.node.contains(t)||(this.out=!0,this.requestPosition()))},e.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},e.prototype.getPosition=function(){if(this.out)switch(this.position){case at.OUTSIDE:this.index=-1;break;case at.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},e.prototype.requested=function(){this.position=at.NONE,this.out=!1,this.isRequesting=!1},n.index.get=function(){return t.prototype.index},n.index.set=function(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},n.canUngroup.get=function(){return!this.isBreakpoint(i.core.Breakpoints.LG)},e.prototype.resize=function(){this.update()},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.CollapsesGroup);i.navigation={Navigation:ct,NavigationItem:rt,NavigationMousePosition:at,NavigationSelector:ot},i.internals.register(i.navigation.NavigationSelector.NAVIGATION,i.navigation.Navigation),i.internals.register(i.navigation.NavigationSelector.ITEM,i.navigation.NavigationItem);var lt=function(t){function e(){t.call(this,i.core.DisclosureType.SELECT)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={list:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TabButton"},e.prototype.handleClick=function(e){t.prototype.handleClick.call(this,e),this.focus()},e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))},n.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.DisclosureButton),pt={TAB:i.internals.ns.selector("tabs__tab"),GROUP:i.internals.ns.selector("tabs"),PANEL:i.internals.ns.selector("tabs__panel"),LIST:i.internals.ns.selector("tabs__list"),SHADOW:i.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:i.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:i.internals.ns.selector("tabs__shadow--right"),PANEL_START:i.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:i.internals.ns.selector("tabs__panel--direction-end")},ht="direction-start",ut="direction-end",dt="none",ft=function(t){function e(){t.call(this,i.core.DisclosureType.SELECT,pt.PANEL,lt,"TabsGroup"),this._direction=dt,this._isPreventingTransition=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TabPanel"},n.direction.get=function(){return this._direction},n.direction.set=function(t){if(t!==this._direction){switch(this._direction){case ht:this.removeClass(pt.PANEL_START);break;case ut:this.removeClass(pt.PANEL_END);break;case dt:break;default:return}switch(this._direction=t,this._direction){case ht:this.addClass(pt.PANEL_START);break;case ut:this.addClass(pt.PANEL_END)}}},n.isPreventingTransition.get=function(){return this._isPreventingTransition},n.isPreventingTransition.set=function(t){this._isPreventingTransition!==t&&(t?this.addClass(i.internals.motion.TransitionSelector.NONE):this.removeClass(i.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)},e.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},e.prototype.reset=function(){this.group&&this.group.retrieve(!0)},e.prototype._electPrimaries=function(e){var i=this;return this.group&&this.group.list?t.prototype._electPrimaries.call(this,e).filter((function(t){return i.group.list.node.contains(t.node)})):[]},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Disclosure),gt="tab_keys_left",_t="tab_keys_right",bt="tab_keys_home",yt="tab_keys_end",mt={PRESS_KEY:i.internals.ns.emission("tab","press_key"),LIST_HEIGHT:i.internals.ns.emission("tab","list_height")},Et=function(t){function e(){t.call(this,"TabPanel")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TabsGroup"},e.prototype.init=function(){t.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(mt.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(mt.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},e.prototype.getIndex=function(e){void 0===e&&(e=0),t.prototype.getIndex.call(this,e)},n.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},e.prototype.setListHeight=function(t){this.listHeight=t},e.prototype.transitionend=function(t){this.isPreventingTransition=!0},n.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},e.prototype.pressKey=function(t){switch(t){case gt:this.pressLeft();break;case _t:this.pressRight();break;case bt:this.pressHome();break;case yt:this.pressEnd()}},e.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},e.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},e.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},e.prototype.focus=function(){this.current&&this.current.focus()},e.prototype.apply=function(){for(var t=0;ti.right&&this.node.scrollTo(n-i.right+e.right+16,0)},n.isScrolling.get=function(){return this._isScrolling},n.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},e.prototype.apply=function(){this._isScrolling?(this.addClass(pt.SHADOW),this.scroll()):(this.removeClass(pt.SHADOW_RIGHT),this.removeClass(pt.SHADOW_LEFT),this.removeClass(pt.SHADOW))},e.prototype.scroll=function(){var t=Math.abs(this.node.scrollLeft),e=t<=16,i=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=i,s="rtl"===getComputedStyle(this.node).direction,o=s?pt.SHADOW_RIGHT:pt.SHADOW_LEFT,r=s?pt.SHADOW_LEFT:pt.SHADOW_RIGHT;e?this.removeClass(o):this.addClass(o),n?this.removeClass(r):this.addClass(r)},e.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(mt.LIST_HEIGHT,t)},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance);i.tab={TabPanel:ft,TabButton:lt,TabsGroup:Et,TabsList:vt,TabSelector:pt,TabEmission:mt},i.internals.register(i.tab.TabSelector.PANEL,i.tab.TabPanel),i.internals.register(i.tab.TabSelector.GROUP,i.tab.TabsGroup),i.internals.register(i.tab.TabSelector.LIST,i.tab.TabsList);var St={DISMISS:i.internals.ns.event("dismiss")},Tt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TagDismissible"},e.prototype.init=function(){this.listenClick()},e.prototype.handleClick=function(){switch(this.focusClosest(),i.mode){case i.Modes.ANGULAR:case i.Modes.REACT:case i.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(St.DISMISS)},e.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+i.mode+" mode, the api doesn't handle dom modification. An event "+St.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(e,n),e}(i.core.Instance),At={PRESSABLE:i.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+i.internals.ns.selector("tag--dismiss")};i.tag={TagDismissible:Tt,TagSelector:At,TagEvent:St},i.internals.register(i.tag.TagSelector.PRESSABLE,i.core.Toggle),i.internals.register(i.tag.TagSelector.DISMISSIBLE,i.tag.TagDismissible);var Ot=i.internals.ns.selector("transcription"),Nt={TRANSCRIPTION:Ot,BUTTON:Ot+"__btn"},Ct=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Transcription"},i.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Nt.BUTTON)}))[0]},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance);i.transcription={Transcription:Ct,TranscriptionSelector:Nt},i.internals.register(i.transcription.TranscriptionSelector.TRANSCRIPTION,i.transcription.Transcription);var Pt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TileDownload"},e.prototype.init=function(){var t=this;this.addAscent(i.core.AssessEmission.UPDATE,(function(e){t.descend(i.core.AssessEmission.UPDATE,e)})),this.addAscent(i.core.AssessEmission.ADDED,(function(){t.descend(i.core.AssessEmission.ADDED)}))},Object.defineProperties(e,n),e}(i.core.Instance),It={DOWNLOAD:i.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:i.internals.ns.selector("tile--download")+" "+i.internals.ns.selector("tile__detail")};i.tile={TileSelector:It,TileDownload:Pt},i.internals.register(i.tile.TileSelector.DOWNLOAD,i.tile.TileDownload),i.internals.register(i.tile.TileSelector.DOWNLOAD_DETAIL,i.core.AssessDetail);var Dt={RANGE:i.internals.ns.selector("range"),RANGE_SM:i.internals.ns.selector("range--sm"),RANGE_STEP:i.internals.ns.selector("range--step"),RANGE_DOUBLE:i.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:i.internals.ns.selector("range--double")+i.internals.ns.selector("range--step"),RANGE_INPUT:i.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:i.internals.ns.selector("range--double")+" input[type=range]:nth-of-type(2)",RANGE_OUTPUT:i.internals.ns.selector("range__output"),RANGE_MIN:i.internals.ns.selector("range__min"),RANGE_MAX:i.internals.ns.selector("range__max"),RANGE_PREFIX:i.internals.ns.attr("prefix"),RANGE_SUFFIX:i.internals.ns.attr("suffix")},Lt={VALUE:i.internals.ns.emission("range","value"),VALUE2:i.internals.ns.emission("range","value2"),OUTPUT:i.internals.ns.emission("range","output"),CONSTRAINTS:i.internals.ns.emission("range","constraints"),MIN:i.internals.ns.emission("range","min"),MAX:i.internals.ns.emission("range","max"),STEP:i.internals.ns.emission("range","step"),PREFIX:i.internals.ns.emission("range","prefix"),SUFFIX:i.internals.ns.emission("range","suffix"),DISABLED:i.internals.ns.emission("range","disabled"),ENABLE_POINTER:i.internals.ns.emission("range","enable_pointer")},Rt=function(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}},wt={width:{configurable:!0},isSm:{configurable:!0},textValue:{configurable:!0},value:{configurable:!0},outputX:{configurable:!0},min:{configurable:!0},textMin:{configurable:!0},max:{configurable:!0},textMax:{configurable:!0},step:{configurable:!0},output:{configurable:!0},progress:{configurable:!0}};Rt.prototype.configure=function(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())},Rt.prototype.setPrefix=function(t){this._prefix=null!==t?t:""},Rt.prototype.setSuffix=function(t){this._suffix=null!==t?t:""},Rt.prototype._decorate=function(t){return""+this._prefix+t+this._suffix},wt.width.get=function(){return this._width},wt.width.set=function(t){this._width=t},wt.isSm.get=function(){return this._isSm},wt.isSm.set=function(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())},Rt.prototype.setThumbSize=function(t,e){void 0===e&&(e=1),this._thumbSize=t,this._innerPadding=t*e},wt.textValue.get=function(){return this._decorate(this._value)},wt.value.get=function(){return this._value},wt.value.set=function(t){this._value=t},wt.outputX.get=function(){return this._outputX},Rt.prototype.setConstraints=function(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth},wt.min.get=function(){return this._min},wt.textMin.get=function(){return this._decorate(this._min)},wt.max.get=function(){return this._max},wt.textMax.get=function(){return this._decorate(this._max)},wt.step.get=function(){return this._step},wt.output.get=function(){return{text:this.textValue,transform:"translateX("+this._translateX+"px) translateX(-"+this._centerPercent+"%)"}},Rt.prototype._getRatio=function(t){return(t-this._min)/this._rangeWidth},wt.progress.get=function(){return this._progress},Rt.prototype.update=function(){this._update()},Rt.prototype._update=function(){this._innerWidth=this._width-this._innerPadding;var t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:(this._innerWidth*t+.5*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(Rt.prototype,wt);var xt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={stepWidth:{configurable:!0}};return i.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2},Object.defineProperties(e.prototype,i),e}(Rt),kt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={value2:{configurable:!0},textValue:{configurable:!0}};return i.value2.get=function(){return this._value},i.value2.set=function(t){this._value2!==t&&(this._value2=t,this.update())},i.textValue.get=function(){return this._decorate(this._value)+" - "+this._decorate(this._value2)},e.prototype.setThumbSize=function(e){t.prototype.setThumbSize.call(this,e,2)},e.prototype._update=function(){t.prototype._update.call(this);var e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;var i=this._getRatio(this._value),n=this._getRatio(this._value2);this._progress={left:(this._innerWidth*i+.25*this._innerPadding).toFixed(2)+"px",right:(this._innerWidth*n+.75*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(e.prototype,i),e}(Rt),jt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={stepWidth:{configurable:!0}};return i.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))},Object.defineProperties(e.prototype,i),e}(kt),Gt="step",Mt="double",Ht="double-step",Ut="default",Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={type:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Range"},e.prototype.init=function(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Lt.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Lt.VALUE,this.setValue.bind(this)),this.addAscent(Lt.VALUE2,this.setValue2.bind(this)),this.getAttribute(Dt.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(Dt.RANGE_PREFIX)),this.getAttribute(Dt.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(Dt.RANGE_SUFFIX)),this.update()},e.prototype._retrieveType=function(){switch(!0){case this.matches(Dt.RANGE_DOUBLE_STEP):case this.matches(Dt.RANGE_DOUBLE):this.type=Mt;break;case this.matches(Dt.RANGE_STEP):this.type=Gt;break;default:this.type=Ut}},i.type.set=function(t){if(this._type!==t){this._type=t;var e=this._model;switch(this._type){case Ht:this._model=new jt;break;case Mt:this._model=new kt;break;case Gt:this._model=new xt;break;default:this._model=new Rt}this._model.configure(e)}},i.type.get=function(){return this._type},e.prototype._retrieveSize=function(){this._model.isSm=this.matches(Dt.RANGE_SM)},e.prototype.resize=function(){this._retrieveWidth(),this.update()},e.prototype._retrieveWidth=function(){this._model.width=this.getRect().width},e.prototype.setValue=function(t){switch(this._model.value=t,this._type){case Ht:case Mt:this.descend(Lt.VALUE,t)}this.update()},e.prototype.setValue2=function(t){this._model.value2=t,this.descend(Lt.VALUE2,t),this.update()},e.prototype.setConstraints=function(t){this._model.setConstraints(t),this.update(),this.descend(Lt.CONSTRAINTS,t)},e.prototype.setPrefix=function(t){this._model.setPrefix(t),this.update()},e.prototype.setSuffix=function(t){this._model.setSuffix(t),this.update()},e.prototype.mutate=function(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(Dt.RANGE_PREFIX):case t.includes(Dt.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(Dt.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(Dt.RANGE_SUFFIX)),this.update()}},e.prototype.update=function(){this._model.update(),this.descend(Lt.OUTPUT,this._model.output),this.descend(Lt.MIN,this._model.textMin),this.descend(Lt.MAX,this._model.textMax);var t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",parseFloat(t.right)-parseFloat(t.left)+"px "+(this._model.isSm?"8px":"12px")))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")},e.prototype.mouseMove=function(t){if(this._type===Mt||this._type===Ht){var e=t.x-this.getRect().left;this.descend(Lt.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left)t&&(this.value=t)},e.prototype.change=function(){this.ascend(Lt.VALUE,this._value)},e.prototype.render=function(){var t=parseFloat(this.node.value);t!==this._value&&(this.value=t)},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(Lt.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(Lt.CONSTRAINTS,new Bt(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance),Vt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(Lt.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Lt.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)=e,n="rtl"===document.documentElement.getAttribute("dir"),s=n?ie.SHADOW_RIGHT:ie.SHADOW_LEFT,o=n?ie.SHADOW_LEFT:ie.SHADOW_RIGHT;t?this.removeClass(s):this.addClass(s),i?this.removeClass(o):this.addClass(o)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(i.core.Instance),se=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TableCaption"},e.prototype.init=function(){this.height=0,this.isResizing=!0},e.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend($t.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(e,i),e}(i.core.Instance),oe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isSelected:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableRow"},e.prototype.init=function(){i.checkbox&&(this.addAscent(u.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(u.RETRIEVE))},e.prototype._handleCheckboxChange=function(t){"row-select"!==t.name&&"true"!==t.getAttribute(i.internals.ns.attr("row-select"))||(this.isSelected=!0===t.checked)},e.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},n.isSelected.get=function(){return this._isSelected},n.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(i.core.Instance);i.table={Table:te,TableWrapper:ee,TableElement:ne,TableCaption:se,TableSelector:ie,TableRow:oe},i.internals.register(i.table.TableSelector.TABLE,i.table.Table),i.internals.register(i.table.TableSelector.TABLE_WRAPPER,i.table.TableWrapper),i.internals.register(i.table.TableSelector.ELEMENT,i.table.TableElement),i.internals.register(i.table.TableSelector.CAPTION,i.table.TableCaption),i.internals.register(i.table.TableSelector.ROW,i.table.TableRow)}(); diff --git a/dsfr/static/dsfr/dist/component/component.print.min.css b/dsfr/static/dsfr/dist/component/component.print.min.css index c358b98dd..3bed2272e 100644 --- a/dsfr/static/dsfr/dist/component/component.print.min.css +++ b/dsfr/static/dsfr/dist/component/component.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */@media print{.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media print{.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/connect/connect.legacy.min.css b/dsfr/static/dsfr/dist/component/connect/connect.legacy.min.css index b6c4cf570..f566d4040 100644 --- a/dsfr/static/dsfr/dist/component/connect/connect.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/connect/connect.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/connect/connect.main.min.css b/dsfr/static/dsfr/dist/component/connect/connect.main.min.css index 39a0e74c1..f92139188 100644 --- a/dsfr/static/dsfr/dist/component/connect/connect.main.min.css +++ b/dsfr/static/dsfr/dist/component/connect/connect.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/connect/connect.min.css b/dsfr/static/dsfr/dist/component/connect/connect.min.css index c4839d5ed..288ae0e6c 100644 --- a/dsfr/static/dsfr/dist/component/connect/connect.min.css +++ b/dsfr/static/dsfr/dist/component/connect/connect.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/connect/connect.print.min.css b/dsfr/static/dsfr/dist/component/connect/connect.print.min.css index 9d34b8100..3096c7182 100644 --- a/dsfr/static/dsfr/dist/component/connect/connect.print.min.css +++ b/dsfr/static/dsfr/dist/component/connect/connect.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/consent/consent.legacy.min.css b/dsfr/static/dsfr/dist/component/consent/consent.legacy.min.css index 1dae443e3..c3c4be340 100644 --- a/dsfr/static/dsfr/dist/component/consent/consent.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/consent/consent.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/consent/consent.main.min.css b/dsfr/static/dsfr/dist/component/consent/consent.main.min.css index a663a38ba..b289324e4 100644 --- a/dsfr/static/dsfr/dist/component/consent/consent.main.min.css +++ b/dsfr/static/dsfr/dist/component/consent/consent.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-consent-banner{bottom:2.5rem;left:2.5rem;max-height:calc(100% - 5rem);max-width:40rem;padding:2rem}.fr-consent-banner__title{font-size:1.25rem;line-height:1.75rem}.fr-consent-banner__buttons{margin-top:2rem}.fr-consent-service>.fr-fieldset{display:flex;flex-direction:row;flex-wrap:wrap;padding:0 0 1.25rem}.fr-consent-service:last-child>.fr-fieldset{padding:1.25rem 0 1rem}.fr-consent-service__title{font-size:1.25rem;line-height:1.75rem;width:50%}.fr-consent-service__desc{--text-spacing:0.25rem 1.5rem 0.5rem 0;width:60%}.fr-consent-service__radios{align-items:center;display:flex;flex-direction:row;justify-content:flex-end;position:absolute;right:0;top:1.25rem;width:50%}.fr-consent-services .fr-consent-service+.fr-consent-service{margin-top:-.25rem}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.5rem 0}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/consent/consent.min.css b/dsfr/static/dsfr/dist/component/consent/consent.min.css index 910626746..24f4ca366 100644 --- a/dsfr/static/dsfr/dist/component/consent/consent.min.css +++ b/dsfr/static/dsfr/dist/component/consent/consent.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/consent/consent.print.min.css b/dsfr/static/dsfr/dist/component/consent/consent.print.min.css index 398f98502..dc0fcf545 100644 --- a/dsfr/static/dsfr/dist/component/consent/consent.print.min.css +++ b/dsfr/static/dsfr/dist/component/consent/consent.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/content/content.legacy.min.css b/dsfr/static/dsfr/dist/component/content/content.legacy.min.css index 756a5a341..e52790f28 100644 --- a/dsfr/static/dsfr/dist/component/content/content.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/content/content.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/content/content.main.min.css b/dsfr/static/dsfr/dist/component/content/content.main.min.css index 6146ae9ee..694bdfd38 100644 --- a/dsfr/static/dsfr/dist/component/content/content.main.min.css +++ b/dsfr/static/dsfr/dist/component/content/content.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:75%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{width:125%}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/content/content.min.css b/dsfr/static/dsfr/dist/component/content/content.min.css index a637fae5c..ce3b1a84e 100644 --- a/dsfr/static/dsfr/dist/component/content/content.min.css +++ b/dsfr/static/dsfr/dist/component/content/content.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/content/content.print.min.css b/dsfr/static/dsfr/dist/component/content/content.print.min.css index 553ce67b3..bc9fa1982 100644 --- a/dsfr/static/dsfr/dist/component/content/content.print.min.css +++ b/dsfr/static/dsfr/dist/component/content/content.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/display/display.module.min.js b/dsfr/static/dsfr/dist/component/display/display.module.min.js index df29d92a0..94e470006 100644 --- a/dsfr/static/dsfr/dist/component/display/display.module.min.js +++ b/dsfr/static/dsfr/dist/component/display/display.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr,s={DISPLAY:e.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${e.internals.ns("radios-theme")}"]`,FIELDSET:e.internals.ns.selector("fieldset")};class i extends e.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(s.RADIO_BUTTONS),e.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(e.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(e.scheme.SchemeEmission.ASK)}else this.querySelector(s.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(s){if(this._scheme!==s&&e.scheme)switch(s){case e.scheme.SchemeValue.SYSTEM:case e.scheme.SchemeValue.LIGHT:case e.scheme.SchemeValue.DARK:this._scheme=s;for(const e of this.radios)e.checked=e.value===s;this.ascend(e.scheme.SchemeEmission.SCHEME,s)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}e.display={Display:i,DisplaySelector:s},e.internals.register(e.display.DisplaySelector.DISPLAY,e.display.Display); diff --git a/dsfr/static/dsfr/dist/component/display/display.nomodule.min.js b/dsfr/static/dsfr/dist/component/display/display.nomodule.min.js index b83f21136..37e89d671 100644 --- a/dsfr/static/dsfr/dist/component/display/display.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/display/display.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,s={DISPLAY:e.internals.ns.selector("display"),RADIO_BUTTONS:'input[name="'+e.internals.ns("radios-theme")+'"]',FIELDSET:e.internals.ns.selector("fieldset")},t=function(t){function i(){t.apply(this,arguments)}t&&(i.__proto__=t),i.prototype=Object.create(t&&t.prototype),i.prototype.constructor=i;var n={scheme:{configurable:!0}},c={instanceClassName:{configurable:!0}};return c.instanceClassName.get=function(){return"Display"},i.prototype.init=function(){if(this.radios=this.querySelectorAll(s.RADIO_BUTTONS),e.scheme){this.changing=this.change.bind(this);for(var t=0,i=this.radios;tul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/follow/follow.legacy.min.css b/dsfr/static/dsfr/dist/component/follow/follow.legacy.min.css index ec8e8d2a0..19e4f4cf9 100644 --- a/dsfr/static/dsfr/dist/component/follow/follow.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/follow/follow.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/follow/follow.main.min.css b/dsfr/static/dsfr/dist/component/follow/follow.main.min.css index c930e5737..71fec2b7d 100644 --- a/dsfr/static/dsfr/dist/component/follow/follow.main.min.css +++ b/dsfr/static/dsfr/dist/component/follow/follow.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../../icons/logo/github-fill.svg);mask-image:url(../../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../../icons/logo/mastodon-fill.svg);mask-image:url(../../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../../icons/logo/snapchat-fill.svg);mask-image:url(../../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../../icons/logo/telegram-fill.svg);mask-image:url(../../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../../icons/logo/threads-fill.svg);mask-image:url(../../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../../icons/logo/fr--tiktok-fill.svg);mask-image:url(../../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../../icons/logo/twitch-fill.svg);mask-image:url(../../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../../icons/logo/twitter-x-fill.svg);mask-image:url(../../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../../icons/logo/vimeo-fill.svg);mask-image:url(../../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../../icons/logo/twitter-x-fill.svg);mask-image:url(../../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */.fr-follow__newsletter .fr-input-group{margin-bottom:.5rem}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0 .25rem 0 0;width:auto}.fr-follow__newsletter .fr-input-wrap{flex-direction:row}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem 0 0 0;margin-bottom:0}.fr-follow__newsletter .fr-messages-group{margin-bottom:.5rem}}@media (min-width:48em){ /*! media md */.fr-follow{padding:2rem 0}.fr-follow .fr-grid-row>*>div{align-items:flex-start;display:flex;flex-direction:column;height:100%;justify-content:center}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 var(--border-default-blue-france);margin-top:0;padding-left:8.3333333333%;padding-top:0}.fr-follow .fr-grid-row>:not(:last-child){padding-right:8.3333333333%}.fr-follow .fr-grid-row>:first-child:last-child>div{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter{--text-spacing:0}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter>*{max-width:50%;padding-left:.75rem;padding-right:.75rem}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter>:first-child{padding-left:0;padding-right:.75rem}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter>:last-child{padding-left:.75rem;padding-right:0}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__social{--title-spacing:0}.fr-follow .fr-hint-text{margin-top:.5rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/follow/follow.min.css b/dsfr/static/dsfr/dist/component/follow/follow.min.css index 0e144c204..7189e06ba 100644 --- a/dsfr/static/dsfr/dist/component/follow/follow.min.css +++ b/dsfr/static/dsfr/dist/component/follow/follow.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../../icons/logo/github-fill.svg);mask-image:url(../../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../../icons/logo/mastodon-fill.svg);mask-image:url(../../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../../icons/logo/snapchat-fill.svg);mask-image:url(../../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../../icons/logo/telegram-fill.svg);mask-image:url(../../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../../icons/logo/threads-fill.svg);mask-image:url(../../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../../icons/logo/fr--tiktok-fill.svg);mask-image:url(../../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../../icons/logo/twitch-fill.svg);mask-image:url(../../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../../icons/logo/twitter-x-fill.svg);mask-image:url(../../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../../icons/logo/vimeo-fill.svg);mask-image:url(../../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../../icons/logo/twitter-x-fill.svg);mask-image:url(../../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */.fr-follow__newsletter .fr-input-group{margin-bottom:.5rem}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0 .25rem 0 0;width:auto}.fr-follow__newsletter .fr-input-wrap{flex-direction:row}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem 0 0 0;margin-bottom:0}.fr-follow__newsletter .fr-messages-group{margin-bottom:.5rem} /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/follow/follow.print.min.css b/dsfr/static/dsfr/dist/component/follow/follow.print.min.css index 942fab639..27768a8ac 100644 --- a/dsfr/static/dsfr/dist/component/follow/follow.print.min.css +++ b/dsfr/static/dsfr/dist/component/follow/follow.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}}@media print and (min-width:48em){.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/footer/footer.legacy.min.css b/dsfr/static/dsfr/dist/component/footer/footer.legacy.min.css index 2847fc03e..f3bbe5862 100644 --- a/dsfr/static/dsfr/dist/component/footer/footer.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/footer/footer.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/footer/footer.main.min.css b/dsfr/static/dsfr/dist/component/footer/footer.main.min.css index fb51078c2..a120ecff3 100644 --- a/dsfr/static/dsfr/dist/component/footer/footer.main.min.css +++ b/dsfr/static/dsfr/dist/component/footer/footer.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}@media (min-width:36em){ /*! media sm */.fr-footer__content-list>li{margin-right:1.5rem}.fr-footer__partners-title{text-align:left}.fr-footer__partners-logos{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;margin-right:-.5rem}.fr-footer__partners-main{margin-bottom:1rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:flex-start;flex-direction:row}.fr-footer__partners-sub>li,.fr-footer__partners-sub>ul>li{margin:0 .5rem}.fr-footer__partners-sub{order:3}}@media (min-width:48em){ /*! media md */.fr-footer__body{margin-bottom:1.5rem}.fr-footer__brand .fr-logo{font-size:1.3125rem;margin:-1.25rem;padding:1.25rem}.fr-footer__brand .fr-logo:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:2rem}.fr-footer__brand{margin-right:1rem}.fr-footer__brand.fr-enlarge-link{align-self:flex-start;margin:-1rem 0 -1rem -1rem;padding:1rem}.fr-footer__content{margin-left:auto}.fr-footer__content-list{margin-top:.5rem}.fr-footer__top{margin:-1.875rem 0 2rem}.fr-footer__bottom-item{margin:.5rem 0 0 .75rem}.fr-footer__bottom-item:before{margin-right:.75rem}.fr-footer__partners-logos{flex-wrap:nowrap;margin-right:-1rem}.fr-footer__partners-main+.fr-footer__partners-sub{padding-left:1rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{padding-top:0}.fr-footer__partners-sub>ul,.fr-footer__partners-sub>ul>ul{justify-content:flex-end}.fr-footer__partners-sub>li,.fr-footer__partners-sub>ul>li{margin:0 1rem}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:.5rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/footer/footer.min.css b/dsfr/static/dsfr/dist/component/footer/footer.min.css index 181b0145a..9d373f7b4 100644 --- a/dsfr/static/dsfr/dist/component/footer/footer.min.css +++ b/dsfr/static/dsfr/dist/component/footer/footer.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}@media (min-width:36em){ /*! media sm */.fr-footer__content-list>li{margin-right:1.5rem}.fr-footer__partners-title{text-align:left}.fr-footer__partners-logos{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;margin-right:-.5rem}.fr-footer__partners-main{margin-bottom:1rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:flex-start;flex-direction:row}.fr-footer__partners-sub>li,.fr-footer__partners-sub>ul>li{margin:0 .5rem}.fr-footer__partners-sub{order:3} /*! media sm */}@media (min-width:48em){ @@ -8,4 +8,4 @@ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}}@media print{.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd;display:none}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}}@media print{.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd;display:none}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/footer/footer.print.min.css b/dsfr/static/dsfr/dist/component/footer/footer.print.min.css index e9faa33ec..212f1aaeb 100644 --- a/dsfr/static/dsfr/dist/component/footer/footer.print.min.css +++ b/dsfr/static/dsfr/dist/component/footer/footer.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd;display:none}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/form/form.legacy.min.css b/dsfr/static/dsfr/dist/component/form/form.legacy.min.css index f2cc3df0c..cdcebb986 100644 --- a/dsfr/static/dsfr/dist/component/form/form.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/form/form.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../../icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(../../icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/form/form.main.min.css b/dsfr/static/dsfr/dist/component/form/form.main.min.css index 00ad38514..071e64b1e 100644 --- a/dsfr/static/dsfr/dist/component/form/form.main.min.css +++ b/dsfr/static/dsfr/dist/component/form/form.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-fieldset__element--inline\@md{flex:0 0 auto}}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/form/form.min.css b/dsfr/static/dsfr/dist/component/form/form.min.css index 518ea94c2..b35e2e66c 100644 --- a/dsfr/static/dsfr/dist/component/form/form.min.css +++ b/dsfr/static/dsfr/dist/component/form/form.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-fieldset__element--inline\@md{flex:0 0 auto} @@ -8,4 +8,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}}@media print{.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../../icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(../../icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}}@media print{.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/form/form.print.min.css b/dsfr/static/dsfr/dist/component/form/form.print.min.css index d528817d4..e58f05117 100644 --- a/dsfr/static/dsfr/dist/component/form/form.print.min.css +++ b/dsfr/static/dsfr/dist/component/form/form.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */@media print{.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media print{.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/header/header.legacy.min.css b/dsfr/static/dsfr/dist/component/header/header.legacy.min.css index ac5d5c954..2d1ed2c70 100644 --- a/dsfr/static/dsfr/dist/component/header/header.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/header/header.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-header .fr-modal{overflow:visible;position:static}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(../../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(../../icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-header .fr-modal{overflow:visible;position:static}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/header/header.main.min.css b/dsfr/static/dsfr/dist/component/header/header.main.min.css index b189498e1..6a989e819 100644 --- a/dsfr/static/dsfr/dist/component/header/header.main.min.css +++ b/dsfr/static/dsfr/dist/component/header/header.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-header__service-title{font-size:1.25rem;line-height:1.75rem}}@media (min-width:62em){ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media (hover:hover) and (pointer:fine){.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/header/header.min.css b/dsfr/static/dsfr/dist/component/header/header.min.css index 0b782b2cf..c559ec803 100644 --- a/dsfr/static/dsfr/dist/component/header/header.min.css +++ b/dsfr/static/dsfr/dist/component/header/header.min.css @@ -1,11 +1,11 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-header__service-title{font-size:1.25rem;line-height:1.75rem} /*! media md */}@media (min-width:62em){ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media (hover:hover) and (pointer:fine){.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-header .fr-modal{overflow:visible;position:static}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media print{.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media (hover:hover) and (pointer:fine){.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(../../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(../../icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-header .fr-modal{overflow:visible;position:static}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media print{.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/header/header.module.min.js b/dsfr/static/dsfr/dist/component/header/header.module.min.js index 37c2a3ba1..cb4a76d8e 100644 --- a/dsfr/static/dsfr/dist/component/header/header.module.min.js +++ b/dsfr/static/dsfr/dist/component/header/header.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const e=window.dsfr,t={HEADER:e.internals.ns.selector("header"),TOOLS_LINKS:e.internals.ns.selector("header__tools-links"),MENU_LINKS:e.internals.ns.selector("header__menu-links"),BUTTONS:`${e.internals.ns.selector("header__tools-links")} ${e.internals.ns.selector("btns-group")}, ${e.internals.ns.selector("header__tools-links")} ${e.internals.ns.selector("links-group")}`,MODALS:`${e.internals.ns.selector("header__search")}${e.internals.ns.selector("modal")}, ${e.internals.ns.selector("header__menu")}${e.internals.ns.selector("modal")}`};class s extends e.core.Instance{static get instanceClassName(){return"HeaderLinks"}init(){const s=this.queryParentSelector(t.HEADER);this.toolsLinks=s.querySelector(t.TOOLS_LINKS),this.menuLinks=s.querySelector(t.MENU_LINKS);const n="-mobile",a=this.toolsLinks.innerHTML.replace(/ +/g," "),r=this.menuLinks.innerHTML.replace(/ +/g," ");let i=a.match(/id="(.*?)"/gm)||[];i=i.map((e=>e.replace('id="',"").replace('"',"")));const o=a.match(/aria-controls="(.*?)"/gm);let l=a.replace(/id="(.*?)"/gm,'id="$1'+n+'"');if(o)for(const e of o){const t=e.replace('aria-controls="',"").replace('"',"");i.includes(t)&&(l=l.replace(`aria-controls="${t}"`,`aria-controls="${t+n}"`))}if(l!==r)switch(e.mode){case e.Modes.ANGULAR:case e.Modes.REACT:case e.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${e.header.doc}`);break;default:this.menuLinks.innerHTML=l}}}class n extends e.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.isResizing=!0}resize(){this.isBreakpoint(e.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.unlistenClick({capture:!0}))}handleClick(t){if(t.target.matches("a, button")&&!t.target.matches("[aria-controls]")&&!t.target.matches(e.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}e.header={HeaderLinks:s,HeaderModal:n,HeaderSelector:t,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},e.internals.register(e.header.HeaderSelector.TOOLS_LINKS,e.header.HeaderLinks),e.internals.register(e.header.HeaderSelector.MODALS,e.header.HeaderModal); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const e=window.dsfr,t={HEADER:e.internals.ns.selector("header"),TOOLS_LINKS:e.internals.ns.selector("header__tools-links"),MENU_LINKS:e.internals.ns.selector("header__menu-links"),BUTTONS:`${e.internals.ns.selector("header__tools-links")} ${e.internals.ns.selector("btns-group")}, ${e.internals.ns.selector("header__tools-links")} ${e.internals.ns.selector("links-group")}`,MODALS:`${e.internals.ns.selector("header__search")}${e.internals.ns.selector("modal")}, ${e.internals.ns.selector("header__menu")}${e.internals.ns.selector("modal")}`};class a extends e.core.Instance{static get instanceClassName(){return"HeaderLinks"}init(){const a=this.queryParentSelector(t.HEADER);this.toolsLinks=a.querySelector(t.TOOLS_LINKS),this.menuLinks=a.querySelector(t.MENU_LINKS);const s="-mobile",r=this.toolsLinks.innerHTML.replace(/ +/g," "),i=this.menuLinks.innerHTML.replace(/ +/g," ");let n=r.match(/id="(.*?)"/gm)||[];n=n.map((e=>e.replace('id="',"").replace('"',"")));const l=["aria-controls","aria-describedby","aria-labelledby"];let o=r.replace(/id="(.*?)"/gm,`id="$1${s}"`);for(const e of l){const t=r.match(new RegExp(`${e}="(.*?)"`,"gm"));if(t)for(const a of t){const t=a.replace(`${e}="`,"").replace('"',"");n.includes(t)&&(o=o.replace(`${e}="${t}"`,`${e}="${t+s}"`))}}if(o!==i)switch(e.mode){case e.Modes.ANGULAR:case e.Modes.REACT:case e.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${e.header.doc}`);break;default:this.menuLinks.innerHTML=o}}}class s extends e.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.storeAria(),this.isResizing=!0}resize(){this.isBreakpoint(e.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.restoreAria(),this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.storeAria(),this.unlistenClick({capture:!0}))}storeAria(){this.hasAttribute("aria-labelledby")&&(this._ariaLabelledby=this.getAttribute("aria-labelledby")),this.hasAttribute("aria-label")&&(this._ariaLabel=this.getAttribute("aria-label")),this.removeAttribute("aria-labelledby"),this.removeAttribute("aria-label")}restoreAria(){this._ariaLabelledby&&this.setAttribute("aria-labelledby",this._ariaLabelledby),this._ariaLabel&&this.setAttribute("aria-label",this._ariaLabel)}handleClick(t){if(t.target.matches("a, button")&&!t.target.matches("[aria-controls]")&&!t.target.matches(e.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}e.header={HeaderLinks:a,HeaderModal:s,HeaderSelector:t,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},e.internals.register(e.header.HeaderSelector.TOOLS_LINKS,e.header.HeaderLinks),e.internals.register(e.header.HeaderSelector.MODALS,e.header.HeaderModal); diff --git a/dsfr/static/dsfr/dist/component/header/header.nomodule.min.js b/dsfr/static/dsfr/dist/component/header/header.nomodule.min.js index c05114263..3e6c5cad2 100644 --- a/dsfr/static/dsfr/dist/component/header/header.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/header/header.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var e=window.dsfr,t={HEADER:e.internals.ns.selector("header"),TOOLS_LINKS:e.internals.ns.selector("header__tools-links"),MENU_LINKS:e.internals.ns.selector("header__menu-links"),BUTTONS:e.internals.ns.selector("header__tools-links")+" "+e.internals.ns.selector("btns-group")+", "+e.internals.ns.selector("header__tools-links")+" "+e.internals.ns.selector("links-group"),MODALS:""+e.internals.ns.selector("header__search")+e.internals.ns.selector("modal")+", "+e.internals.ns.selector("header__menu")+e.internals.ns.selector("modal")},n=function(n){function r(){n.apply(this,arguments)}n&&(r.__proto__=n),r.prototype=Object.create(n&&n.prototype),r.prototype.constructor=r;var a={instanceClassName:{configurable:!0}};return a.instanceClassName.get=function(){return"HeaderLinks"},r.prototype.init=function(){var n=this.queryParentSelector(t.HEADER);this.toolsLinks=n.querySelector(t.TOOLS_LINKS),this.menuLinks=n.querySelector(t.MENU_LINKS);var r="-mobile",a=this.toolsLinks.innerHTML.replace(/ +/g," "),s=this.menuLinks.innerHTML.replace(/ +/g," "),o=a.match(/id="(.*?)"/gm)||[];o=o.map((function(e){return e.replace('id="',"").replace('"',"")}));var i=a.match(/aria-controls="(.*?)"/gm),c=a.replace(/id="(.*?)"/gm,'id="$1'+r+'"');if(i)for(var l=0,d=i;l.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/highlight/highlight.legacy.min.css b/dsfr/static/dsfr/dist/component/highlight/highlight.legacy.min.css index 20d772166..68fc1573e 100644 --- a/dsfr/static/dsfr/dist/component/highlight/highlight.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/highlight/highlight.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/highlight/highlight.main.min.css b/dsfr/static/dsfr/dist/component/highlight/highlight.main.min.css index af89f27b7..394b059b2 100644 --- a/dsfr/static/dsfr/dist/component/highlight/highlight.main.min.css +++ b/dsfr/static/dsfr/dist/component/highlight/highlight.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/highlight/highlight.min.css b/dsfr/static/dsfr/dist/component/highlight/highlight.min.css index a13d7c9a7..8e7e5899f 100644 --- a/dsfr/static/dsfr/dist/component/highlight/highlight.min.css +++ b/dsfr/static/dsfr/dist/component/highlight/highlight.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/highlight/highlight.print.min.css b/dsfr/static/dsfr/dist/component/highlight/highlight.print.min.css index bf57dd861..c9f0258bd 100644 --- a/dsfr/static/dsfr/dist/component/highlight/highlight.print.min.css +++ b/dsfr/static/dsfr/dist/component/highlight/highlight.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/input/input-base/input-base.legacy.min.css b/dsfr/static/dsfr/dist/component/input/input-base/input-base.legacy.min.css index 8766c652b..e817e40c9 100644 --- a/dsfr/static/dsfr/dist/component/input/input-base/input-base.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/input/input-base/input-base.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-input:-ms-input-placeholder{color:#666}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/input/input-base/input-base.main.min.css b/dsfr/static/dsfr/dist/component/input/input-base/input-base.main.min.css index 9bc90445d..4f6393124 100644 --- a/dsfr/static/dsfr/dist/component/input/input-base/input-base.main.min.css +++ b/dsfr/static/dsfr/dist/component/input/input-base/input-base.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/input/input-base/input-base.min.css b/dsfr/static/dsfr/dist/component/input/input-base/input-base.min.css index 8cc5d8d2b..5fea44f82 100644 --- a/dsfr/static/dsfr/dist/component/input/input-base/input-base.min.css +++ b/dsfr/static/dsfr/dist/component/input/input-base/input-base.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ @@ -8,4 +8,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}}@media print{.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-input:-ms-input-placeholder{color:#666}}@media print{.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/input/input-base/input-base.print.min.css b/dsfr/static/dsfr/dist/component/input/input-base/input-base.print.min.css index c393316f3..4bab12e03 100644 --- a/dsfr/static/dsfr/dist/component/input/input-base/input-base.print.min.css +++ b/dsfr/static/dsfr/dist/component/input/input-base/input-base.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/input/input.legacy.min.css b/dsfr/static/dsfr/dist/component/input/input.legacy.min.css index fc4e54720..2caa5ddc5 100644 --- a/dsfr/static/dsfr/dist/component/input/input.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/input/input.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ @@ -8,4 +8,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-input:-ms-input-placeholder{color:#666}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/input/input.main.min.css b/dsfr/static/dsfr/dist/component/input/input.main.min.css index 52fbaf9b5..741ea169a 100644 --- a/dsfr/static/dsfr/dist/component/input/input.main.min.css +++ b/dsfr/static/dsfr/dist/component/input/input.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/input/input.min.css b/dsfr/static/dsfr/dist/component/input/input.min.css index e2294e45c..a77edd3fe 100644 --- a/dsfr/static/dsfr/dist/component/input/input.min.css +++ b/dsfr/static/dsfr/dist/component/input/input.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}@media (min-width:36em){ /*! media sm */ /*! media sm */ @@ -16,4 +16,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}}@media print{.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-input:-ms-input-placeholder{color:#666}}@media print{.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/input/input.print.min.css b/dsfr/static/dsfr/dist/component/input/input.print.min.css index c393316f3..4bab12e03 100644 --- a/dsfr/static/dsfr/dist/component/input/input.print.min.css +++ b/dsfr/static/dsfr/dist/component/input/input.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/link/link.legacy.min.css b/dsfr/static/dsfr/dist/component/link/link.legacy.min.css index afdfb82c5..960981048 100644 --- a/dsfr/static/dsfr/dist/component/link/link.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/link/link.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/link/link.main.min.css b/dsfr/static/dsfr/dist/component/link/link.main.min.css index fca9f2f2a..79cc17509 100644 --- a/dsfr/static/dsfr/dist/component/link/link.main.min.css +++ b/dsfr/static/dsfr/dist/component/link/link.main.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem}}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/link/link.min.css b/dsfr/static/dsfr/dist/component/link/link.min.css index 9cb91ebaf..52daeca15 100644 --- a/dsfr/static/dsfr/dist/component/link/link.min.css +++ b/dsfr/static/dsfr/dist/component/link/link.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} @@ -9,4 +9,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}}@media print{.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}}@media print{.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/link/link.print.min.css b/dsfr/static/dsfr/dist/component/link/link.print.min.css index b66cc8a0a..ee0b0b278 100644 --- a/dsfr/static/dsfr/dist/component/link/link.print.min.css +++ b/dsfr/static/dsfr/dist/component/link/link.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/logo/logo.legacy.min.css b/dsfr/static/dsfr/dist/component/logo/logo.legacy.min.css index 183a6e1d4..60ec7c999 100644 --- a/dsfr/static/dsfr/dist/component/logo/logo.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/logo/logo.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/logo/logo.main.min.css b/dsfr/static/dsfr/dist/component/logo/logo.main.min.css index 6d4571b61..a7f504a93 100644 --- a/dsfr/static/dsfr/dist/component/logo/logo.main.min.css +++ b/dsfr/static/dsfr/dist/component/logo/logo.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/logo/logo.min.css b/dsfr/static/dsfr/dist/component/logo/logo.min.css index 950804d59..05aea7aa2 100644 --- a/dsfr/static/dsfr/dist/component/logo/logo.min.css +++ b/dsfr/static/dsfr/dist/component/logo/logo.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/logo/logo.print.min.css b/dsfr/static/dsfr/dist/component/logo/logo.print.min.css index bca815ccf..2a3caeaaf 100644 --- a/dsfr/static/dsfr/dist/component/logo/logo.print.min.css +++ b/dsfr/static/dsfr/dist/component/logo/logo.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/modal/modal.legacy.min.css b/dsfr/static/dsfr/dist/component/modal/modal.legacy.min.css index 7dcf8b267..76cf4ec4c 100644 --- a/dsfr/static/dsfr/dist/component/modal/modal.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/modal/modal.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/modal/modal.main.min.css b/dsfr/static/dsfr/dist/component/modal/modal.main.min.css index 5b7ae8df7..c4445046a 100644 --- a/dsfr/static/dsfr/dist/component/modal/modal.main.min.css +++ b/dsfr/static/dsfr/dist/component/modal/modal.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-modal{padding-right:var(--scrollbar-width)}.fr-modal--top:before{content:""}.fr-modal:after,.fr-modal:before{flex:1 0 10vh;height:10vh;width:0}.fr-modal:after{content:""}.fr-modal__body{max-height:80vh!important}.fr-modal__header{padding:1rem 2rem}.fr-modal__content{margin-bottom:4rem;padding-left:2rem;padding-right:2rem}.fr-modal__footer{margin-top:-3rem;padding:2rem}.fr-modal__title{font-size:1.5rem;line-height:2rem}}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/modal/modal.min.css b/dsfr/static/dsfr/dist/component/modal/modal.min.css index ab6de6f72..ded05a70f 100644 --- a/dsfr/static/dsfr/dist/component/modal/modal.min.css +++ b/dsfr/static/dsfr/dist/component/modal/modal.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-modal{padding-right:var(--scrollbar-width)}.fr-modal--top:before{content:""}.fr-modal:after,.fr-modal:before{flex:1 0 10vh;height:10vh;width:0}.fr-modal:after{content:""}.fr-modal__body{max-height:80vh!important}.fr-modal__header{padding:1rem 2rem}.fr-modal__content{margin-bottom:4rem;padding-left:2rem;padding-right:2rem}.fr-modal__footer{margin-top:-3rem;padding:2rem}.fr-modal__title{font-size:1.5rem;line-height:2rem} diff --git a/dsfr/static/dsfr/dist/component/modal/modal.module.min.js b/dsfr/static/dsfr/dist/component/modal/modal.module.min.js index ad8f64e67..9fb99a92a 100644 --- a/dsfr/static/dsfr/dist/component/modal/modal.module.min.js +++ b/dsfr/static/dsfr/dist/component/modal/modal.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const t=window.dsfr,e={MODAL:t.internals.ns.selector("modal"),SCROLL_DIVIDER:t.internals.ns.selector("scroll-divider"),BODY:t.internals.ns.selector("modal__body"),TITLE:t.internals.ns.selector("modal__title")};class i extends t.core.DisclosureButton{constructor(){super(t.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const s={CONCEALING_BACKDROP:t.internals.ns.attr("concealing-backdrop")};class n extends t.core.Disclosure{constructor(){super(t.core.DisclosureType.OPENED,e.MODAL,i,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(t.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===t.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(t){t.target===this.node&&"false"!==this.getAttribute(s.CONCEALING_BACKDROP)&&this.conceal()}disclose(t){return!!super.disclose(t)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(t,e){return!!super.conceal(t,e)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(t){this._isDialog=t}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(t,e){const i=this.retrieveNodeId(t,e);this.warn(`add reference to ${e} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",i)}_ensureAccessibleName(){if(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label"))return;this.warn("missing accessible name");const t=this.node.querySelector(e.TITLE),i=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==i:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(i,"primary")}}}const o=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),a=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),r=(t,e)=>{if(!(t instanceof Element))return!1;const i=window.getComputedStyle(t);if(!i)return!1;if("hidden"===i.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===i.display)return!1;t=t.parentElement}return!0};class l{constructor(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){r(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(t){for(const e of t.children)e!==this.element&&(e.contains(this.element)?this.stun(e):this.stunneds.push(new c(e)))}maintainFocus(t){if(!this.element.contains(t.target)){const e=this.focusables;if(0===e.length)return;const i=e[0];t.preventDefault(),i.focus()}}handle(t){if(9!==t.keyCode)return;const e=this.focusables;if(0===e.length)return;const i=e[0],s=e[e.length-1],n=e.indexOf(document.activeElement);t.shiftKey?!this.element.contains(document.activeElement)||n<1?(t.preventDefault(),s.focus()):(document.activeElement.tabIndex>0||e[n-1].tabIndex>0)&&(t.preventDefault(),e[n-1].focus()):this.element.contains(document.activeElement)&&n!==e.length-1&&-1!==n?document.activeElement.tabIndex>0&&(t.preventDefault(),e[n+1].focus()):(t.preventDefault(),i.focus())}get focusables(){let e=t.internals.dom.querySelectorAllArray(this.element,o);const i=t.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(i.length){const t={};for(const e of i){const i=e.getAttribute("name");void 0===t[i]&&(t[i]=new d(i)),t[i].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||"radio"!==e.getAttribute("type").toLowerCase())return!0;const i=e.getAttribute("name");return t[i].keep(e)}))}const s=t.internals.dom.querySelectorAllArray(this.element,a);s.sort(((t,e)=>t.tabIndex-e.tabIndex));const n=e.filter((t=>-1===s.indexOf(t)));return s.concat(n).filter((t=>"-1"!==t.tabIndex&&r(t,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class c{constructor(t){this.element=t,this.inert=t.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class d{constructor(t){this.name=t,this.buttons=[]}push(t){this.buttons.push(t),(t===document.activeElement||t.checked||void 0===this.selected)&&(this.selected=t)}keep(t){return this.selected===t}}class h extends t.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new l}static get instanceClassName(){return"ModalsGroup"}apply(t,e){super.apply(t,e),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class u extends t.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(e.SCROLL_DIVIDER):this.addClass(e.SCROLL_DIVIDER):this.removeClass(e.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(t.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}t.modal={Modal:n,ModalButton:i,ModalBody:u,ModalsGroup:h,ModalSelector:e},t.internals.register(t.modal.ModalSelector.MODAL,t.modal.Modal),t.internals.register(t.modal.ModalSelector.BODY,t.modal.ModalBody),t.internals.register(t.core.RootSelector.ROOT,t.modal.ModalsGroup); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const t=window.dsfr,e={MODAL:t.internals.ns.selector("modal"),SCROLL_DIVIDER:t.internals.ns.selector("scroll-divider"),BODY:t.internals.ns.selector("modal__body"),TITLE:t.internals.ns.selector("modal__title")};class i extends t.core.DisclosureButton{constructor(){super(t.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const s={CONCEALING_BACKDROP:t.internals.ns.attr("concealing-backdrop")};class n extends t.core.Disclosure{constructor(){super(t.core.DisclosureType.OPENED,e.MODAL,i,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(t.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===t.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(t){t.target===this.node&&"false"!==this.getAttribute(s.CONCEALING_BACKDROP)&&this.conceal()}disclose(t){return!!super.disclose(t)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(t,e){return!!super.conceal(t,e)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(t){this._isDialog=t}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(t,e){const i=this.retrieveNodeId(t,e);this.warn(`add reference to ${e} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",i)}_ensureAccessibleName(){if(!this.isEnabled||this.isEnabled&&(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label")))return;this.warn("missing accessible name");const t=this.node.querySelector(e.TITLE),i=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==i:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(i,"primary")}}}const a=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),o=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),r=(t,e)=>{if(!(t instanceof Element))return!1;const i=window.getComputedStyle(t);if(!i)return!1;if("hidden"===i.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===i.display)return!1;t=t.parentElement}return!0};class l{constructor(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){r(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(t){for(const e of t.children)e!==this.element&&(e.contains(this.element)?this.stun(e):this.stunneds.push(new c(e)))}maintainFocus(t){if(!this.element.contains(t.target)){const e=this.focusables;if(0===e.length)return;const i=e[0];t.preventDefault(),i.focus()}}handle(t){if(9!==t.keyCode)return;const e=this.focusables;if(0===e.length)return;const i=e[0],s=e[e.length-1],n=e.indexOf(document.activeElement);t.shiftKey?!this.element.contains(document.activeElement)||n<1?(t.preventDefault(),s.focus()):(document.activeElement.tabIndex>0||e[n-1].tabIndex>0)&&(t.preventDefault(),e[n-1].focus()):this.element.contains(document.activeElement)&&n!==e.length-1&&-1!==n?document.activeElement.tabIndex>0&&(t.preventDefault(),e[n+1].focus()):(t.preventDefault(),i.focus())}get focusables(){let e=t.internals.dom.querySelectorAllArray(this.element,a);const i=t.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(i.length){const t={};for(const e of i){const i=e.getAttribute("name");void 0===t[i]&&(t[i]=new d(i)),t[i].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||e.getAttribute("type")&&"radio"!==e.getAttribute("type").toLowerCase())return!0;const i=e.getAttribute("name");return t[i].keep(e)}))}const s=t.internals.dom.querySelectorAllArray(this.element,o);s.sort(((t,e)=>t.tabIndex-e.tabIndex));const n=e.filter((t=>-1===s.indexOf(t)));return s.concat(n).filter((t=>"-1"!==t.tabIndex&&r(t,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class c{constructor(t){this.element=t,this.inert=t.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class d{constructor(t){this.name=t,this.buttons=[]}push(t){this.buttons.push(t),(t===document.activeElement||t.checked||void 0===this.selected)&&(this.selected=t)}keep(t){return this.selected===t}}class h extends t.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new l}static get instanceClassName(){return"ModalsGroup"}apply(t,e){super.apply(t,e),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class u extends t.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(e.SCROLL_DIVIDER):this.addClass(e.SCROLL_DIVIDER):this.removeClass(e.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(t.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}t.modal={Modal:n,ModalButton:i,ModalBody:u,ModalsGroup:h,ModalSelector:e},t.internals.register(t.modal.ModalSelector.MODAL,t.modal.Modal),t.internals.register(t.modal.ModalSelector.BODY,t.modal.ModalBody),t.internals.register(t.core.RootSelector.ROOT,t.modal.ModalsGroup); diff --git a/dsfr/static/dsfr/dist/component/modal/modal.nomodule.min.js b/dsfr/static/dsfr/dist/component/modal/modal.nomodule.min.js index 92d1c605e..b1a59308a 100644 --- a/dsfr/static/dsfr/dist/component/modal/modal.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/modal/modal.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t=window.dsfr,e={MODAL:t.internals.ns.selector("modal"),SCROLL_DIVIDER:t.internals.ns.selector("scroll-divider"),BODY:t.internals.ns.selector("modal__body"),TITLE:t.internals.ns.selector("modal__title")},i=function(e){function i(){e.call(this,t.core.DisclosureType.OPENED)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(i,n),i}(t.core.DisclosureButton),n={CONCEALING_BACKDROP:t.internals.ns.attr("concealing-backdrop")},o=function(o){function s(){o.call(this,t.core.DisclosureType.OPENED,e.MODAL,i,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}o&&(s.__proto__=o),s.prototype=Object.create(o&&o.prototype),s.prototype.constructor=s;var r={body:{configurable:!0},isDialog:{configurable:!0}},a={instanceClassName:{configurable:!0}};return a.instanceClassName.get=function(){return"Modal"},s.prototype.init=function(){o.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(t.core.RootEmission.KEYDOWN,this._keydown.bind(this))},s.prototype._keydown=function(e){if(e===t.core.KeyCodes.ESCAPE)this._escape()},s.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},s.prototype.retrieved=function(){this._ensureAccessibleName()},r.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},s.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(n.CONCEALING_BACKDROP)&&this.conceal()},s.prototype.disclose=function(t){return!!o.prototype.disclose.call(this,t)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},s.prototype.conceal=function(t,e){return!!o.prototype.conceal.call(this,t,e)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},r.isDialog.get=function(){return this._isDialog},r.isDialog.set=function(t){this._isDialog=t},s.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},s.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},s.prototype._setAccessibleName=function(t,e){var i=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",i)},s.prototype._ensureAccessibleName=function(){if(!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label")){this.warn("missing accessible name");var t=this.node.querySelector(e.TITLE),i=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==i:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(i,"primary")}}},Object.defineProperties(s.prototype,r),Object.defineProperties(s,a),s}(t.core.Disclosure),s=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),r=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),a=function(t,e){if(!(t instanceof Element))return!1;var i=window.getComputedStyle(t);if(!i)return!1;if("hidden"===i.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===i.display)return!1;t=t.parentElement}return!0},l=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},c={trapped:{configurable:!0},focusables:{configurable:!0}};c.trapped.get=function(){return null!==this.element},l.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},l.prototype.wait=function(){a(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},l.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},l.prototype.stun=function(t){for(var e=0,i=t.children;e0||e[o-1].tabIndex>0)&&(t.preventDefault(),e[o-1].focus()):this.element.contains(document.activeElement)&&o!==e.length-1&&-1!==o?document.activeElement.tabIndex>0&&(t.preventDefault(),e[o+1].focus()):(t.preventDefault(),i.focus())}}},c.focusables.get=function(){var e=this,i=t.internals.dom.querySelectorAllArray(this.element,s),n=t.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(n.length){for(var o={},l=0,c=n;lthis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(e.SCROLL_DIVIDER):this.addClass(e.SCROLL_DIVIDER):this.removeClass(e.SCROLL_DIVIDER)},n.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},n.prototype.adjust=function(){var e=32*(this.isBreakpoint(t.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()},Object.defineProperties(n,o),n}(t.core.Instance);t.modal={Modal:o,ModalButton:i,ModalBody:p,ModalsGroup:d,ModalSelector:e},t.internals.register(t.modal.ModalSelector.MODAL,t.modal.Modal),t.internals.register(t.modal.ModalSelector.BODY,t.modal.ModalBody),t.internals.register(t.core.RootSelector.ROOT,t.modal.ModalsGroup)}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t=window.dsfr,e={MODAL:t.internals.ns.selector("modal"),SCROLL_DIVIDER:t.internals.ns.selector("scroll-divider"),BODY:t.internals.ns.selector("modal__body"),TITLE:t.internals.ns.selector("modal__title")},i=function(e){function i(){e.call(this,t.core.DisclosureType.OPENED)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(i,n),i}(t.core.DisclosureButton),n={CONCEALING_BACKDROP:t.internals.ns.attr("concealing-backdrop")},o=function(o){function s(){o.call(this,t.core.DisclosureType.OPENED,e.MODAL,i,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}o&&(s.__proto__=o),s.prototype=Object.create(o&&o.prototype),s.prototype.constructor=s;var r={body:{configurable:!0},isDialog:{configurable:!0}},a={instanceClassName:{configurable:!0}};return a.instanceClassName.get=function(){return"Modal"},s.prototype.init=function(){o.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(t.core.RootEmission.KEYDOWN,this._keydown.bind(this))},s.prototype._keydown=function(e){if(e===t.core.KeyCodes.ESCAPE)this._escape()},s.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},s.prototype.retrieved=function(){this._ensureAccessibleName()},r.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},s.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(n.CONCEALING_BACKDROP)&&this.conceal()},s.prototype.disclose=function(t){return!!o.prototype.disclose.call(this,t)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},s.prototype.conceal=function(t,e){return!!o.prototype.conceal.call(this,t,e)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},r.isDialog.get=function(){return this._isDialog},r.isDialog.set=function(t){this._isDialog=t},s.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},s.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},s.prototype._setAccessibleName=function(t,e){var i=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",i)},s.prototype._ensureAccessibleName=function(){if(this.isEnabled&&(!this.isEnabled||!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label"))){this.warn("missing accessible name");var t=this.node.querySelector(e.TITLE),i=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==i:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(i,"primary")}}},Object.defineProperties(s.prototype,r),Object.defineProperties(s,a),s}(t.core.Disclosure),s=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),r=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),a=function(t,e){if(!(t instanceof Element))return!1;var i=window.getComputedStyle(t);if(!i)return!1;if("hidden"===i.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===i.display)return!1;t=t.parentElement}return!0},l=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},c={trapped:{configurable:!0},focusables:{configurable:!0}};c.trapped.get=function(){return null!==this.element},l.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},l.prototype.wait=function(){a(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},l.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},l.prototype.stun=function(t){for(var e=0,i=t.children;e0||e[o-1].tabIndex>0)&&(t.preventDefault(),e[o-1].focus()):this.element.contains(document.activeElement)&&o!==e.length-1&&-1!==o?document.activeElement.tabIndex>0&&(t.preventDefault(),e[o+1].focus()):(t.preventDefault(),i.focus())}}},c.focusables.get=function(){var e=this,i=t.internals.dom.querySelectorAllArray(this.element,s),n=t.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(n.length){for(var o={},l=0,c=n;lthis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(e.SCROLL_DIVIDER):this.addClass(e.SCROLL_DIVIDER):this.removeClass(e.SCROLL_DIVIDER)},n.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},n.prototype.adjust=function(){var e=32*(this.isBreakpoint(t.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()},Object.defineProperties(n,o),n}(t.core.Instance);t.modal={Modal:o,ModalButton:i,ModalBody:p,ModalsGroup:d,ModalSelector:e},t.internals.register(t.modal.ModalSelector.MODAL,t.modal.Modal),t.internals.register(t.modal.ModalSelector.BODY,t.modal.ModalBody),t.internals.register(t.core.RootSelector.ROOT,t.modal.ModalsGroup)}(); diff --git a/dsfr/static/dsfr/dist/component/modal/modal.print.min.css b/dsfr/static/dsfr/dist/component/modal/modal.print.min.css index c9badf1e7..957d16883 100644 --- a/dsfr/static/dsfr/dist/component/modal/modal.print.min.css +++ b/dsfr/static/dsfr/dist/component/modal/modal.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/navigation/navigation.legacy.min.css b/dsfr/static/dsfr/dist/component/navigation/navigation.legacy.min.css index 052fcc3ac..6fd19c549 100644 --- a/dsfr/static/dsfr/dist/component/navigation/navigation.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/navigation/navigation.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/navigation/navigation.main.min.css b/dsfr/static/dsfr/dist/component/navigation/navigation.main.min.css index 165db6bcd..a9a525386 100644 --- a/dsfr/static/dsfr/dist/component/navigation/navigation.main.min.css +++ b/dsfr/static/dsfr/dist/component/navigation/navigation.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)}}@media (min-width:78em){ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-nav__list{border-bottom:1px solid;border-top:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}}@media (prefers-reduced-motion:reduce){.fr-nav__btn:after{transition:none}} \ No newline at end of file + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)}}@media (min-width:78em){ + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-nav__list{border-bottom:1px solid;border-top:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}}@media (prefers-reduced-motion:reduce){.fr-nav__btn:after{transition:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/navigation/navigation.min.css b/dsfr/static/dsfr/dist/component/navigation/navigation.min.css index 3c5398e50..64047439f 100644 --- a/dsfr/static/dsfr/dist/component/navigation/navigation.min.css +++ b/dsfr/static/dsfr/dist/component/navigation/navigation.min.css @@ -1,11 +1,11 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ /*! media md */}@media (min-width:62em){ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-nav__list{border-bottom:1px solid;border-top:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}}@media (prefers-reduced-motion:reduce){.fr-nav__btn:after{transition:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}}@media print{.fr-navigation{display:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-nav__list{border-bottom:1px solid;border-top:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}}@media (prefers-reduced-motion:reduce){.fr-nav__btn:after{transition:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}}@media print{.fr-navigation{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/navigation/navigation.module.min.js b/dsfr/static/dsfr/dist/component/navigation/navigation.module.min.js index 355826de3..49618cc1b 100644 --- a/dsfr/static/dsfr/dist/component/navigation/navigation.module.min.js +++ b/dsfr/static/dsfr/dist/component/navigation/navigation.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const t=window.dsfr,e=t.internals.ns.selector("nav__item"),i=t.internals.ns.selector("collapse"),s={NAVIGATION:t.internals.ns.selector("nav"),COLLAPSE:`${e} > ${i}, ${e} > *:not(${e}):not(${i}) > ${i}, ${e} > *:not(${e}):not(${i}) > *:not(${e}):not(${i}) > ${i}`,COLLAPSE_LEGACY:`${e} ${i}`,ITEM:e,ITEM_RIGHT:`${e}--align-right`,MENU:t.internals.ns.selector("menu"),BUTTON:t.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:t.internals.ns.selector("translate__btn")};class n extends t.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(t.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(t.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(t.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(t.core.Breakpoints.LG)&&e.element.node.matches(s.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,i=e.element.node.getBoundingClientRect().width,s=this.element.node.getBoundingClientRect().left;this.isRightAligned=s+i>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?t.internals.dom.addClass(this.element.node,s.ITEM_RIGHT):t.internals.dom.removeClass(this.element.node,s.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((t=>t.getInstance("CollapseButton"))).filter((t=>null!==t&&(t.hasClass(s.BUTTON)||t.hasClass(s.TRANSLATE_BUTTON))))[0]}}const a={NONE:-1,INSIDE:0,OUTSIDE:1};class o extends t.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(t.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(t.internals.legacy.isLegacy?s.COLLAPSE_LEGACY:s.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(t.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?a.INSIDE:a.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(t.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(t.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case a.OUTSIDE:this.index=-1;break;case a.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=a.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(t){-1===t&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=t}get canUngroup(){return!this.isBreakpoint(t.core.Breakpoints.LG)}resize(){this.update()}}t.navigation={Navigation:o,NavigationItem:n,NavigationMousePosition:a,NavigationSelector:s},t.internals.register(t.navigation.NavigationSelector.NAVIGATION,t.navigation.Navigation),t.internals.register(t.navigation.NavigationSelector.ITEM,t.navigation.NavigationItem); diff --git a/dsfr/static/dsfr/dist/component/navigation/navigation.nomodule.min.js b/dsfr/static/dsfr/dist/component/navigation/navigation.nomodule.min.js index 4f31b90a5..9051d14fe 100644 --- a/dsfr/static/dsfr/dist/component/navigation/navigation.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/navigation/navigation.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var t=window.dsfr,e=t.internals.ns.selector("nav__item"),i=t.internals.ns.selector("collapse"),n={NAVIGATION:t.internals.ns.selector("nav"),COLLAPSE:e+" > "+i+", "+e+" > *:not("+e+"):not("+i+") > "+i+", "+e+" > *:not("+e+"):not("+i+") > *:not("+e+"):not("+i+") > "+i,COLLAPSE_LEGACY:e+" "+i,ITEM:e,ITEM_RIGHT:e+"--align-right",MENU:t.internals.ns.selector("menu"),BUTTON:t.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:t.internals.ns.selector("translate__btn")},s=function(e){function i(){e.call(this),this._isRightAligned=!1}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var s={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},o={instanceClassName:{configurable:!0}};return o.instanceClassName.get=function(){return"NavigationItem"},i.prototype.init=function(){this.addAscent(t.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(t.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},i.prototype.resize=function(){this.calculate()},i.prototype.calculate=function(){var e=this.element.getDescendantInstances(t.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(t.core.Breakpoints.LG)&&e.element.node.matches(n.MENU)){var i=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,o=this.element.node.getBoundingClientRect().left;this.isRightAligned=o+s>i}else this.isRightAligned=!1},s.isRightAligned.get=function(){return this._isRightAligned},s.isRightAligned.set=function(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?t.internals.dom.addClass(this.element.node,n.ITEM_RIGHT):t.internals.dom.removeClass(this.element.node,n.ITEM_RIGHT))},s.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(n.BUTTON)||t.hasClass(n.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(i.prototype,s),Object.defineProperties(i,o),i}(t.core.Instance),o={NONE:-1,INSIDE:0,OUTSIDE:1},r=function(e){function i(){e.apply(this,arguments)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var s={index:{configurable:!0},canUngroup:{configurable:!0}},r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Navigation"},i.prototype.init=function(){e.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(t.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},i.prototype.validate=function(i){return e.prototype.validate.call(this,i)&&i.element.node.matches(t.internals.legacy.isLegacy?n.COLLAPSE_LEGACY:n.COLLAPSE)},i.prototype.handleMouseDown=function(e){this.isBreakpoint(t.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?o.INSIDE:o.OUTSIDE,this.requestPosition())},i.prototype.handleClick=function(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(t.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},i.prototype._handleRootClick=function(e){this.isBreakpoint(t.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))},i.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},i.prototype.getPosition=function(){if(this.out)switch(this.position){case o.OUTSIDE:this.index=-1;break;case o.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},i.prototype.requested=function(){this.position=o.NONE,this.out=!1,this.isRequesting=!1},s.index.get=function(){return e.prototype.index},s.index.set=function(t){-1===t&&this.current&&this.current.hasFocus&&this.current.focus(),e.prototype.index=t},s.canUngroup.get=function(){return!this.isBreakpoint(t.core.Breakpoints.LG)},i.prototype.resize=function(){this.update()},Object.defineProperties(i.prototype,s),Object.defineProperties(i,r),i}(t.core.CollapsesGroup);t.navigation={Navigation:r,NavigationItem:s,NavigationMousePosition:o,NavigationSelector:n},t.internals.register(t.navigation.NavigationSelector.NAVIGATION,t.navigation.Navigation),t.internals.register(t.navigation.NavigationSelector.ITEM,t.navigation.NavigationItem)}(); diff --git a/dsfr/static/dsfr/dist/component/navigation/navigation.print.min.css b/dsfr/static/dsfr/dist/component/navigation/navigation.print.min.css index 509f11ba5..9a8a935f2 100644 --- a/dsfr/static/dsfr/dist/component/navigation/navigation.print.min.css +++ b/dsfr/static/dsfr/dist/component/navigation/navigation.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-navigation{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/notice/notice.legacy.min.css b/dsfr/static/dsfr/dist/component/notice/notice.legacy.min.css index 5af0dd831..d4591736c 100644 --- a/dsfr/static/dsfr/dist/component/notice/notice.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/notice/notice.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/notice/notice.main.min.css b/dsfr/static/dsfr/dist/component/notice/notice.main.min.css index 951e87ebc..9235d65f4 100644 --- a/dsfr/static/dsfr/dist/component/notice/notice.main.min.css +++ b/dsfr/static/dsfr/dist/component/notice/notice.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/tornado-fill.svg);mask-image:url(../../icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/typhoon-fill.svg);mask-image:url(../../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/typhoon-fill.svg);mask-image:url(../../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}@media (min-width:36em){ /*! media sm */.fr-notice__desc,.fr-notice__title{display:inline}}@media (min-width:48em){ - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}}@media (min-width:62em){ + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem}}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/notice/notice.min.css b/dsfr/static/dsfr/dist/component/notice/notice.min.css index 2edbcf3a2..0098fcb14 100644 --- a/dsfr/static/dsfr/dist/component/notice/notice.min.css +++ b/dsfr/static/dsfr/dist/component/notice/notice.min.css @@ -1,11 +1,11 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/tornado-fill.svg);mask-image:url(../../icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/typhoon-fill.svg);mask-image:url(../../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../../icons/weather/typhoon-fill.svg);mask-image:url(../../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}@media (min-width:36em){ /*! media sm */.fr-notice__desc,.fr-notice__title{display:inline} /*! media sm */}@media (min-width:48em){ - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */}@media (min-width:62em){ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}}@media print{.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}}@media print{.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/notice/notice.print.min.css b/dsfr/static/dsfr/dist/component/notice/notice.print.min.css index 4cdd98669..ea717cebf 100644 --- a/dsfr/static/dsfr/dist/component/notice/notice.print.min.css +++ b/dsfr/static/dsfr/dist/component/notice/notice.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/pagination/pagination.legacy.min.css b/dsfr/static/dsfr/dist/component/pagination/pagination.legacy.min.css index c0c62bf22..9cc19751b 100644 --- a/dsfr/static/dsfr/dist/component/pagination/pagination.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/pagination/pagination.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/pagination/pagination.main.min.css b/dsfr/static/dsfr/dist/component/pagination/pagination.main.min.css index b4b825ea5..2ae38bddf 100644 --- a/dsfr/static/dsfr/dist/component/pagination/pagination.main.min.css +++ b/dsfr/static/dsfr/dist/component/pagination/pagination.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/pagination/pagination.min.css b/dsfr/static/dsfr/dist/component/pagination/pagination.min.css index 3017cf0a0..bb4d7447c 100644 --- a/dsfr/static/dsfr/dist/component/pagination/pagination.min.css +++ b/dsfr/static/dsfr/dist/component/pagination/pagination.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ @@ -8,4 +8,4 @@ /*! media lg */.fr-pagination__link--first.fr-pagination__link--lg-label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--lg-label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--lg-label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--lg-label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--lg-label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--lg-label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--lg-label:before{content:none}.fr-pagination__link--last.fr-pagination__link--lg-label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--lg-label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--lg-label:before{content:none} /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media print{.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media print{.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/pagination/pagination.print.min.css b/dsfr/static/dsfr/dist/component/pagination/pagination.print.min.css index 400da0e94..968ede086 100644 --- a/dsfr/static/dsfr/dist/component/pagination/pagination.print.min.css +++ b/dsfr/static/dsfr/dist/component/pagination/pagination.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/password/password.legacy.min.css b/dsfr/static/dsfr/dist/component/password/password.legacy.min.css index 51273ea8b..8e508c3b9 100644 --- a/dsfr/static/dsfr/dist/component/password/password.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/password/password.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/password/password.main.min.css b/dsfr/static/dsfr/dist/component/password/password.main.min.css index de8ec0469..7ccc33628 100644 --- a/dsfr/static/dsfr/dist/component/password/password.main.min.css +++ b/dsfr/static/dsfr/dist/component/password/password.main.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/password/password.min.css b/dsfr/static/dsfr/dist/component/password/password.min.css index ff078afef..37d29134e 100644 --- a/dsfr/static/dsfr/dist/component/password/password.min.css +++ b/dsfr/static/dsfr/dist/component/password/password.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/password/password.module.min.js b/dsfr/static/dsfr/dist/component/password/password.module.min.js index 065c4286e..3edd69ced 100644 --- a/dsfr/static/dsfr/dist/component/password/password.module.min.js +++ b/dsfr/static/dsfr/dist/component/password/password.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const s=window.dsfr,t={TOGGLE:s.internals.ns.emission("password","toggle"),ADJUST:s.internals.ns.emission("password","adjust")};class e extends s.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(t.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const s=getComputedStyle(this.node.parentNode);return parseInt(s.width)}get isChecked(){return this.node.checked}set isChecked(s){this._isChecked=s,this.ascend(t.TOGGLE,s)}handleClick(){this.isChecked=!this._isChecked}swapFont(s){this.ascend(t.ADJUST,this.width)}}class i extends s.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(t.TOGGLE,this.toggle.bind(this)),this.addAscent(t.ADJUST,this.adjust.bind(this))}toggle(s){this.descend(t.TOGGLE,s)}adjust(s){this.descend(t.ADJUST,s)}}const a={PASSWORD:s.internals.ns.selector("password"),INPUT:s.internals.ns.selector("password__input"),LABEL:s.internals.ns.selector("password__label"),TOOGLE:`${s.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class n extends s.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(t.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(s){this.isRevealed=s,this.setAttribute("type",s?"text":"password")}get isRevealed(){return this._isRevealed}capslock(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(s.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(s.internals.ns.attr("capslock")))}set isRevealed(s){this._isRevealed=s,this.setAttribute("type",s?"text":"password")}}class d extends s.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(t.ADJUST,this.adjust.bind(this))}adjust(s){const t=Math.ceil(s/16);this.node.style.paddingRight=t+"rem"}}s.password={Password:i,PasswordToggle:e,PasswordSelector:a,PasswordInput:n,PasswordLabel:d},s.internals.register(s.password.PasswordSelector.INPUT,s.password.PasswordInput),s.internals.register(s.password.PasswordSelector.PASSWORD,s.password.Password),s.internals.register(s.password.PasswordSelector.TOOGLE,s.password.PasswordToggle),s.internals.register(s.password.PasswordSelector.LABEL,s.password.PasswordLabel); diff --git a/dsfr/static/dsfr/dist/component/password/password.nomodule.min.js b/dsfr/static/dsfr/dist/component/password/password.nomodule.min.js index e01c78d0e..10fb430a7 100644 --- a/dsfr/static/dsfr/dist/component/password/password.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/password/password.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var t=window.dsfr,e={TOGGLE:t.internals.ns.emission("password","toggle"),ADJUST:t.internals.ns.emission("password","adjust")},s=function(t){function s(){t.apply(this,arguments)}t&&(s.__proto__=t),s.prototype=Object.create(t&&t.prototype),s.prototype.constructor=s;var o={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},s.prototype.init=function(){this.listenClick(),this.ascend(e.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},o.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},o.isChecked.get=function(){return this.node.checked},o.isChecked.set=function(t){this._isChecked=t,this.ascend(e.TOGGLE,t)},s.prototype.handleClick=function(){this.isChecked=!this._isChecked},s.prototype.swapFont=function(t){this.ascend(e.ADJUST,this.width)},Object.defineProperties(s.prototype,o),Object.defineProperties(s,n),s}(t.core.Instance),o=function(t){function s(){t.apply(this,arguments)}t&&(s.__proto__=t),s.prototype=Object.create(t&&t.prototype),s.prototype.constructor=s;var o={instanceClassName:{configurable:!0}};return o.instanceClassName.get=function(){return"Password"},s.prototype.init=function(){this.addAscent(e.TOGGLE,this.toggle.bind(this)),this.addAscent(e.ADJUST,this.adjust.bind(this))},s.prototype.toggle=function(t){this.descend(e.TOGGLE,t)},s.prototype.adjust=function(t){this.descend(e.ADJUST,t)},Object.defineProperties(s,o),s}(t.core.Instance),n={PASSWORD:t.internals.ns.selector("password"),INPUT:t.internals.ns.selector("password__input"),LABEL:t.internals.ns.selector("password__label"),TOOGLE:t.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},i=function(s){function o(){s.apply(this,arguments)}s&&(o.__proto__=s),o.prototype=Object.create(s&&s.prototype),o.prototype.constructor=o;var n={isRevealed:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"PasswordInput"},o.prototype.init=function(){this.addDescent(e.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},o.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},n.isRevealed.get=function(){return this._isRevealed},o.prototype.capslock=function(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(t.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(t.internals.ns.attr("capslock")))},n.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(o.prototype,n),Object.defineProperties(o,i),o}(t.core.Instance),r=function(t){function s(){t.apply(this,arguments)}t&&(s.__proto__=t),s.prototype=Object.create(t&&t.prototype),s.prototype.constructor=s;var o={instanceClassName:{configurable:!0}};return o.instanceClassName.get=function(){return"PasswordLabel"},s.prototype.init=function(){this.addDescent(e.ADJUST,this.adjust.bind(this))},s.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(s,o),s}(t.core.Instance);t.password={Password:o,PasswordToggle:s,PasswordSelector:n,PasswordInput:i,PasswordLabel:r},t.internals.register(t.password.PasswordSelector.INPUT,t.password.PasswordInput),t.internals.register(t.password.PasswordSelector.PASSWORD,t.password.Password),t.internals.register(t.password.PasswordSelector.TOOGLE,t.password.PasswordToggle),t.internals.register(t.password.PasswordSelector.LABEL,t.password.PasswordLabel)}(); diff --git a/dsfr/static/dsfr/dist/component/password/password.print.min.css b/dsfr/static/dsfr/dist/component/password/password.print.min.css index e731b6fbe..d826b98c9 100644 --- a/dsfr/static/dsfr/dist/component/password/password.print.min.css +++ b/dsfr/static/dsfr/dist/component/password/password.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/quote/quote.legacy.min.css b/dsfr/static/dsfr/dist/component/quote/quote.legacy.min.css index 52d49c90e..b1eb853e1 100644 --- a/dsfr/static/dsfr/dist/component/quote/quote.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/quote/quote.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/quote/quote.main.min.css b/dsfr/static/dsfr/dist/component/quote/quote.main.min.css index 8fe2e8ecb..85db01743 100644 --- a/dsfr/static/dsfr/dist/component/quote/quote.main.min.css +++ b/dsfr/static/dsfr/dist/component/quote/quote.main.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/editor/fr--quote-line.svg);mask-image:url(../../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-quote{background-position:0 0;background-size:1px 100%;padding:0 0 0 2rem}.fr-quote--column{margin-left:13.5rem;min-height:13rem}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:0}.fr-quote--column figcaption{min-height:auto}.fr-quote__image{height:11.5rem;left:-13.5rem;margin-top:-5.75rem;position:absolute;top:50%;width:11.5rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/quote/quote.min.css b/dsfr/static/dsfr/dist/component/quote/quote.min.css index 86d2914fd..66b9b52f7 100644 --- a/dsfr/static/dsfr/dist/component/quote/quote.min.css +++ b/dsfr/static/dsfr/dist/component/quote/quote.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/editor/fr--quote-line.svg);mask-image:url(../../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/quote/quote.print.min.css b/dsfr/static/dsfr/dist/component/quote/quote.print.min.css index d4157bb21..7a474a3d8 100644 --- a/dsfr/static/dsfr/dist/component/quote/quote.print.min.css +++ b/dsfr/static/dsfr/dist/component/quote/quote.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/radio/radio.legacy.min.css b/dsfr/static/dsfr/dist/component/radio/radio.legacy.min.css index c6cbf442b..ec842aeba 100644 --- a/dsfr/static/dsfr/dist/component/radio/radio.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/radio/radio.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/radio/radio.main.min.css b/dsfr/static/dsfr/dist/component/radio/radio.main.min.css index 5a108be58..84feae645 100644 --- a/dsfr/static/dsfr/dist/component/radio/radio.main.min.css +++ b/dsfr/static/dsfr/dist/component/radio/radio.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/radio/radio.min.css b/dsfr/static/dsfr/dist/component/radio/radio.min.css index 56652fe61..23c4533b9 100644 --- a/dsfr/static/dsfr/dist/component/radio/radio.min.css +++ b/dsfr/static/dsfr/dist/component/radio/radio.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ diff --git a/dsfr/static/dsfr/dist/component/radio/radio.print.min.css b/dsfr/static/dsfr/dist/component/radio/radio.print.min.css index fc1a17a9e..d61fca62f 100644 --- a/dsfr/static/dsfr/dist/component/radio/radio.print.min.css +++ b/dsfr/static/dsfr/dist/component/radio/radio.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/range/range.legacy.min.css b/dsfr/static/dsfr/dist/component/range/range.legacy.min.css index fe6861d3f..05b013ee5 100644 --- a/dsfr/static/dsfr/dist/component/range/range.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/range/range.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/range/range.main.min.css b/dsfr/static/dsfr/dist/component/range/range.main.min.css index 0787b34db..1eab6c2fd 100644 --- a/dsfr/static/dsfr/dist/component/range/range.main.min.css +++ b/dsfr/static/dsfr/dist/component/range/range.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/range/range.min.css b/dsfr/static/dsfr/dist/component/range/range.min.css index f89ce635b..25a8281b6 100644 --- a/dsfr/static/dsfr/dist/component/range/range.min.css +++ b/dsfr/static/dsfr/dist/component/range/range.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ @@ -8,4 +8,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/range/range.module.min.js b/dsfr/static/dsfr/dist/component/range/range.module.min.js index 2520d21f5..b1208c845 100644 --- a/dsfr/static/dsfr/dist/component/range/range.module.min.js +++ b/dsfr/static/dsfr/dist/component/range/range.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const t=window.dsfr,e={RANGE:t.internals.ns.selector("range"),RANGE_SM:t.internals.ns.selector("range--sm"),RANGE_STEP:t.internals.ns.selector("range--step"),RANGE_DOUBLE:t.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:t.internals.ns.selector("range--double")+t.internals.ns.selector("range--step"),RANGE_INPUT:t.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${t.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:t.internals.ns.selector("range__output"),RANGE_MIN:t.internals.ns.selector("range__min"),RANGE_MAX:t.internals.ns.selector("range__max"),RANGE_PREFIX:t.internals.ns.attr("prefix"),RANGE_SUFFIX:t.internals.ns.attr("suffix")},s={VALUE:t.internals.ns.emission("range","value"),VALUE2:t.internals.ns.emission("range","value2"),OUTPUT:t.internals.ns.emission("range","output"),CONSTRAINTS:t.internals.ns.emission("range","constraints"),MIN:t.internals.ns.emission("range","min"),MAX:t.internals.ns.emission("range","max"),STEP:t.internals.ns.emission("range","step"),PREFIX:t.internals.ns.emission("range","prefix"),SUFFIX:t.internals.ns.emission("range","suffix"),DISABLED:t.internals.ns.emission("range","disabled"),ENABLE_POINTER:t.internals.ns.emission("range","enable_pointer")};class i{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())}setPrefix(t){this._prefix=null!==t?t:""}setSuffix(t){this._suffix=null!==t?t:""}_decorate(t){return`${this._prefix}${t}${this._suffix}`}get width(){return this._width}set width(t){this._width=t}get isSm(){return this._isSm}set isSm(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())}setThumbSize(t,e=1){this._thumbSize=t,this._innerPadding=t*e}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(t){this._value=t}get outputX(){return this._outputX}setConstraints(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(t){return(t-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:`${(this._innerWidth*t+.5*this._innerPadding).toFixed(2)}px`}}}class n extends i{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const t=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/t,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class h extends i{get value2(){return this._value}set value2(t){this._value2!==t&&(this._value2=t,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(t){super.setThumbSize(t,2)}_update(){super._update();const t=this._getRatio(.5*(this._value+this._value2));this._translateX=t*this._width,this._centerPercent=100*t;const e=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*e+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class r extends h{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const t=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/t,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const a="step",d="double",_="double-step",o="default";class l extends t.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(s.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(s.VALUE,this.setValue.bind(this)),this.addAscent(s.VALUE2,this.setValue2.bind(this)),this.getAttribute(e.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(e.RANGE_PREFIX)),this.getAttribute(e.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(e.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(e.RANGE_DOUBLE_STEP):case this.matches(e.RANGE_DOUBLE):this.type=d;break;case this.matches(e.RANGE_STEP):this.type=a;break;default:this.type=o}}set type(t){if(this._type===t)return;this._type=t;const e=this._model;switch(this._type){case _:this._model=new r;break;case d:this._model=new h;break;case a:this._model=new n;break;default:this._model=new i}this._model.configure(e)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(e.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(t){switch(this._model.value=t,this._type){case _:case d:this.descend(s.VALUE,t)}this.update()}setValue2(t){this._model.value2=t,this.descend(s.VALUE2,t),this.update()}setConstraints(t){this._model.setConstraints(t),this.update(),this.descend(s.CONSTRAINTS,t)}setPrefix(t){this._model.setPrefix(t),this.update()}setSuffix(t){this._model.setSuffix(t),this.update()}mutate(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(e.RANGE_PREFIX):case t.includes(e.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(e.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(e.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(s.OUTPUT,this._model.output),this.descend(s.MIN,this._model.textMin),this.descend(s.MAX,this._model.textMax);const t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",`${parseFloat(t.right)-parseFloat(t.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(t){if(this._type!==d&&this._type!==_)return;const e=t.x-this.getRect().left;this.descend(s.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(s.CONSTRAINTS,new u(this.node)),this.ascend(s.DISABLED,this.node.disabled)})),this.addDescent(s.VALUE2,this.setValue.bind(this))}_enablePointer(t){const e=t===this._pointerId;this._isPointerEnabled!==e&&(this._isPointerEnabled=e,e?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}setValue(t){parseFloat(this.node.value)>t&&(this.node.value=t,this.dispatch("change",void 0,!0),this.change())}change(){this.ascend(s.VALUE,parseFloat(this.node.value))}mutate(t){t.includes("disabled")&&this.ascend(s.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(s.CONSTRAINTS,new u(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class c extends t.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(s.OUTPUT,this.change.bind(this))}change(t){this.node.innerText=t.text,this.node.style.transform=t.transform}}class p extends t.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(e.RANGE_MIN):this.addDescent(s.MIN,this.change.bind(this));break;case this.matches(e.RANGE_MAX):this.addDescent(s.MAX,this.change.bind(this))}}change(t){this.node.innerText=t}}t.range={Range:l,RangeInput:g,RangeInput2:class extends g{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(s.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(s.VALUE,this.setValue.bind(this))}setValue(t){parseFloat(this.node.value){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(s.CONSTRAINTS,new u(this.node)),this.ascend(s.DISABLED,this.node.disabled)})),this.addDescent(s.VALUE2,this.setValue.bind(this))}get proxy(){const e=this,s={get value(){return e.value},set value(t){e.value=t}};return t.internals.property.completeAssign(super.proxy,s)}_enablePointer(t){const e=t===this._pointerId;this._isPointerEnabled!==e&&(this._isPointerEnabled=e,e?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}get value(){return parseFloat(this.node.value)}set value(t){const e=parseFloat(t);e!==this._value&&(this._value=e,this.node.value=e,this.dispatch("change"),this.change())}setValue(t){parseFloat(this.node.value)>t&&(this.value=t)}change(){this.ascend(s.VALUE,this._value)}render(){const t=parseFloat(this.node.value);t!==this._value&&(this.value=t)}mutate(t){t.includes("disabled")&&this.ascend(s.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(s.CONSTRAINTS,new u(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class p extends t.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(s.OUTPUT,this.change.bind(this))}change(t){this.node.innerText=t.text,this.node.style.transform=t.transform}}class c extends t.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(e.RANGE_MIN):this.addDescent(s.MIN,this.change.bind(this));break;case this.matches(e.RANGE_MAX):this.addDescent(s.MAX,this.change.bind(this))}}change(t){this.node.innerText=t}}t.range={Range:o,RangeInput:g,RangeInput2:class extends g{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(s.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(s.VALUE,this.setValue.bind(this))}setValue(t){parseFloat(this.node.value)t&&(this.node.value=t,this.dispatch("change",void 0,!0),this.change())},e.prototype.change=function(){this.ascend(i.VALUE,parseFloat(this.node.value))},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(i.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(i.CONSTRAINTS,new l(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e,s),e}(t.core.Instance),f=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(i.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(i.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)t&&(this.value=t)},s.prototype.change=function(){this.ascend(i.VALUE,this._value)},s.prototype.render=function(){var t=parseFloat(this.node.value);t!==this._value&&(this.value=t)},s.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(i.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(i.CONSTRAINTS,new _(this.node)),this.change())},s.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(s.prototype,n),Object.defineProperties(s,r),s}(t.core.Instance),f=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(i.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(i.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/segmented/segmented.min.css b/dsfr/static/dsfr/dist/component/segmented/segmented.min.css index fd42c07ec..8deeb8de7 100644 --- a/dsfr/static/dsfr/dist/component/segmented/segmented.min.css +++ b/dsfr/static/dsfr/dist/component/segmented/segmented.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/segmented/segmented.module.min.js b/dsfr/static/dsfr/dist/component/segmented/segmented.module.min.js index 4553d2e5b..6047f1d36 100644 --- a/dsfr/static/dsfr/dist/component/segmented/segmented.module.min.js +++ b/dsfr/static/dsfr/dist/component/segmented/segmented.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr,s={SEGMENTED:e.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:e.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:e.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:e.internals.ns.selector("segmented__legend")},t={ADDED:e.internals.ns.emission("segmented","added"),REMOVED:e.internals.ns.emission("segmented","removed")};class n extends e.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(s.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(s.SEGMENTED_LEGEND),this.addAscent(t.ADDED,this.resize.bind(this)),this.addAscent(t.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${e.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const s=`${e.prefix}-segmented--vertical`,t=`${e.prefix}-segmented__legend--inline`;this.removeClass(s),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(s):this.removeClass(s)}}class i extends e.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(t.ADDED)}dispose(){this.ascend(t.REMOVED)}}e.segmented={SegmentedSelector:s,SegmentedEmission:t,SegmentedElement:i,Segmented:n},e.internals.register(e.segmented.SegmentedSelector.SEGMENTED,e.segmented.Segmented),e.internals.register(e.segmented.SegmentedSelector.SEGMENTED_ELEMENT,e.segmented.SegmentedElement); diff --git a/dsfr/static/dsfr/dist/component/segmented/segmented.nomodule.min.js b/dsfr/static/dsfr/dist/component/segmented/segmented.nomodule.min.js index 157abbb88..e66bf956d 100644 --- a/dsfr/static/dsfr/dist/component/segmented/segmented.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/segmented/segmented.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,t={SEGMENTED:e.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:e.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:e.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:e.internals.ns.selector("segmented__legend")},n={ADDED:e.internals.ns.emission("segmented","added"),REMOVED:e.internals.ns.emission("segmented","removed")},s=function(s){function i(){s.apply(this,arguments)}s&&(i.__proto__=s),i.prototype=Object.create(s&&s.prototype),i.prototype.constructor=i;var o={instanceClassName:{configurable:!0}};return o.instanceClassName.get=function(){return"Segmented"},i.prototype.init=function(){this.elements=this.node.querySelector(t.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(t.SEGMENTED_LEGEND),this.addAscent(n.ADDED,this.resize.bind(this)),this.addAscent(n.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(e.prefix+"-segmented__legend--inline"),this.isResizing=!0},i.prototype.resize=function(){var t=e.prefix+"-segmented--vertical",n=e.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(n),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(n)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(i,o),i}(e.core.Instance),i=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"SegmentedElement"},t.prototype.init=function(){this.ascend(n.ADDED)},t.prototype.dispose=function(){this.ascend(n.REMOVED)},Object.defineProperties(t,s),t}(e.core.Instance);e.segmented={SegmentedSelector:t,SegmentedEmission:n,SegmentedElement:i,Segmented:s},e.internals.register(e.segmented.SegmentedSelector.SEGMENTED,e.segmented.Segmented),e.internals.register(e.segmented.SegmentedSelector.SEGMENTED_ELEMENT,e.segmented.SegmentedElement)}(); diff --git a/dsfr/static/dsfr/dist/component/select/select.legacy.min.css b/dsfr/static/dsfr/dist/component/select/select.legacy.min.css index 6adb3dd6e..add024175 100644 --- a/dsfr/static/dsfr/dist/component/select/select.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/select/select.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/select/select.main.min.css b/dsfr/static/dsfr/dist/component/select/select.main.min.css index b568b384a..1851d2bc9 100644 --- a/dsfr/static/dsfr/dist/component/select/select.main.min.css +++ b/dsfr/static/dsfr/dist/component/select/select.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/select/select.min.css b/dsfr/static/dsfr/dist/component/select/select.min.css index ed9043b0d..8af40d6e9 100644 --- a/dsfr/static/dsfr/dist/component/select/select.min.css +++ b/dsfr/static/dsfr/dist/component/select/select.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/select/select.print.min.css b/dsfr/static/dsfr/dist/component/select/select.print.min.css index 99b9b9801..d797c9310 100644 --- a/dsfr/static/dsfr/dist/component/select/select.print.min.css +++ b/dsfr/static/dsfr/dist/component/select/select.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/share/share.legacy.min.css b/dsfr/static/dsfr/dist/component/share/share.legacy.min.css index cda06f921..2b16d3a2f 100644 --- a/dsfr/static/dsfr/dist/component/share/share.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/share/share.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../../icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(../../icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(../../icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(../../icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(../../icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(../../icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(../../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/share/share.main.min.css b/dsfr/static/dsfr/dist/component/share/share.main.min.css index 770cf9b7e..8b764674d 100644 --- a/dsfr/static/dsfr/dist/component/share/share.main.min.css +++ b/dsfr/static/dsfr/dist/component/share/share.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../../icons/logo/mastodon-line.svg);mask-image:url(../../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../../icons/logo/threads-line.svg);mask-image:url(../../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../../icons/logo/twitter-x-line.svg);mask-image:url(../../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-share__text{max-width:18rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/share/share.min.css b/dsfr/static/dsfr/dist/component/share/share.min.css index 24af5cb14..d9cdf8932 100644 --- a/dsfr/static/dsfr/dist/component/share/share.min.css +++ b/dsfr/static/dsfr/dist/component/share/share.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../../icons/logo/mastodon-line.svg);mask-image:url(../../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../../icons/logo/threads-line.svg);mask-image:url(../../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../../icons/logo/twitter-x-line.svg);mask-image:url(../../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ @@ -8,4 +8,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media print{.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-share{display:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../../icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(../../icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(../../icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(../../icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(../../icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(../../icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(../../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media print{.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-share{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/share/share.print.min.css b/dsfr/static/dsfr/dist/component/share/share.print.min.css index be973a73e..703155895 100644 --- a/dsfr/static/dsfr/dist/component/share/share.print.min.css +++ b/dsfr/static/dsfr/dist/component/share/share.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-share{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.legacy.min.css b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.legacy.min.css index 04027abdb..35eba2b5a 100644 --- a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.main.min.css b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.main.min.css index 124cc640a..2b127f21f 100644 --- a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.main.min.css +++ b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none}}@media (min-width:62em){ + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none}}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.min.css b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.min.css index 4578e2b28..42c7e0c55 100644 --- a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.min.css +++ b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.min.css @@ -1,9 +1,9 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */}@media (min-width:62em){ /*! media lg */ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.module.min.js b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.module.min.js index 0d410de07..3130664b5 100644 --- a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.module.min.js +++ b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr,n=e.internals.ns.selector("sidemenu__item"),s=e.internals.ns.selector("collapse"),t={LIST:e.internals.ns.selector("sidemenu__list"),COLLAPSE:`${n} > ${s}, ${n} > *:not(${n}):not(${s}) > ${s}, ${n} > *:not(${n}):not(${s}) > *:not(${n}):not(${s}) > ${s}`,COLLAPSE_LEGACY:`${n} ${s}`,ITEM:e.internals.ns.selector("sidemenu__item"),BUTTON:e.internals.ns.selector("sidemenu__btn")};class i extends e.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(n){return super.validate(n)&&n.node.matches(e.internals.legacy.isLegacy?t.COLLAPSE_LEGACY:t.COLLAPSE)}}class l extends e.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(t.BUTTON)))[0]}}e.sidemenu={SidemenuList:i,SidemenuItem:l,SidemenuSelector:t},e.internals.register(e.sidemenu.SidemenuSelector.LIST,e.sidemenu.SidemenuList),e.internals.register(e.sidemenu.SidemenuSelector.ITEM,e.sidemenu.SidemenuItem); diff --git a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.nomodule.min.js b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.nomodule.min.js index e4b14ea01..c2e635f12 100644 --- a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,t=e.internals.ns.selector("sidemenu__item"),n=e.internals.ns.selector("collapse"),r={LIST:e.internals.ns.selector("sidemenu__list"),COLLAPSE:t+" > "+n+", "+t+" > *:not("+t+"):not("+n+") > "+n+", "+t+" > *:not("+t+"):not("+n+") > *:not("+t+"):not("+n+") > "+n,COLLAPSE_LEGACY:t+" "+n,ITEM:e.internals.ns.selector("sidemenu__item"),BUTTON:e.internals.ns.selector("sidemenu__btn")},i=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"SidemenuList"},n.prototype.validate=function(n){return t.prototype.validate.call(this,n)&&n.node.matches(e.internals.legacy.isLegacy?r.COLLAPSE_LEGACY:r.COLLAPSE)},Object.defineProperties(n,i),n}(e.core.CollapsesGroup),s=function(e){function t(){e.apply(this,arguments)}e&&(t.__proto__=e),t.prototype=Object.create(e&&e.prototype),t.prototype.constructor=t;var n={collapsePrimary:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"SidemenuItem"},n.collapsePrimary.get=function(){return this.element.children.map((function(e){return e.getInstance("CollapseButton")})).filter((function(e){return null!==e&&e.hasClass(r.BUTTON)}))[0]},Object.defineProperties(t.prototype,n),Object.defineProperties(t,i),t}(e.core.Instance);e.sidemenu={SidemenuList:i,SidemenuItem:s,SidemenuSelector:r},e.internals.register(e.sidemenu.SidemenuSelector.LIST,e.sidemenu.SidemenuList),e.internals.register(e.sidemenu.SidemenuSelector.ITEM,e.sidemenu.SidemenuItem)}(); diff --git a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.print.min.css b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.print.min.css index 61250cdc7..9052d1ca9 100644 --- a/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.print.min.css +++ b/dsfr/static/dsfr/dist/component/sidemenu/sidemenu.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/skiplink/skiplink.legacy.min.css b/dsfr/static/dsfr/dist/component/skiplink/skiplink.legacy.min.css index 439fadd8e..99b0da624 100644 --- a/dsfr/static/dsfr/dist/component/skiplink/skiplink.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/skiplink/skiplink.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/skiplink/skiplink.main.min.css b/dsfr/static/dsfr/dist/component/skiplink/skiplink.main.min.css index 11238a70e..6fc41679b 100644 --- a/dsfr/static/dsfr/dist/component/skiplink/skiplink.main.min.css +++ b/dsfr/static/dsfr/dist/component/skiplink/skiplink.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-skiplinks{padding:.75rem 0}.fr-skiplinks__list>li{margin:0 .5rem}.fr-skiplinks__list{flex-direction:row;flex-wrap:wrap;margin:0 -1rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/skiplink/skiplink.min.css b/dsfr/static/dsfr/dist/component/skiplink/skiplink.min.css index 965eafdff..d93775b45 100644 --- a/dsfr/static/dsfr/dist/component/skiplink/skiplink.min.css +++ b/dsfr/static/dsfr/dist/component/skiplink/skiplink.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/skiplink/skiplink.print.min.css b/dsfr/static/dsfr/dist/component/skiplink/skiplink.print.min.css index 1e543b21d..c51ca4617 100644 --- a/dsfr/static/dsfr/dist/component/skiplink/skiplink.print.min.css +++ b/dsfr/static/dsfr/dist/component/skiplink/skiplink.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/stepper/stepper.legacy.min.css b/dsfr/static/dsfr/dist/component/stepper/stepper.legacy.min.css index c11453eca..36e9d146f 100644 --- a/dsfr/static/dsfr/dist/component/stepper/stepper.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/stepper/stepper.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/stepper/stepper.main.min.css b/dsfr/static/dsfr/dist/component/stepper/stepper.main.min.css index 4635f63b9..5bb0b5537 100644 --- a/dsfr/static/dsfr/dist/component/stepper/stepper.main.min.css +++ b/dsfr/static/dsfr/dist/component/stepper/stepper.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/stepper/stepper.min.css b/dsfr/static/dsfr/dist/component/stepper/stepper.min.css index 02539881f..d0b30e057 100644 --- a/dsfr/static/dsfr/dist/component/stepper/stepper.min.css +++ b/dsfr/static/dsfr/dist/component/stepper/stepper.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/stepper/stepper.print.min.css b/dsfr/static/dsfr/dist/component/stepper/stepper.print.min.css index 8e7bcff00..5782e0bb9 100644 --- a/dsfr/static/dsfr/dist/component/stepper/stepper.print.min.css +++ b/dsfr/static/dsfr/dist/component/stepper/stepper.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/summary/summary.legacy.min.css b/dsfr/static/dsfr/dist/component/summary/summary.legacy.min.css index f8a396d4f..fee8ed434 100644 --- a/dsfr/static/dsfr/dist/component/summary/summary.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/summary/summary.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/summary/summary.main.min.css b/dsfr/static/dsfr/dist/component/summary/summary.main.min.css index a55519ef0..1c3621661 100644 --- a/dsfr/static/dsfr/dist/component/summary/summary.main.min.css +++ b/dsfr/static/dsfr/dist/component/summary/summary.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-summary{padding:2rem}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/summary/summary.min.css b/dsfr/static/dsfr/dist/component/summary/summary.min.css index 7e79a0e06..e189b0cb4 100644 --- a/dsfr/static/dsfr/dist/component/summary/summary.min.css +++ b/dsfr/static/dsfr/dist/component/summary/summary.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/summary/summary.print.min.css b/dsfr/static/dsfr/dist/component/summary/summary.print.min.css index 77672bb7b..9f546593b 100644 --- a/dsfr/static/dsfr/dist/component/summary/summary.print.min.css +++ b/dsfr/static/dsfr/dist/component/summary/summary.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/tab/tab.legacy.min.css b/dsfr/static/dsfr/dist/component/tab/tab.legacy.min.css index 5d01f85b6..a80498378 100644 --- a/dsfr/static/dsfr/dist/component/tab/tab.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/tab/tab.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/tab/tab.main.min.css b/dsfr/static/dsfr/dist/component/tab/tab.main.min.css index 2ffbafcca..255c2602e 100644 --- a/dsfr/static/dsfr/dist/component/tab/tab.main.min.css +++ b/dsfr/static/dsfr/dist/component/tab/tab.main.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)}}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/tab/tab.min.css b/dsfr/static/dsfr/dist/component/tab/tab.min.css index 37e70a33b..1590fb646 100644 --- a/dsfr/static/dsfr/dist/component/tab/tab.min.css +++ b/dsfr/static/dsfr/dist/component/tab/tab.min.css @@ -1,6 +1,6 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/tab/tab.module.min.js b/dsfr/static/dsfr/dist/component/tab/tab.module.min.js index b193c83bd..0f5f575df 100644 --- a/dsfr/static/dsfr/dist/component/tab/tab.module.min.js +++ b/dsfr/static/dsfr/dist/component/tab/tab.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const s=window.dsfr;class t extends s.core.DisclosureButton{constructor(){super(s.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(s){super.handleClick(s),this.focus()}apply(s){super.apply(s),this.isPrimary&&(this.setAttribute("tabindex",s?"0":"-1"),s&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const e={TAB:s.internals.ns.selector("tabs__tab"),GROUP:s.internals.ns.selector("tabs"),PANEL:s.internals.ns.selector("tabs__panel"),LIST:s.internals.ns.selector("tabs__list"),SHADOW:s.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:s.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:s.internals.ns.selector("tabs__shadow--right"),PANEL_START:s.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:s.internals.ns.selector("tabs__panel--direction-end")},i="direction-start",n="direction-end",r="none";class a extends s.core.Disclosure{constructor(){super(s.core.DisclosureType.SELECT,e.PANEL,t,"TabsGroup"),this._direction=r,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(s){if(s!==this._direction){switch(this._direction){case i:this.removeClass(e.PANEL_START);break;case n:this.removeClass(e.PANEL_END);break;case r:break;default:return}switch(this._direction=s,this._direction){case i:this.addClass(e.PANEL_START);break;case n:this.addClass(e.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(t){this._isPreventingTransition!==t&&(t?this.addClass(s.internals.motion.TransitionSelector.NONE):this.removeClass(s.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)}translate(s,t){this.isPreventingTransition=t,this.direction=s}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(s){return this.group&&this.group.list?super._electPrimaries(s).filter((s=>this.group.list.node.contains(s.node))):[]}}const o="tab_keys_left",h="tab_keys_right",l="tab_keys_home",c="tab_keys_end",d={PRESS_KEY:s.internals.ns.emission("tab","press_key"),LIST_HEIGHT:s.internals.ns.emission("tab","list_height")};class u extends s.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(d.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(d.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(s=0){super.getIndex(s)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(s){this.listHeight=s}transitionend(s){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((s=>s.buttonHasFocus))}pressKey(s){switch(s){case o:this.pressLeft();break;case h:this.pressRight();break;case l:this.pressHome();break;case c:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let s=0;se.right&&this.node.scrollTo(i-e.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(s){this._isScrolling!==s&&(this._isScrolling=s,this.apply())}apply(){this._isScrolling?(this.addClass(e.SHADOW),this.scroll()):(this.removeClass(e.SHADOW_RIGHT),this.removeClass(e.SHADOW_LEFT),this.removeClass(e.SHADOW))}scroll(){const s=this.node.scrollLeft,t=s<=16,i=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(s)>=i,r="rtl"===document.documentElement.getAttribute("dir"),a=r?e.SHADOW_RIGHT:e.SHADOW_LEFT,o=r?e.SHADOW_LEFT:e.SHADOW_RIGHT;t?this.removeClass(a):this.addClass(a),n?this.removeClass(o):this.addClass(o)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const s=this.getRect().height;this.setProperty("--tabs-list-height",`${s}px`),this.ascend(d.LIST_HEIGHT,s)}dispose(){this.isScrolling=!1}}s.tab={TabPanel:a,TabButton:t,TabsGroup:u,TabsList:b,TabSelector:e,TabEmission:d},s.internals.register(s.tab.TabSelector.PANEL,s.tab.TabPanel),s.internals.register(s.tab.TabSelector.GROUP,s.tab.TabsGroup),s.internals.register(s.tab.TabSelector.LIST,s.tab.TabsList); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const s=window.dsfr;class t extends s.core.DisclosureButton{constructor(){super(s.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(s){super.handleClick(s),this.focus()}apply(s){super.apply(s),this.isPrimary&&(this.setAttribute("tabindex",s?"0":"-1"),s&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const e={TAB:s.internals.ns.selector("tabs__tab"),GROUP:s.internals.ns.selector("tabs"),PANEL:s.internals.ns.selector("tabs__panel"),LIST:s.internals.ns.selector("tabs__list"),SHADOW:s.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:s.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:s.internals.ns.selector("tabs__shadow--right"),PANEL_START:s.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:s.internals.ns.selector("tabs__panel--direction-end")},i="direction-start",n="direction-end",r="none";class a extends s.core.Disclosure{constructor(){super(s.core.DisclosureType.SELECT,e.PANEL,t,"TabsGroup"),this._direction=r,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(s){if(s!==this._direction){switch(this._direction){case i:this.removeClass(e.PANEL_START);break;case n:this.removeClass(e.PANEL_END);break;case r:break;default:return}switch(this._direction=s,this._direction){case i:this.addClass(e.PANEL_START);break;case n:this.addClass(e.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(t){this._isPreventingTransition!==t&&(t?this.addClass(s.internals.motion.TransitionSelector.NONE):this.removeClass(s.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)}translate(s,t){this.isPreventingTransition=t,this.direction=s}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(s){return this.group&&this.group.list?super._electPrimaries(s).filter((s=>this.group.list.node.contains(s.node))):[]}}const o="tab_keys_left",h="tab_keys_right",l="tab_keys_home",c="tab_keys_end",d={PRESS_KEY:s.internals.ns.emission("tab","press_key"),LIST_HEIGHT:s.internals.ns.emission("tab","list_height")};class b extends s.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(d.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(d.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(s=0){super.getIndex(s)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(s){this.listHeight=s}transitionend(s){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((s=>s.buttonHasFocus))}pressKey(s){switch(s){case o:this.pressLeft();break;case h:this.pressRight();break;case l:this.pressHome();break;case c:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let s=0;se.right&&this.node.scrollTo(i-e.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(s){this._isScrolling!==s&&(this._isScrolling=s,this.apply())}apply(){this._isScrolling?(this.addClass(e.SHADOW),this.scroll()):(this.removeClass(e.SHADOW_RIGHT),this.removeClass(e.SHADOW_LEFT),this.removeClass(e.SHADOW))}scroll(){const s=Math.abs(this.node.scrollLeft),t=s<=16,i=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(s)>=i,r="rtl"===getComputedStyle(this.node).direction,a=r?e.SHADOW_RIGHT:e.SHADOW_LEFT,o=r?e.SHADOW_LEFT:e.SHADOW_RIGHT;t?this.removeClass(a):this.addClass(a),n?this.removeClass(o):this.addClass(o)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const s=this.getRect().height;this.setProperty("--tabs-list-height",`${s}px`),this.ascend(d.LIST_HEIGHT,s)}dispose(){this.isScrolling=!1}}s.tab={TabPanel:a,TabButton:t,TabsGroup:b,TabsList:g,TabSelector:e,TabEmission:d},s.internals.register(s.tab.TabSelector.PANEL,s.tab.TabPanel),s.internals.register(s.tab.TabSelector.GROUP,s.tab.TabsGroup),s.internals.register(s.tab.TabSelector.LIST,s.tab.TabsList); diff --git a/dsfr/static/dsfr/dist/component/tab/tab.nomodule.min.js b/dsfr/static/dsfr/dist/component/tab/tab.nomodule.min.js index 4855b7ae3..ca2a22ae1 100644 --- a/dsfr/static/dsfr/dist/component/tab/tab.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/tab/tab.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t=window.dsfr,e=function(e){function i(){e.call(this,t.core.DisclosureType.SELECT)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var s={list:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabButton"},i.prototype.handleClick=function(t){e.prototype.handleClick.call(this,t),this.focus()},i.prototype.apply=function(t){e.prototype.apply.call(this,t),this.isPrimary&&(this.setAttribute("tabindex",t?"0":"-1"),t&&this.list&&this.list.focalize(this))},s.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(i.prototype,s),Object.defineProperties(i,n),i}(t.core.DisclosureButton),i={TAB:t.internals.ns.selector("tabs__tab"),GROUP:t.internals.ns.selector("tabs"),PANEL:t.internals.ns.selector("tabs__panel"),LIST:t.internals.ns.selector("tabs__list"),SHADOW:t.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:t.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:t.internals.ns.selector("tabs__shadow--right"),PANEL_START:t.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:t.internals.ns.selector("tabs__panel--direction-end")},s="direction-start",n="direction-end",o="none",r=function(r){function a(){r.call(this,t.core.DisclosureType.SELECT,i.PANEL,e,"TabsGroup"),this._direction=o,this._isPreventingTransition=!1}r&&(a.__proto__=r),a.prototype=Object.create(r&&r.prototype),a.prototype.constructor=a;var c={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},l={instanceClassName:{configurable:!0}};return l.instanceClassName.get=function(){return"TabPanel"},c.direction.get=function(){return this._direction},c.direction.set=function(t){if(t!==this._direction){switch(this._direction){case s:this.removeClass(i.PANEL_START);break;case n:this.removeClass(i.PANEL_END);break;case o:break;default:return}switch(this._direction=t,this._direction){case s:this.addClass(i.PANEL_START);break;case n:this.addClass(i.PANEL_END)}}},c.isPreventingTransition.get=function(){return this._isPreventingTransition},c.isPreventingTransition.set=function(e){this._isPreventingTransition!==e&&(e?this.addClass(t.internals.motion.TransitionSelector.NONE):this.removeClass(t.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)},a.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},a.prototype.reset=function(){this.group&&this.group.retrieve(!0)},a.prototype._electPrimaries=function(t){var e=this;return this.group&&this.group.list?r.prototype._electPrimaries.call(this,t).filter((function(t){return e.group.list.node.contains(t.node)})):[]},Object.defineProperties(a.prototype,c),Object.defineProperties(a,l),a}(t.core.Disclosure),a="tab_keys_left",c="tab_keys_right",l="tab_keys_home",h="tab_keys_end",p={PRESS_KEY:t.internals.ns.emission("tab","press_key"),LIST_HEIGHT:t.internals.ns.emission("tab","list_height")},u=function(e){function i(){e.call(this,"TabPanel")}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var r={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},u={instanceClassName:{configurable:!0}};return u.instanceClassName.get=function(){return"TabsGroup"},i.prototype.init=function(){e.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(p.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(p.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},i.prototype.getIndex=function(t){void 0===t&&(t=0),e.prototype.getIndex.call(this,t)},r.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},i.prototype.setListHeight=function(t){this.listHeight=t},i.prototype.transitionend=function(t){this.isPreventingTransition=!0},r.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},i.prototype.pressKey=function(t){switch(t){case a:this.pressLeft();break;case c:this.pressRight();break;case l:this.pressHome();break;case h:this.pressEnd()}},i.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},i.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},i.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},i.prototype.focus=function(){this.current&&this.current.focus()},i.prototype.apply=function(){for(var t=0;ti.right&&this.node.scrollTo(s-i.right+e.right+16,0)},n.isScrolling.get=function(){return this._isScrolling},n.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},s.prototype.apply=function(){this._isScrolling?(this.addClass(i.SHADOW),this.scroll()):(this.removeClass(i.SHADOW_RIGHT),this.removeClass(i.SHADOW_LEFT),this.removeClass(i.SHADOW))},s.prototype.scroll=function(){var t=this.node.scrollLeft,e=t<=16,s=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=s,o="rtl"===document.documentElement.getAttribute("dir"),r=o?i.SHADOW_RIGHT:i.SHADOW_LEFT,a=o?i.SHADOW_LEFT:i.SHADOW_RIGHT;e?this.removeClass(r):this.addClass(r),n?this.removeClass(a):this.addClass(a)},s.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(p.LIST_HEIGHT,t)},s.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(s.prototype,n),Object.defineProperties(s,o),s}(t.core.Instance);t.tab={TabPanel:r,TabButton:e,TabsGroup:u,TabsList:d,TabSelector:i,TabEmission:p},t.internals.register(t.tab.TabSelector.PANEL,t.tab.TabPanel),t.internals.register(t.tab.TabSelector.GROUP,t.tab.TabsGroup),t.internals.register(t.tab.TabSelector.LIST,t.tab.TabsList)}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t=window.dsfr,e=function(e){function i(){e.call(this,t.core.DisclosureType.SELECT)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var s={list:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabButton"},i.prototype.handleClick=function(t){e.prototype.handleClick.call(this,t),this.focus()},i.prototype.apply=function(t){e.prototype.apply.call(this,t),this.isPrimary&&(this.setAttribute("tabindex",t?"0":"-1"),t&&this.list&&this.list.focalize(this))},s.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(i.prototype,s),Object.defineProperties(i,n),i}(t.core.DisclosureButton),i={TAB:t.internals.ns.selector("tabs__tab"),GROUP:t.internals.ns.selector("tabs"),PANEL:t.internals.ns.selector("tabs__panel"),LIST:t.internals.ns.selector("tabs__list"),SHADOW:t.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:t.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:t.internals.ns.selector("tabs__shadow--right"),PANEL_START:t.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:t.internals.ns.selector("tabs__panel--direction-end")},s="direction-start",n="direction-end",o="none",r=function(r){function a(){r.call(this,t.core.DisclosureType.SELECT,i.PANEL,e,"TabsGroup"),this._direction=o,this._isPreventingTransition=!1}r&&(a.__proto__=r),a.prototype=Object.create(r&&r.prototype),a.prototype.constructor=a;var c={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},l={instanceClassName:{configurable:!0}};return l.instanceClassName.get=function(){return"TabPanel"},c.direction.get=function(){return this._direction},c.direction.set=function(t){if(t!==this._direction){switch(this._direction){case s:this.removeClass(i.PANEL_START);break;case n:this.removeClass(i.PANEL_END);break;case o:break;default:return}switch(this._direction=t,this._direction){case s:this.addClass(i.PANEL_START);break;case n:this.addClass(i.PANEL_END)}}},c.isPreventingTransition.get=function(){return this._isPreventingTransition},c.isPreventingTransition.set=function(e){this._isPreventingTransition!==e&&(e?this.addClass(t.internals.motion.TransitionSelector.NONE):this.removeClass(t.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)},a.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},a.prototype.reset=function(){this.group&&this.group.retrieve(!0)},a.prototype._electPrimaries=function(t){var e=this;return this.group&&this.group.list?r.prototype._electPrimaries.call(this,t).filter((function(t){return e.group.list.node.contains(t.node)})):[]},Object.defineProperties(a.prototype,c),Object.defineProperties(a,l),a}(t.core.Disclosure),a="tab_keys_left",c="tab_keys_right",l="tab_keys_home",h="tab_keys_end",p={PRESS_KEY:t.internals.ns.emission("tab","press_key"),LIST_HEIGHT:t.internals.ns.emission("tab","list_height")},u=function(e){function i(){e.call(this,"TabPanel")}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var r={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},u={instanceClassName:{configurable:!0}};return u.instanceClassName.get=function(){return"TabsGroup"},i.prototype.init=function(){e.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(p.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(p.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},i.prototype.getIndex=function(t){void 0===t&&(t=0),e.prototype.getIndex.call(this,t)},r.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},i.prototype.setListHeight=function(t){this.listHeight=t},i.prototype.transitionend=function(t){this.isPreventingTransition=!0},r.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},i.prototype.pressKey=function(t){switch(t){case a:this.pressLeft();break;case c:this.pressRight();break;case l:this.pressHome();break;case h:this.pressEnd()}},i.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},i.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},i.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},i.prototype.focus=function(){this.current&&this.current.focus()},i.prototype.apply=function(){for(var t=0;ti.right&&this.node.scrollTo(s-i.right+e.right+16,0)},n.isScrolling.get=function(){return this._isScrolling},n.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},s.prototype.apply=function(){this._isScrolling?(this.addClass(i.SHADOW),this.scroll()):(this.removeClass(i.SHADOW_RIGHT),this.removeClass(i.SHADOW_LEFT),this.removeClass(i.SHADOW))},s.prototype.scroll=function(){var t=Math.abs(this.node.scrollLeft),e=t<=16,s=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=s,o="rtl"===getComputedStyle(this.node).direction,r=o?i.SHADOW_RIGHT:i.SHADOW_LEFT,a=o?i.SHADOW_LEFT:i.SHADOW_RIGHT;e?this.removeClass(r):this.addClass(r),n?this.removeClass(a):this.addClass(a)},s.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(p.LIST_HEIGHT,t)},s.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(s.prototype,n),Object.defineProperties(s,o),s}(t.core.Instance);t.tab={TabPanel:r,TabButton:e,TabsGroup:u,TabsList:d,TabSelector:i,TabEmission:p},t.internals.register(t.tab.TabSelector.PANEL,t.tab.TabPanel),t.internals.register(t.tab.TabSelector.GROUP,t.tab.TabsGroup),t.internals.register(t.tab.TabSelector.LIST,t.tab.TabsList)}(); diff --git a/dsfr/static/dsfr/dist/component/tab/tab.print.min.css b/dsfr/static/dsfr/dist/component/tab/tab.print.min.css index 490a19607..31c2314c6 100644 --- a/dsfr/static/dsfr/dist/component/tab/tab.print.min.css +++ b/dsfr/static/dsfr/dist/component/tab/tab.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/table/table.legacy.min.css b/dsfr/static/dsfr/dist/component/table/table.legacy.min.css index 84a6b62dc..27bec3e9a 100644 --- a/dsfr/static/dsfr/dist/component/table/table.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/table/table.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/table/table.main.min.css b/dsfr/static/dsfr/dist/component/table/table.main.min.css index 2454e6d12..b7f3a47fe 100644 --- a/dsfr/static/dsfr/dist/component/table/table.main.min.css +++ b/dsfr/static/dsfr/dist/component/table/table.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-table caption{font-size:1.5rem;line-height:2rem}.fr-table__header{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-table__header .fr-table__detail{flex:1;order:1;padding-right:.5rem}.fr-table__header .fr-btns-group{order:2;padding-left:.5rem;padding-right:.5rem}.fr-table__header .fr-segmented{flex:0;order:3;padding-left:.5rem}.fr-table__footer{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.fr-table__footer .fr-select-group .fr-select{width:16rem}.fr-table__footer .fr-btns-group{padding-left:.5rem}.fr-table__footer--start{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-table__footer--start .fr-select-group{padding-left:.5rem;padding-right:.5rem}.fr-table__footer--start .fr-select-group .fr-select{margin-top:0}.fr-table>table td,.fr-table>table th{padding:1rem}.fr-table>table thead td,.fr-table>table thead th{padding-bottom:1.125rem}}@media (min-width:62em){ /*! media lg */.fr-table__footer--middle{display:block;padding-left:.5rem;padding-right:.5rem}.fr-table__footer--middle .fr-pagination__list{flex-wrap:nowrap}.fr-table__footer--end{flex:1 0 0}}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/table/table.min.css b/dsfr/static/dsfr/dist/component/table/table.min.css index cd214e0ee..14f5bd18f 100644 --- a/dsfr/static/dsfr/dist/component/table/table.min.css +++ b/dsfr/static/dsfr/dist/component/table/table.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-table caption{font-size:1.5rem;line-height:2rem}.fr-table__header{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-table__header .fr-table__detail{flex:1;order:1;padding-right:.5rem}.fr-table__header .fr-btns-group{order:2;padding-left:.5rem;padding-right:.5rem}.fr-table__header .fr-segmented{flex:0;order:3;padding-left:.5rem}.fr-table__footer{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between}.fr-table__footer .fr-select-group .fr-select{width:16rem}.fr-table__footer .fr-btns-group{padding-left:.5rem}.fr-table__footer--start{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-table__footer--start .fr-select-group{padding-left:.5rem;padding-right:.5rem}.fr-table__footer--start .fr-select-group .fr-select{margin-top:0}.fr-table>table td,.fr-table>table th{padding:1rem}.fr-table>table thead td,.fr-table>table thead th{padding-bottom:1.125rem} @@ -8,4 +8,4 @@ /*! media lg */.fr-table__footer--middle{display:block;padding-left:.5rem;padding-right:.5rem}.fr-table__footer--middle .fr-pagination__list{flex-wrap:nowrap}.fr-table__footer--end{flex:1 0 0} /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}}@media print{.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}}@media print{.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/table/table.module.min.js b/dsfr/static/dsfr/dist/component/table/table.module.min.js index 49c635a68..2a9d893b3 100644 --- a/dsfr/static/dsfr/dist/component/table/table.module.min.js +++ b/dsfr/static/dsfr/dist/component/table/table.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const e=window.dsfr,t={SCROLLABLE:e.internals.ns.emission("table","scrollable"),CHANGE:e.internals.ns.emission("table","change"),CAPTION_HEIGHT:e.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:e.internals.ns.emission("table","captionwidth")};class s extends e.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(t.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class i extends e.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(t.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(t.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const n={TABLE:e.internals.ns.selector("table"),TABLE_WRAPPER:[`${e.internals.ns.selector("table")} ${e.internals.ns.selector("table__wrapper")}`],SHADOW:e.internals.ns.selector("table__shadow"),SHADOW_LEFT:e.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:e.internals.ns.selector("table__shadow--right"),ELEMENT:[`${e.internals.ns.selector("table")}:not(${e.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${e.internals.ns.selector("table")} table caption`,ROW:`${e.internals.ns.selector("table")} tbody tr`,COL:`${e.internals.ns.selector("table")} thead th`};class l extends e.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(n.SHADOW),this.scroll()):(this.removeClass(n.SHADOW),this.removeClass(n.SHADOW_LEFT),this.removeClass(n.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),l=i?n.SHADOW_RIGHT:n.SHADOW_LEFT,a=i?n.SHADOW_LEFT:n.SHADOW_RIGHT;e?this.removeClass(l):this.addClass(l),s?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class a extends e.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(t.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}const r={CHANGE:e.internals.ns.emission("checkbox","change"),RETRIEVE:e.internals.ns.emission("checkbox","retrieve")};class h extends e.core.Instance{static get instanceClassName(){return"TableRow"}init(){e.checkbox&&(this.addAscent(r.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(r.RETRIEVE))}_handleCheckboxChange(e){"row-select"===e.name&&(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}e.table={Table:s,TableWrapper:i,TableElement:l,TableCaption:a,TableSelector:n,TableRow:h},e.internals.register(e.table.TableSelector.TABLE,e.table.Table),e.internals.register(e.table.TableSelector.TABLE_WRAPPER,e.table.TableWrapper),e.internals.register(e.table.TableSelector.ELEMENT,e.table.TableElement),e.internals.register(e.table.TableSelector.CAPTION,e.table.TableCaption),e.internals.register(e.table.TableSelector.ROW,e.table.TableRow); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const e=window.dsfr,t={SCROLLABLE:e.internals.ns.emission("table","scrollable"),CHANGE:e.internals.ns.emission("table","change"),CAPTION_HEIGHT:e.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:e.internals.ns.emission("table","captionwidth")};class s extends e.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(t.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class i extends e.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(t.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(t.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const n={TABLE:e.internals.ns.selector("table"),TABLE_WRAPPER:[`${e.internals.ns.selector("table")} ${e.internals.ns.selector("table__wrapper")}`],SHADOW:e.internals.ns.selector("table__shadow"),SHADOW_LEFT:e.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:e.internals.ns.selector("table__shadow--right"),ELEMENT:[`${e.internals.ns.selector("table")}:not(${e.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${e.internals.ns.selector("table")} table caption`,ROW:`${e.internals.ns.selector("table")} tbody tr`,COL:`${e.internals.ns.selector("table")} thead th`};class l extends e.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(n.SHADOW),this.scroll()):(this.removeClass(n.SHADOW),this.removeClass(n.SHADOW_LEFT),this.removeClass(n.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),l=i?n.SHADOW_RIGHT:n.SHADOW_LEFT,a=i?n.SHADOW_LEFT:n.SHADOW_RIGHT;e?this.removeClass(l):this.addClass(l),s?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class a extends e.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(t.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}const r={CHANGE:e.internals.ns.emission("checkbox","change"),RETRIEVE:e.internals.ns.emission("checkbox","retrieve")};class h extends e.core.Instance{static get instanceClassName(){return"TableRow"}init(){e.checkbox&&(this.addAscent(r.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(r.RETRIEVE))}_handleCheckboxChange(t){"row-select"!==t.name&&"true"!==t.getAttribute(e.internals.ns.attr("row-select"))||(this.isSelected=!0===t.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}e.table={Table:s,TableWrapper:i,TableElement:l,TableCaption:a,TableSelector:n,TableRow:h},e.internals.register(e.table.TableSelector.TABLE,e.table.Table),e.internals.register(e.table.TableSelector.TABLE_WRAPPER,e.table.TableWrapper),e.internals.register(e.table.TableSelector.ELEMENT,e.table.TableElement),e.internals.register(e.table.TableSelector.CAPTION,e.table.TableCaption),e.internals.register(e.table.TableSelector.ROW,e.table.TableRow); diff --git a/dsfr/static/dsfr/dist/component/table/table.nomodule.min.js b/dsfr/static/dsfr/dist/component/table/table.nomodule.min.js index f87488b60..a3fc5c75f 100644 --- a/dsfr/static/dsfr/dist/component/table/table.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/table/table.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t=window.dsfr,e={SCROLLABLE:t.internals.ns.emission("table","scrollable"),CHANGE:t.internals.ns.emission("table","change"),CAPTION_HEIGHT:t.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:t.internals.ns.emission("table","captionwidth")},n=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Table"},n.prototype.init=function(){this.addAscent(e.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))},n.prototype.setCaptionHeight=function(t){this.setProperty("--table-offset",t)},Object.defineProperties(n,s),n}(t.core.Instance),s=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableWrapper"},n.prototype.init=function(){this.addAscent(e.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))},n.prototype.setCaptionHeight=function(t){var n=this;requestAnimationFrame((function(){return n.ascend(e.CAPTION_HEIGHT,0)})),this.setProperty("--table-offset",t)},Object.defineProperties(n,s),n}(t.core.Instance),i={TABLE:t.internals.ns.selector("table"),TABLE_WRAPPER:[t.internals.ns.selector("table")+" "+t.internals.ns.selector("table__wrapper")],SHADOW:t.internals.ns.selector("table__shadow"),SHADOW_LEFT:t.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:t.internals.ns.selector("table__shadow--right"),ELEMENT:[t.internals.ns.selector("table")+":not("+t.internals.ns.selector("table--no-scroll")+") table"],CAPTION:t.internals.ns.selector("table")+" table caption",ROW:t.internals.ns.selector("table")+" tbody tr",COL:t.internals.ns.selector("table")+" thead th"},o=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isScrolling:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableElement"},e.prototype.init=function(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0},n.isScrolling.get=function(){return this._isScrolling},n.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,t?(this.addClass(i.SHADOW),this.scroll()):(this.removeClass(i.SHADOW),this.removeClass(i.SHADOW_LEFT),this.removeClass(i.SHADOW_RIGHT)))},e.prototype.scroll=function(){var t=this.node.scrollLeft<=0,e=this.content.offsetWidth-this.node.offsetWidth-0,n=Math.abs(this.node.scrollLeft)>=e,s="rtl"===document.documentElement.getAttribute("dir"),o=s?i.SHADOW_RIGHT:i.SHADOW_LEFT,r=s?i.SHADOW_LEFT:i.SHADOW_RIGHT;t?this.removeClass(o):this.addClass(o),n?this.removeClass(r):this.addClass(r)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(t.core.Instance),r=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableCaption"},n.prototype.init=function(){this.height=0,this.isResizing=!0},n.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend(e.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(n,s),n}(t.core.Instance),a={CHANGE:t.internals.ns.emission("checkbox","change"),RETRIEVE:t.internals.ns.emission("checkbox","retrieve")},l=function(e){function n(){e.apply(this,arguments)}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var s={isSelected:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TableRow"},n.prototype.init=function(){t.checkbox&&(this.addAscent(a.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(a.RETRIEVE))},n.prototype._handleCheckboxChange=function(t){"row-select"===t.name&&(this.isSelected=!0===t.checked)},n.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},s.isSelected.get=function(){return this._isSelected},s.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(n.prototype,s),Object.defineProperties(n,i),n}(t.core.Instance);t.table={Table:n,TableWrapper:s,TableElement:o,TableCaption:r,TableSelector:i,TableRow:l},t.internals.register(t.table.TableSelector.TABLE,t.table.Table),t.internals.register(t.table.TableSelector.TABLE_WRAPPER,t.table.TableWrapper),t.internals.register(t.table.TableSelector.ELEMENT,t.table.TableElement),t.internals.register(t.table.TableSelector.CAPTION,t.table.TableCaption),t.internals.register(t.table.TableSelector.ROW,t.table.TableRow)}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t=window.dsfr,e={SCROLLABLE:t.internals.ns.emission("table","scrollable"),CHANGE:t.internals.ns.emission("table","change"),CAPTION_HEIGHT:t.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:t.internals.ns.emission("table","captionwidth")},n=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Table"},n.prototype.init=function(){this.addAscent(e.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))},n.prototype.setCaptionHeight=function(t){this.setProperty("--table-offset",t)},Object.defineProperties(n,s),n}(t.core.Instance),s=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableWrapper"},n.prototype.init=function(){this.addAscent(e.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))},n.prototype.setCaptionHeight=function(t){var n=this;requestAnimationFrame((function(){return n.ascend(e.CAPTION_HEIGHT,0)})),this.setProperty("--table-offset",t)},Object.defineProperties(n,s),n}(t.core.Instance),i={TABLE:t.internals.ns.selector("table"),TABLE_WRAPPER:[t.internals.ns.selector("table")+" "+t.internals.ns.selector("table__wrapper")],SHADOW:t.internals.ns.selector("table__shadow"),SHADOW_LEFT:t.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:t.internals.ns.selector("table__shadow--right"),ELEMENT:[t.internals.ns.selector("table")+":not("+t.internals.ns.selector("table--no-scroll")+") table"],CAPTION:t.internals.ns.selector("table")+" table caption",ROW:t.internals.ns.selector("table")+" tbody tr",COL:t.internals.ns.selector("table")+" thead th"},o=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var n={isScrolling:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableElement"},e.prototype.init=function(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0},n.isScrolling.get=function(){return this._isScrolling},n.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,t?(this.addClass(i.SHADOW),this.scroll()):(this.removeClass(i.SHADOW),this.removeClass(i.SHADOW_LEFT),this.removeClass(i.SHADOW_RIGHT)))},e.prototype.scroll=function(){var t=this.node.scrollLeft<=0,e=this.content.offsetWidth-this.node.offsetWidth-0,n=Math.abs(this.node.scrollLeft)>=e,s="rtl"===document.documentElement.getAttribute("dir"),o=s?i.SHADOW_RIGHT:i.SHADOW_LEFT,r=s?i.SHADOW_LEFT:i.SHADOW_RIGHT;t?this.removeClass(o):this.addClass(o),n?this.removeClass(r):this.addClass(r)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,n),Object.defineProperties(e,s),e}(t.core.Instance),r=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"TableCaption"},n.prototype.init=function(){this.height=0,this.isResizing=!0},n.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend(e.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(n,s),n}(t.core.Instance),a={CHANGE:t.internals.ns.emission("checkbox","change"),RETRIEVE:t.internals.ns.emission("checkbox","retrieve")},l=function(e){function n(){e.apply(this,arguments)}e&&(n.__proto__=e),n.prototype=Object.create(e&&e.prototype),n.prototype.constructor=n;var s={isSelected:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"TableRow"},n.prototype.init=function(){t.checkbox&&(this.addAscent(a.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(a.RETRIEVE))},n.prototype._handleCheckboxChange=function(e){"row-select"!==e.name&&"true"!==e.getAttribute(t.internals.ns.attr("row-select"))||(this.isSelected=!0===e.checked)},n.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},s.isSelected.get=function(){return this._isSelected},s.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(n.prototype,s),Object.defineProperties(n,i),n}(t.core.Instance);t.table={Table:n,TableWrapper:s,TableElement:o,TableCaption:r,TableSelector:i,TableRow:l},t.internals.register(t.table.TableSelector.TABLE,t.table.Table),t.internals.register(t.table.TableSelector.TABLE_WRAPPER,t.table.TableWrapper),t.internals.register(t.table.TableSelector.ELEMENT,t.table.TableElement),t.internals.register(t.table.TableSelector.CAPTION,t.table.TableCaption),t.internals.register(t.table.TableSelector.ROW,t.table.TableRow)}(); diff --git a/dsfr/static/dsfr/dist/component/table/table.print.min.css b/dsfr/static/dsfr/dist/component/table/table.print.min.css index 0bda7e05b..805a3abea 100644 --- a/dsfr/static/dsfr/dist/component/table/table.print.min.css +++ b/dsfr/static/dsfr/dist/component/table/table.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */@media print{.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media print{.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/tag/tag.legacy.min.css b/dsfr/static/dsfr/dist/component/tag/tag.legacy.min.css index 8467b44ab..1acd21510 100644 --- a/dsfr/static/dsfr/dist/component/tag/tag.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/tag/tag.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/tag/tag.main.min.css b/dsfr/static/dsfr/dist/component/tag/tag.main.min.css index 809c3c067..d2b14a2ba 100644 --- a/dsfr/static/dsfr/dist/component/tag/tag.main.min.css +++ b/dsfr/static/dsfr/dist/component/tag/tag.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../../icons/system/checkbox-circle-line.svg);mask-image:url(../../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/tag/tag.min.css b/dsfr/static/dsfr/dist/component/tag/tag.min.css index e1321555a..c8f14c29b 100644 --- a/dsfr/static/dsfr/dist/component/tag/tag.min.css +++ b/dsfr/static/dsfr/dist/component/tag/tag.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../../icons/system/checkbox-circle-line.svg);mask-image:url(../../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ @@ -8,4 +8,4 @@ /*! media lg */ /*! media lg */}@media (min-width:78em){ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}}@media print{.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(../../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}}@media print{.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/tag/tag.module.min.js b/dsfr/static/dsfr/dist/component/tag/tag.module.min.js index 04b34671c..c6858994b 100644 --- a/dsfr/static/dsfr/dist/component/tag/tag.module.min.js +++ b/dsfr/static/dsfr/dist/component/tag/tag.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr,s={DISMISS:e.internals.ns.event("dismiss")};class t extends e.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),e.mode){case e.Modes.ANGULAR:case e.Modes.REACT:case e.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(s.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${e.mode} mode, the api doesn't handle dom modification. An event ${s.DISMISS} is dispatched by the element to trigger the removal`)}}const i={PRESSABLE:`${e.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${e.internals.ns.selector("tag--dismiss")}`};e.tag={TagDismissible:t,TagSelector:i,TagEvent:s},e.internals.register(e.tag.TagSelector.PRESSABLE,e.core.Toggle),e.internals.register(e.tag.TagSelector.DISMISSIBLE,e.tag.TagDismissible); diff --git a/dsfr/static/dsfr/dist/component/tag/tag.nomodule.min.js b/dsfr/static/dsfr/dist/component/tag/tag.nomodule.min.js index c62340263..95b3340d3 100644 --- a/dsfr/static/dsfr/dist/component/tag/tag.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/tag/tag.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,t={DISMISS:e.internals.ns.event("dismiss")},s=function(s){function i(){s.apply(this,arguments)}s&&(i.__proto__=s),i.prototype=Object.create(s&&s.prototype),i.prototype.constructor=i;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TagDismissible"},i.prototype.init=function(){this.listenClick()},i.prototype.handleClick=function(){switch(this.focusClosest(),e.mode){case e.Modes.ANGULAR:case e.Modes.REACT:case e.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(t.DISMISS)},i.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+e.mode+" mode, the api doesn't handle dom modification. An event "+t.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(i,n),i}(e.core.Instance),i={PRESSABLE:e.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+e.internals.ns.selector("tag--dismiss")};e.tag={TagDismissible:s,TagSelector:i,TagEvent:t},e.internals.register(e.tag.TagSelector.PRESSABLE,e.core.Toggle),e.internals.register(e.tag.TagSelector.DISMISSIBLE,e.tag.TagDismissible)}(); diff --git a/dsfr/static/dsfr/dist/component/tag/tag.print.min.css b/dsfr/static/dsfr/dist/component/tag/tag.print.min.css index 103cd0e97..dbe833d36 100644 --- a/dsfr/static/dsfr/dist/component/tag/tag.print.min.css +++ b/dsfr/static/dsfr/dist/component/tag/tag.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/tile/tile.legacy.min.css b/dsfr/static/dsfr/dist/component/tile/tile.legacy.min.css index d5524063c..d2f393bb7 100644 --- a/dsfr/static/dsfr/dist/component/tile/tile.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/tile/tile.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/tile/tile.main.min.css b/dsfr/static/dsfr/dist/component/tile/tile.main.min.css index 7a47ad460..92d0650d6 100644 --- a/dsfr/static/dsfr/dist/component/tile/tile.main.min.css +++ b/dsfr/static/dsfr/dist/component/tile/tile.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-tile__title{font-size:1.25rem;line-height:1.75rem}.fr-tile--vertical\@md{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@md .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@md .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@md .fr-tile__content{align-items:center}.fr-tile--vertical\@md .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@md.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@md.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@md.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@md.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0}.fr-tile--horizontal .fr-tile__img{height:5rem;margin:0 2rem 0 0;width:5rem}}@media (min-width:62em){ /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0}}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/tile/tile.min.css b/dsfr/static/dsfr/dist/component/tile/tile.min.css index 47530ef94..40b9f2b17 100644 --- a/dsfr/static/dsfr/dist/component/tile/tile.min.css +++ b/dsfr/static/dsfr/dist/component/tile/tile.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */.fr-tile__title{font-size:1.25rem;line-height:1.75rem}.fr-tile--vertical\@md{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@md .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@md .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@md .fr-tile__content{align-items:center}.fr-tile--vertical\@md .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@md.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@md.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@md.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@md.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0}.fr-tile--horizontal .fr-tile__img{height:5rem;margin:0 2rem 0 0;width:5rem} diff --git a/dsfr/static/dsfr/dist/component/tile/tile.module.min.js b/dsfr/static/dsfr/dist/component/tile/tile.module.min.js index 5e5ebe194..0092c804d 100644 --- a/dsfr/static/dsfr/dist/component/tile/tile.module.min.js +++ b/dsfr/static/dsfr/dist/component/tile/tile.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr;class s extends e.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(e.core.AssessEmission.UPDATE,(s=>{this.descend(e.core.AssessEmission.UPDATE,s)})),this.addAscent(e.core.AssessEmission.ADDED,(()=>{this.descend(e.core.AssessEmission.ADDED)}))}}const i={DOWNLOAD:e.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${e.internals.ns.selector("tile--download")} ${e.internals.ns.selector("tile__detail")}`};e.tile={TileSelector:i,TileDownload:s},e.internals.register(e.tile.TileSelector.DOWNLOAD,e.tile.TileDownload),e.internals.register(e.tile.TileSelector.DOWNLOAD_DETAIL,e.core.AssessDetail); diff --git a/dsfr/static/dsfr/dist/component/tile/tile.nomodule.min.js b/dsfr/static/dsfr/dist/component/tile/tile.nomodule.min.js index 6fcb83bd2..38c73d7b2 100644 --- a/dsfr/static/dsfr/dist/component/tile/tile.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/tile/tile.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e=window.dsfr,s=function(s){function t(){s.apply(this,arguments)}s&&(t.__proto__=s),t.prototype=Object.create(s&&s.prototype),t.prototype.constructor=t;var n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TileDownload"},t.prototype.init=function(){var s=this;this.addAscent(e.core.AssessEmission.UPDATE,(function(t){s.descend(e.core.AssessEmission.UPDATE,t)})),this.addAscent(e.core.AssessEmission.ADDED,(function(){s.descend(e.core.AssessEmission.ADDED)}))},Object.defineProperties(t,n),t}(e.core.Instance),t={DOWNLOAD:e.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:e.internals.ns.selector("tile--download")+" "+e.internals.ns.selector("tile__detail")};e.tile={TileSelector:t,TileDownload:s},e.internals.register(e.tile.TileSelector.DOWNLOAD,e.tile.TileDownload),e.internals.register(e.tile.TileSelector.DOWNLOAD_DETAIL,e.core.AssessDetail)}(); diff --git a/dsfr/static/dsfr/dist/component/tile/tile.print.min.css b/dsfr/static/dsfr/dist/component/tile/tile.print.min.css index 3daf1c812..a535f3d5c 100644 --- a/dsfr/static/dsfr/dist/component/tile/tile.print.min.css +++ b/dsfr/static/dsfr/dist/component/tile/tile.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/toggle/toggle.legacy.min.css b/dsfr/static/dsfr/dist/component/toggle/toggle.legacy.min.css index 81e96ad3d..d46be650e 100644 --- a/dsfr/static/dsfr/dist/component/toggle/toggle.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/toggle/toggle.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-toggle--error:before,.fr-toggle--valid:before{content:""}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/toggle/toggle.main.min.css b/dsfr/static/dsfr/dist/component/toggle/toggle.main.min.css index 15cd0adfd..5af688ba4 100644 --- a/dsfr/static/dsfr/dist/component/toggle/toggle.main.min.css +++ b/dsfr/static/dsfr/dist/component/toggle/toggle.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/toggle/toggle.min.css b/dsfr/static/dsfr/dist/component/toggle/toggle.min.css index 0e3a2064a..d1e0114db 100644 --- a/dsfr/static/dsfr/dist/component/toggle/toggle.min.css +++ b/dsfr/static/dsfr/dist/component/toggle/toggle.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ diff --git a/dsfr/static/dsfr/dist/component/toggle/toggle.module.min.js b/dsfr/static/dsfr/dist/component/toggle/toggle.module.min.js index 12b74cd2a..68fcb667f 100644 --- a/dsfr/static/dsfr/dist/component/toggle/toggle.module.min.js +++ b/dsfr/static/dsfr/dist/component/toggle/toggle.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const e=window.dsfr;class t extends e.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class s extends e.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,t),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const n=getComputedStyle(this.node,":before"),i=parseFloat(n.width);i>s&&(s=i),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const n={STATUS_LABEL:`${e.internals.ns.selector("toggle__label")}${e.internals.ns.attr.selector("checked-label")}${e.internals.ns.attr.selector("unchecked-label")}`};e.toggle={ToggleStatusLabel:s,ToggleSelector:n},e.internals.register(e.toggle.ToggleSelector.STATUS_LABEL,e.toggle.ToggleStatusLabel); diff --git a/dsfr/static/dsfr/dist/component/toggle/toggle.nomodule.min.js b/dsfr/static/dsfr/dist/component/toggle/toggle.nomodule.min.js index cfa20af92..0a195c302 100644 --- a/dsfr/static/dsfr/dist/component/toggle/toggle.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/toggle/toggle.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var t=window.dsfr,e=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var o={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},o.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,o),Object.defineProperties(e,n),e}(t.core.Instance),o=function(t){function o(){t.apply(this,arguments)}t&&(o.__proto__=t),o.prototype=Object.create(t&&t.prototype),o.prototype.constructor=o;var n={proxy:{configurable:!0},input:{configurable:!0}},r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"ToggleStatusLabel"},o.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',e),this.update(),this.isSwappingFont=!0},n.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},n.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},o.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),o=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),r=parseFloat(n.width);r>o&&(o=r),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",o/16+"rem")},o.prototype.swapFont=function(t){this.update()},Object.defineProperties(o.prototype,n),Object.defineProperties(o,r),o}(t.core.Instance),n={STATUS_LABEL:""+t.internals.ns.selector("toggle__label")+t.internals.ns.attr.selector("checked-label")+t.internals.ns.attr.selector("unchecked-label")};t.toggle={ToggleStatusLabel:o,ToggleSelector:n},t.internals.register(t.toggle.ToggleSelector.STATUS_LABEL,t.toggle.ToggleStatusLabel)}(); diff --git a/dsfr/static/dsfr/dist/component/toggle/toggle.print.min.css b/dsfr/static/dsfr/dist/component/toggle/toggle.print.min.css index b47a82592..60439e935 100644 --- a/dsfr/static/dsfr/dist/component/toggle/toggle.print.min.css +++ b/dsfr/static/dsfr/dist/component/toggle/toggle.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/tooltip/tooltip.legacy.min.css b/dsfr/static/dsfr/dist/component/tooltip/tooltip.legacy.min.css index e0e4f93b9..cd537337b 100644 --- a/dsfr/static/dsfr/dist/component/tooltip/tooltip.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/tooltip/tooltip.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/tooltip/tooltip.main.min.css b/dsfr/static/dsfr/dist/component/tooltip/tooltip.main.min.css index e7f83ff46..44bc9c863 100644 --- a/dsfr/static/dsfr/dist/component/tooltip/tooltip.main.min.css +++ b/dsfr/static/dsfr/dist/component/tooltip/tooltip.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ diff --git a/dsfr/static/dsfr/dist/component/tooltip/tooltip.min.css b/dsfr/static/dsfr/dist/component/tooltip/tooltip.min.css index 71b6262bc..2daf59bcf 100644 --- a/dsfr/static/dsfr/dist/component/tooltip/tooltip.min.css +++ b/dsfr/static/dsfr/dist/component/tooltip/tooltip.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ diff --git a/dsfr/static/dsfr/dist/component/tooltip/tooltip.module.min.js b/dsfr/static/dsfr/dist/component/tooltip/tooltip.module.min.js index 609b49b71..6543e3aea 100644 --- a/dsfr/static/dsfr/dist/component/tooltip/tooltip.module.min.js +++ b/dsfr/static/dsfr/dist/component/tooltip/tooltip.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const t="fr",s="dsfr",e=window[s],i={TOOLTIP:e.internals.ns.selector("tooltip"),SHOWN:e.internals.ns.selector("tooltip--shown"),BUTTON:e.internals.ns.selector("btn--tooltip")},o=1,n=2;class h extends e.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(i.BUTTON)){const t=this.mouseover.bind(this);this.listen("mouseover",t),this.placement.listen("mouseover",t);const s=this.mouseout.bind(this);this.listen("mouseout",s),this.placement.listen("mouseout",s)}this.addEmission(e.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(e.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(t){this.node.contains(t)||this.blur()}_keydown(t){if(t===e.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(t){this._state!==t&&(this.isShown=t>0,this._state=t)}focusIn(){this.state|=o}focusOut(){this.state&=~o}mouseover(){this.state|=n}mouseout(){this.state&=~n}}const r=s=>`${t}-${s}`;r.selector=(t,s)=>(void 0===s&&(s="."),`${s}${r(t)}`),(r.attr=t=>`data-${r(t)}`).selector=(t,s)=>{let e=r.attr(t);return void 0!==s&&(e+=`="${s}"`),`[${e}]`},r.event=t=>`${s}.${t}`,r.emission=(t,s)=>`emission:${t}.${s}`;const c={SHOW:r.event("show"),HIDE:r.event("hide")},a="hidden",l="shown",d="hiding";class u extends e.core.Placement{constructor(){super(e.core.PlacementMode.AUTO,[e.core.PlacementPosition.TOP,e.core.PlacementPosition.BOTTOM],[e.core.PlacementAlign.CENTER,e.core.PlacementAlign.START,e.core.PlacementAlign.END]),this.modifier="",this._state=a}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,h),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===d&&(this._state=a,this.isShown=!1)}get isShown(){return super.isShown}set isShown(t){if(this.isEnabled)switch(!0){case t:this._state=l,this.addClass(i.SHOWN),this.dispatch(c.SHOW),super.isShown=!0;break;case this.isShown&&!t&&this._state===l:this._state=d,this.removeClass(i.SHOWN);break;case this.isShown&&!t&&this._state===a:this.dispatch(c.HIDE),super.isShown=!1}}render(){super.render();let t=this.referentRect.center-this.rect.center;const s=.5*this.rect.width-8;t<-s&&(t=-s),t>s&&(t=s),this.setProperty("--arrow-x",`${t.toFixed(2)}px`)}}e.tooltip={Tooltip:u,TooltipSelector:i,TooltipEvent:c},e.internals.register(e.tooltip.TooltipSelector.TOOLTIP,e.tooltip.Tooltip); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const t="fr",s="dsfr",e=window[s],i={TOOLTIP:e.internals.ns.selector("tooltip"),SHOWN:e.internals.ns.selector("tooltip--shown"),HIDDING:e.internals.ns.selector("tooltip--hidding"),BUTTON:e.internals.ns.selector("btn--tooltip")},o=1,n=2;class h extends e.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(i.BUTTON)){const t=this.mouseover.bind(this);this.listen("mouseover",t),this.placement.listen("mouseover",t);const s=this.mouseout.bind(this);this.listen("mouseout",s),this.placement.listen("mouseout",s)}this.addEmission(e.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(e.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(t){this.node.contains(t)||this.blur()}_keydown(t){if(t===e.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(t){this._state!==t&&(this.isShown=t>0,this._state=t)}focusIn(){this.state|=o}focusOut(){this.state&=~o}mouseover(){this.state|=n}mouseout(){this.state&=~n}}const r=s=>`${t}-${s}`;r.selector=(t,s)=>(void 0===s&&(s="."),`${s}${r(t)}`),(r.attr=t=>`data-${r(t)}`).selector=(t,s)=>{let e=r.attr(t);return void 0!==s&&(e+=`="${s}"`),`[${e}]`},r.event=t=>`${s}.${t}`,r.emission=(t,s)=>`emission:${t}.${s}`;const c={SHOW:r.event("show"),HIDE:r.event("hide")},a="hidden",l="shown",d="hiding";class u extends e.core.Placement{constructor(){super(e.core.PlacementMode.AUTO,[e.core.PlacementPosition.TOP,e.core.PlacementPosition.BOTTOM],[e.core.PlacementAlign.CENTER,e.core.PlacementAlign.START,e.core.PlacementAlign.END]),this.modifier="",this._state=a}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,h),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===d&&(this.removeClass(i.SHOWN),this.removeClass(i.HIDDING),this._state=a,this.isShown=!1)}get isShown(){return super.isShown}set isShown(t){if(this.isEnabled)switch(!0){case t:this._state=l,this.addClass(i.SHOWN),this.removeClass(i.HIDDING),this.dispatch(c.SHOW),super.isShown=!0;break;case this.isShown&&!t&&this._state===l:this._state=d,this.addClass(i.HIDDING);break;case this.isShown&&!t&&this._state===a:this.dispatch(c.HIDE),this.removeClass(i.HIDDING),super.isShown=!1}}render(){super.render(),this.rect=this.getRect();let t=this.referentRect.center-this.rect.center;const s=.5*this.rect.width-8;t<-s&&(t=-s),t>s&&(t=s),this.setProperty("--arrow-x",`${t.toFixed(2)}px`)}}e.tooltip={Tooltip:u,TooltipSelector:i,TooltipEvent:c},e.internals.register(e.tooltip.TooltipSelector.TOOLTIP,e.tooltip.Tooltip); diff --git a/dsfr/static/dsfr/dist/component/tooltip/tooltip.nomodule.min.js b/dsfr/static/dsfr/dist/component/tooltip/tooltip.nomodule.min.js index 247209ee5..72739a2f2 100644 --- a/dsfr/static/dsfr/dist/component/tooltip/tooltip.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/tooltip/tooltip.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t="fr",e="dsfr",i=window[e],o={TOOLTIP:i.internals.ns.selector("tooltip"),SHOWN:i.internals.ns.selector("tooltip--shown"),BUTTON:i.internals.ns.selector("btn--tooltip")},s=1,n=2,r=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={state:{configurable:!0}},c={instanceClassName:{configurable:!0}};return c.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(o.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var s=this.mouseout.bind(this);this.listen("mouseout",s),this.placement.listen("mouseout",s)}this.addEmission(i.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(i.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===i.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},r.state.get=function(){return this._state},r.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=s},e.prototype.focusOut=function(){this.state&=~s},e.prototype.mouseover=function(){this.state|=n},e.prototype.mouseout=function(){this.state&=~n},Object.defineProperties(e.prototype,r),Object.defineProperties(e,c),e}(i.core.PlacementReferent),c=function(e){return t+"-"+e};c.selector=function(t,e){return void 0===e&&(e="."),""+e+c(t)},(c.attr=function(t){return"data-"+c(t)}).selector=function(t,e){var i=c.attr(t);return void 0!==e&&(i+='="'+e+'"'),"["+i+"]"},c.event=function(t){return e+"."+t},c.emission=function(t,e){return"emission:"+t+"."+e};var h={SHOW:c.event("show"),HIDE:c.event("hide")},a="hidden",p="shown",l="hiding",u=function(t){function e(){t.call(this,i.core.PlacementMode.AUTO,[i.core.PlacementPosition.TOP,i.core.PlacementPosition.BOTTOM],[i.core.PlacementAlign.CENTER,i.core.PlacementAlign.START,i.core.PlacementAlign.END]),this.modifier="",this._state=a}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var s={isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',r),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===l&&(this._state=a,this.isShown=!1)},s.isShown.get=function(){return t.prototype.isShown},s.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=p,this.addClass(o.SHOWN),this.dispatch(h.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===p:this._state=l,this.removeClass(o.SHOWN);break;case this.isShown&&!e&&this._state===a:this.dispatch(h.HIDE),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this);var e=this.referentRect.center-this.rect.center,i=.5*this.rect.width-8;e<-i&&(e=-i),e>i&&(e=i),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,s),Object.defineProperties(e,n),e}(i.core.Placement);i.tooltip={Tooltip:u,TooltipSelector:o,TooltipEvent:h},i.internals.register(i.tooltip.TooltipSelector.TOOLTIP,i.tooltip.Tooltip)}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t="fr",e="dsfr",i=window[e],o={TOOLTIP:i.internals.ns.selector("tooltip"),SHOWN:i.internals.ns.selector("tooltip--shown"),HIDDING:i.internals.ns.selector("tooltip--hidding"),BUTTON:i.internals.ns.selector("btn--tooltip")},s=1,n=2,r=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={state:{configurable:!0}},c={instanceClassName:{configurable:!0}};return c.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(o.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var s=this.mouseout.bind(this);this.listen("mouseout",s),this.placement.listen("mouseout",s)}this.addEmission(i.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(i.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===i.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},r.state.get=function(){return this._state},r.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=s},e.prototype.focusOut=function(){this.state&=~s},e.prototype.mouseover=function(){this.state|=n},e.prototype.mouseout=function(){this.state&=~n},Object.defineProperties(e.prototype,r),Object.defineProperties(e,c),e}(i.core.PlacementReferent),c=function(e){return t+"-"+e};c.selector=function(t,e){return void 0===e&&(e="."),""+e+c(t)},(c.attr=function(t){return"data-"+c(t)}).selector=function(t,e){var i=c.attr(t);return void 0!==e&&(i+='="'+e+'"'),"["+i+"]"},c.event=function(t){return e+"."+t},c.emission=function(t,e){return"emission:"+t+"."+e};var h={SHOW:c.event("show"),HIDE:c.event("hide")},a="hidden",l="shown",p="hiding",u=function(t){function e(){t.call(this,i.core.PlacementMode.AUTO,[i.core.PlacementPosition.TOP,i.core.PlacementPosition.BOTTOM],[i.core.PlacementAlign.CENTER,i.core.PlacementAlign.START,i.core.PlacementAlign.END]),this.modifier="",this._state=a}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var s={isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',r),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===p&&(this.removeClass(o.SHOWN),this.removeClass(o.HIDDING),this._state=a,this.isShown=!1)},s.isShown.get=function(){return t.prototype.isShown},s.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=l,this.addClass(o.SHOWN),this.removeClass(o.HIDDING),this.dispatch(h.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===l:this._state=p,this.addClass(o.HIDDING);break;case this.isShown&&!e&&this._state===a:this.dispatch(h.HIDE),this.removeClass(o.HIDDING),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this),this.rect=this.getRect();var e=this.referentRect.center-this.rect.center,i=.5*this.rect.width-8;e<-i&&(e=-i),e>i&&(e=i),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,s),Object.defineProperties(e,n),e}(i.core.Placement);i.tooltip={Tooltip:u,TooltipSelector:o,TooltipEvent:h},i.internals.register(i.tooltip.TooltipSelector.TOOLTIP,i.tooltip.Tooltip)}(); diff --git a/dsfr/static/dsfr/dist/component/tooltip/tooltip.print.min.css b/dsfr/static/dsfr/dist/component/tooltip/tooltip.print.min.css index e7a329906..e0f27cc88 100644 --- a/dsfr/static/dsfr/dist/component/tooltip/tooltip.print.min.css +++ b/dsfr/static/dsfr/dist/component/tooltip/tooltip.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/transcription/transcription.legacy.min.css b/dsfr/static/dsfr/dist/component/transcription/transcription.legacy.min.css index a14278967..81cc760d1 100644 --- a/dsfr/static/dsfr/dist/component/transcription/transcription.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/transcription/transcription.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/transcription/transcription.main.min.css b/dsfr/static/dsfr/dist/component/transcription/transcription.main.min.css index 88d2e20d2..f1ff77e80 100644 --- a/dsfr/static/dsfr/dist/component/transcription/transcription.main.min.css +++ b/dsfr/static/dsfr/dist/component/transcription/transcription.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../../icons/media/align-left.svg);mask-image:url(../../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/transcription/transcription.min.css b/dsfr/static/dsfr/dist/component/transcription/transcription.min.css index 0f6a12a7f..2364fdd61 100644 --- a/dsfr/static/dsfr/dist/component/transcription/transcription.min.css +++ b/dsfr/static/dsfr/dist/component/transcription/transcription.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../../icons/media/align-left.svg);mask-image:url(../../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/component/transcription/transcription.module.min.js b/dsfr/static/dsfr/dist/component/transcription/transcription.module.min.js index 1ae5d5424..e99a94254 100644 --- a/dsfr/static/dsfr/dist/component/transcription/transcription.module.min.js +++ b/dsfr/static/dsfr/dist/component/transcription/transcription.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ const n=window.dsfr,t=n.internals.ns.selector("transcription"),r={TRANSCRIPTION:t,BUTTON:`${t}__btn`};class s extends n.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((n=>n.getInstance("CollapseButton"))).filter((n=>null!==n&&n.hasClass(r.BUTTON)))[0]}}n.transcription={Transcription:s,TranscriptionSelector:r},n.internals.register(n.transcription.TranscriptionSelector.TRANSCRIPTION,n.transcription.Transcription); diff --git a/dsfr/static/dsfr/dist/component/transcription/transcription.nomodule.min.js b/dsfr/static/dsfr/dist/component/transcription/transcription.nomodule.min.js index d7889615e..dc765e702 100644 --- a/dsfr/static/dsfr/dist/component/transcription/transcription.nomodule.min.js +++ b/dsfr/static/dsfr/dist/component/transcription/transcription.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var t=window.dsfr,n=t.internals.ns.selector("transcription"),r={TRANSCRIPTION:n,BUTTON:n+"__btn"},e=function(t){function n(){t.apply(this,arguments)}t&&(n.__proto__=t),n.prototype=Object.create(t&&t.prototype),n.prototype.constructor=n;var e={collapsePrimary:{configurable:!0}},i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Transcription"},e.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(r.BUTTON)}))[0]},Object.defineProperties(n.prototype,e),Object.defineProperties(n,i),n}(t.core.Instance);t.transcription={Transcription:e,TranscriptionSelector:r},t.internals.register(t.transcription.TranscriptionSelector.TRANSCRIPTION,t.transcription.Transcription)}(); diff --git a/dsfr/static/dsfr/dist/component/transcription/transcription.print.min.css b/dsfr/static/dsfr/dist/component/transcription/transcription.print.min.css index ef853a6af..0859ed6b0 100644 --- a/dsfr/static/dsfr/dist/component/transcription/transcription.print.min.css +++ b/dsfr/static/dsfr/dist/component/transcription/transcription.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/translate/translate.legacy.min.css b/dsfr/static/dsfr/dist/component/translate/translate.legacy.min.css index 1ff4c2f3e..3fdaecb82 100644 --- a/dsfr/static/dsfr/dist/component/translate/translate.legacy.min.css +++ b/dsfr/static/dsfr/dist/component/translate/translate.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/translate/translate.main.min.css b/dsfr/static/dsfr/dist/component/translate/translate.main.min.css index 88c0f7725..3aac58c44 100644 --- a/dsfr/static/dsfr/dist/component/translate/translate.main.min.css +++ b/dsfr/static/dsfr/dist/component/translate/translate.main.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/editor/translate-2.svg);mask-image:url(../../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/editor/translate-2.svg);mask-image:url(../../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0}}@media (min-width:78em){ + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0}}@media (min-width:78em){ /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}}@media (prefers-reduced-motion:reduce){.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-translate .fr-menu__list{border-top:1px solid}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/translate/translate.min.css b/dsfr/static/dsfr/dist/component/translate/translate.min.css index 3777f3434..970a2a2b3 100644 --- a/dsfr/static/dsfr/dist/component/translate/translate.min.css +++ b/dsfr/static/dsfr/dist/component/translate/translate.min.css @@ -1,11 +1,11 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/editor/translate-2.svg);mask-image:url(../../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../../icons/editor/translate-2.svg);mask-image:url(../../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ /*! media md */ /*! media md */}@media (min-width:62em){ - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */}@media (min-width:78em){ /*! media xl */ /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}}@media (prefers-reduced-motion:reduce){.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-translate .fr-menu__list{border-top:1px solid}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-translate .fr-translate__btn:before{background-image:url(../../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}}@media print{.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/translate/translate.print.min.css b/dsfr/static/dsfr/dist/component/translate/translate.print.min.css index 183ee5776..e372a7717 100644 --- a/dsfr/static/dsfr/dist/component/translate/translate.print.min.css +++ b/dsfr/static/dsfr/dist/component/translate/translate.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/component/upload/upload.main.min.css b/dsfr/static/dsfr/dist/component/upload/upload.main.min.css index 560f48075..2604a74f5 100644 --- a/dsfr/static/dsfr/dist/component/upload/upload.main.min.css +++ b/dsfr/static/dsfr/dist/component/upload/upload.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/upload/upload.min.css b/dsfr/static/dsfr/dist/component/upload/upload.min.css index b2903fcf2..f9f527854 100644 --- a/dsfr/static/dsfr/dist/component/upload/upload.min.css +++ b/dsfr/static/dsfr/dist/component/upload/upload.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/component/upload/upload.print.min.css b/dsfr/static/dsfr/dist/component/upload/upload.print.min.css index 4da3ef2a0..b76da9a97 100644 --- a/dsfr/static/dsfr/dist/component/upload/upload.print.min.css +++ b/dsfr/static/dsfr/dist/component/upload/upload.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media print{.fr-upload{font-size:1rem;line-height:1.5rem}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/core/core.legacy.min.css b/dsfr/static/dsfr/dist/core/core.legacy.min.css index f348c9e6c..c908c8534 100644 --- a/dsfr/static/dsfr/dist/core/core.legacy.min.css +++ b/dsfr/static/dsfr/dist/core/core.legacy.min.css @@ -1,7 +1,7 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ /*! media lg */}@media (min-width:78em){ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/core/core.main.min.css b/dsfr/static/dsfr/dist/core/core.main.min.css index 4e68b8195..992ab973b 100644 --- a/dsfr/static/dsfr/dist/core/core.main.min.css +++ b/dsfr/static/dsfr/dist/core/core.main.min.css @@ -1,8 +1,8 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32)}.fr-placement{left:0;position:fixed;top:0}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse--expanded{overflow-x:hidden;overflow-y:auto}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32)}.fr-placement{position:fixed;width:max-content}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}@media (min-width:36em){ /*! media sm */.fr-hidden-sm{display:none!important}.fr-unhidden-sm{display:inherit!important}.fr-sr-only-sm{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-sm-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-sm-2--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-sm-3--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-sm-4--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-sm-5--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-sm-6--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-sm-7--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-sm-8--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-sm-9--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-sm-10--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-sm-11--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-sm-12--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%}}@media (min-width:48em){ /*! media md */h6{font-size:1.25rem}h5,h6{line-height:1.75rem}h5{font-size:1.375rem}h4{font-size:1.5rem;line-height:2rem}h3{font-size:1.75rem;line-height:2.25rem}h2{font-size:2rem;line-height:2.5rem}h1{font-size:2.5rem;line-height:3rem}.fr-h6{font-size:1.25rem!important}.fr-h5,.fr-h6{line-height:1.75rem!important}.fr-h5{font-size:1.375rem!important}.fr-h4{font-size:1.5rem!important;line-height:2rem!important}.fr-h3{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h2{font-size:2rem!important;line-height:2.5rem!important}.fr-h1{font-size:2.5rem!important;line-height:3rem!important}.fr-display--xs{font-size:3rem!important;line-height:3.5rem!important}.fr-display--sm{font-size:3.5rem!important;line-height:4rem!important}.fr-display--md{font-size:4rem!important;line-height:4.5rem!important}.fr-display--lg{font-size:4.5rem!important;line-height:5rem!important}.fr-display--xl{font-size:5rem!important;line-height:5.5rem!important}.fr-hidden-md{display:none!important}.fr-unhidden-md{display:inherit!important}.fr-sr-only-md{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-md{padding-left:1rem;padding-right:1rem}.fr-container-md--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-md--gutters{margin:-.5rem}.fr-grid-row-md--gutters>.fr-col,.fr-grid-row-md--gutters>[class*=" fr-col-"],.fr-grid-row-md--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-md--no-gutters{margin:0}.fr-grid-row-md--no-gutters>.fr-col,.fr-grid-row-md--no-gutters>[class*=" fr-col-"],.fr-grid-row-md--no-gutters>[class^=fr-col-]{padding:0}.fr-col-md{flex:1}.fr-col-md-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-md-1:not(.fr-col-offset-md-1--right){margin-left:8.33333%}.fr-col-offset-md-1--right{margin-right:8.33333%}.fr-col-md-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-md-2:not(.fr-col-offset-md-2--right){margin-left:16.66667%}.fr-col-offset-md-2--right{margin-right:16.66667%}.fr-col-md-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-md-3:not(.fr-col-offset-md-3--right){margin-left:25%}.fr-col-offset-md-3--right{margin-right:25%}.fr-col-md-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-md-4:not(.fr-col-offset-md-4--right){margin-left:33.33333%}.fr-col-offset-md-4--right{margin-right:33.33333%}.fr-col-md-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-md-5:not(.fr-col-offset-md-5--right){margin-left:41.66667%}.fr-col-offset-md-5--right{margin-right:41.66667%}.fr-col-md-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-md-6:not(.fr-col-offset-md-6--right){margin-left:50%}.fr-col-offset-md-6--right{margin-right:50%}.fr-col-md-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-md-7:not(.fr-col-offset-md-7--right){margin-left:58.33333%}.fr-col-offset-md-7--right{margin-right:58.33333%}.fr-col-md-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-md-8:not(.fr-col-offset-md-8--right){margin-left:66.66667%}.fr-col-offset-md-8--right{margin-right:66.66667%}.fr-col-md-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-md-9:not(.fr-col-offset-md-9--right){margin-left:75%}.fr-col-offset-md-9--right{margin-right:75%}.fr-col-md-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-md-10:not(.fr-col-offset-md-10--right){margin-left:83.33333%}.fr-col-offset-md-10--right{margin-right:83.33333%}.fr-col-md-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-md-11:not(.fr-col-offset-md-11--right){margin-left:91.66667%}.fr-col-offset-md-11--right{margin-right:91.66667%}.fr-col-md-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-md-12:not(.fr-col-offset-md-12--right){margin-left:100%}.fr-col-offset-md-12--right{margin-right:100%}.fr-m-md-n4w,.fr-m-md-n8v{margin:-2rem!important}.fr-ml-md-n4w,.fr-ml-md-n8v,.fr-mx-md-n4w,.fr-mx-md-n8v{margin-left:-2rem!important}.fr-mr-md-n4w,.fr-mr-md-n8v,.fr-mx-md-n4w,.fr-mx-md-n8v{margin-right:-2rem!important}.fr-mt-md-n4w,.fr-mt-md-n8v,.fr-my-md-n4w,.fr-my-md-n8v{margin-top:-2rem!important}.fr-mb-md-n4w,.fr-mb-md-n8v,.fr-my-md-n4w,.fr-my-md-n8v{margin-bottom:-2rem!important}.fr-m-md-n7v{margin:-1.75rem!important}.fr-ml-md-n7v,.fr-mx-md-n7v{margin-left:-1.75rem!important}.fr-mr-md-n7v,.fr-mx-md-n7v{margin-right:-1.75rem!important}.fr-mt-md-n7v,.fr-my-md-n7v{margin-top:-1.75rem!important}.fr-mb-md-n7v,.fr-my-md-n7v{margin-bottom:-1.75rem!important}.fr-m-md-n3w,.fr-m-md-n6v{margin:-1.5rem!important}.fr-ml-md-n3w,.fr-ml-md-n6v,.fr-mx-md-n3w,.fr-mx-md-n6v{margin-left:-1.5rem!important}.fr-mr-md-n3w,.fr-mr-md-n6v,.fr-mx-md-n3w,.fr-mx-md-n6v{margin-right:-1.5rem!important}.fr-mt-md-n3w,.fr-mt-md-n6v,.fr-my-md-n3w,.fr-my-md-n6v{margin-top:-1.5rem!important}.fr-mb-md-n3w,.fr-mb-md-n6v,.fr-my-md-n3w,.fr-my-md-n6v{margin-bottom:-1.5rem!important}.fr-m-md-n5v{margin:-1.25rem!important}.fr-ml-md-n5v,.fr-mx-md-n5v{margin-left:-1.25rem!important}.fr-mr-md-n5v,.fr-mx-md-n5v{margin-right:-1.25rem!important}.fr-mt-md-n5v,.fr-my-md-n5v{margin-top:-1.25rem!important}.fr-mb-md-n5v,.fr-my-md-n5v{margin-bottom:-1.25rem!important}.fr-m-md-n2w,.fr-m-md-n4v{margin:-1rem!important}.fr-ml-md-n2w,.fr-ml-md-n4v,.fr-mx-md-n2w,.fr-mx-md-n4v{margin-left:-1rem!important}.fr-mr-md-n2w,.fr-mr-md-n4v,.fr-mx-md-n2w,.fr-mx-md-n4v{margin-right:-1rem!important}.fr-mt-md-n2w,.fr-mt-md-n4v,.fr-my-md-n2w,.fr-my-md-n4v{margin-top:-1rem!important}.fr-mb-md-n2w,.fr-mb-md-n4v,.fr-my-md-n2w,.fr-my-md-n4v{margin-bottom:-1rem!important}.fr-m-md-n3v{margin:-.75rem!important}.fr-ml-md-n3v,.fr-mx-md-n3v{margin-left:-.75rem!important}.fr-mr-md-n3v,.fr-mx-md-n3v{margin-right:-.75rem!important}.fr-mt-md-n3v,.fr-my-md-n3v{margin-top:-.75rem!important}.fr-mb-md-n3v,.fr-my-md-n3v{margin-bottom:-.75rem!important}.fr-m-md-n1w,.fr-m-md-n2v{margin:-.5rem!important}.fr-ml-md-n1w,.fr-ml-md-n2v,.fr-mx-md-n1w,.fr-mx-md-n2v{margin-left:-.5rem!important}.fr-mr-md-n1w,.fr-mr-md-n2v,.fr-mx-md-n1w,.fr-mx-md-n2v{margin-right:-.5rem!important}.fr-mt-md-n1w,.fr-mt-md-n2v,.fr-my-md-n1w,.fr-my-md-n2v{margin-top:-.5rem!important}.fr-mb-md-n1w,.fr-mb-md-n2v,.fr-my-md-n1w,.fr-my-md-n2v{margin-bottom:-.5rem!important}.fr-m-md-n1v{margin:-.25rem!important}.fr-ml-md-n1v,.fr-mx-md-n1v{margin-left:-.25rem!important}.fr-mr-md-n1v,.fr-mx-md-n1v{margin-right:-.25rem!important}.fr-mt-md-n1v,.fr-my-md-n1v{margin-top:-.25rem!important}.fr-mb-md-n1v,.fr-my-md-n1v{margin-bottom:-.25rem!important}.fr-m-md-n1-5v{margin:-.375rem!important}.fr-ml-md-n1-5v,.fr-mx-md-n1-5v{margin-left:-.375rem!important}.fr-mr-md-n1-5v,.fr-mx-md-n1-5v{margin-right:-.375rem!important}.fr-mt-md-n1-5v,.fr-my-md-n1-5v{margin-top:-.375rem!important}.fr-mb-md-n1-5v,.fr-my-md-n1-5v{margin-bottom:-.375rem!important}.fr-m-md-0{margin:0!important}.fr-ml-md-0,.fr-mx-md-0{margin-left:0!important}.fr-mr-md-0,.fr-mx-md-0{margin-right:0!important}.fr-mt-md-0,.fr-my-md-0{margin-top:0!important}.fr-mb-md-0,.fr-my-md-0{margin-bottom:0!important}.fr-m-md-n0-5v{margin:-.125rem!important}.fr-ml-md-n0-5v,.fr-mx-md-n0-5v{margin-left:-.125rem!important}.fr-mr-md-n0-5v,.fr-mx-md-n0-5v{margin-right:-.125rem!important}.fr-mt-md-n0-5v,.fr-my-md-n0-5v{margin-top:-.125rem!important}.fr-mb-md-n0-5v,.fr-my-md-n0-5v{margin-bottom:-.125rem!important}.fr-m-md-0-5v{margin:.125rem!important}.fr-ml-md-0-5v,.fr-mx-md-0-5v{margin-left:.125rem!important}.fr-mr-md-0-5v,.fr-mx-md-0-5v{margin-right:.125rem!important}.fr-mt-md-0-5v,.fr-my-md-0-5v{margin-top:.125rem!important}.fr-mb-md-0-5v,.fr-my-md-0-5v{margin-bottom:.125rem!important}.fr-m-md-1v{margin:.25rem!important}.fr-ml-md-1v,.fr-mx-md-1v{margin-left:.25rem!important}.fr-mr-md-1v,.fr-mx-md-1v{margin-right:.25rem!important}.fr-mt-md-1v,.fr-my-md-1v{margin-top:.25rem!important}.fr-mb-md-1v,.fr-my-md-1v{margin-bottom:.25rem!important}.fr-m-md-1-5v{margin:.375rem!important}.fr-ml-md-1-5v,.fr-mx-md-1-5v{margin-left:.375rem!important}.fr-mr-md-1-5v,.fr-mx-md-1-5v{margin-right:.375rem!important}.fr-mt-md-1-5v,.fr-my-md-1-5v{margin-top:.375rem!important}.fr-mb-md-1-5v,.fr-my-md-1-5v{margin-bottom:.375rem!important}.fr-m-md-1w,.fr-m-md-2v{margin:.5rem!important}.fr-ml-md-1w,.fr-ml-md-2v,.fr-mx-md-1w,.fr-mx-md-2v{margin-left:.5rem!important}.fr-mr-md-1w,.fr-mr-md-2v,.fr-mx-md-1w,.fr-mx-md-2v{margin-right:.5rem!important}.fr-mt-md-1w,.fr-mt-md-2v,.fr-my-md-1w,.fr-my-md-2v{margin-top:.5rem!important}.fr-mb-md-1w,.fr-mb-md-2v,.fr-my-md-1w,.fr-my-md-2v{margin-bottom:.5rem!important}.fr-m-md-3v{margin:.75rem!important}.fr-ml-md-3v,.fr-mx-md-3v{margin-left:.75rem!important}.fr-mr-md-3v,.fr-mx-md-3v{margin-right:.75rem!important}.fr-mt-md-3v,.fr-my-md-3v{margin-top:.75rem!important}.fr-mb-md-3v,.fr-my-md-3v{margin-bottom:.75rem!important}.fr-m-md-2w,.fr-m-md-4v{margin:1rem!important}.fr-ml-md-2w,.fr-ml-md-4v,.fr-mx-md-2w,.fr-mx-md-4v{margin-left:1rem!important}.fr-mr-md-2w,.fr-mr-md-4v,.fr-mx-md-2w,.fr-mx-md-4v{margin-right:1rem!important}.fr-mt-md-2w,.fr-mt-md-4v,.fr-my-md-2w,.fr-my-md-4v{margin-top:1rem!important}.fr-mb-md-2w,.fr-mb-md-4v,.fr-my-md-2w,.fr-my-md-4v{margin-bottom:1rem!important}.fr-m-md-5v{margin:1.25rem!important}.fr-ml-md-5v,.fr-mx-md-5v{margin-left:1.25rem!important}.fr-mr-md-5v,.fr-mx-md-5v{margin-right:1.25rem!important}.fr-mt-md-5v,.fr-my-md-5v{margin-top:1.25rem!important}.fr-mb-md-5v,.fr-my-md-5v{margin-bottom:1.25rem!important}.fr-m-md-3w,.fr-m-md-6v{margin:1.5rem!important}.fr-ml-md-3w,.fr-ml-md-6v,.fr-mx-md-3w,.fr-mx-md-6v{margin-left:1.5rem!important}.fr-mr-md-3w,.fr-mr-md-6v,.fr-mx-md-3w,.fr-mx-md-6v{margin-right:1.5rem!important}.fr-mt-md-3w,.fr-mt-md-6v,.fr-my-md-3w,.fr-my-md-6v{margin-top:1.5rem!important}.fr-mb-md-3w,.fr-mb-md-6v,.fr-my-md-3w,.fr-my-md-6v{margin-bottom:1.5rem!important}.fr-m-md-7v{margin:1.75rem!important}.fr-ml-md-7v,.fr-mx-md-7v{margin-left:1.75rem!important}.fr-mr-md-7v,.fr-mx-md-7v{margin-right:1.75rem!important}.fr-mt-md-7v,.fr-my-md-7v{margin-top:1.75rem!important}.fr-mb-md-7v,.fr-my-md-7v{margin-bottom:1.75rem!important}.fr-m-md-4w,.fr-m-md-8v{margin:2rem!important}.fr-ml-md-4w,.fr-ml-md-8v,.fr-mx-md-4w,.fr-mx-md-8v{margin-left:2rem!important}.fr-mr-md-4w,.fr-mr-md-8v,.fr-mx-md-4w,.fr-mx-md-8v{margin-right:2rem!important}.fr-mt-md-4w,.fr-mt-md-8v,.fr-my-md-4w,.fr-my-md-8v{margin-top:2rem!important}.fr-mb-md-4w,.fr-mb-md-8v,.fr-my-md-4w,.fr-my-md-8v{margin-bottom:2rem!important}.fr-m-md-9v{margin:2.25rem!important}.fr-ml-md-9v,.fr-mx-md-9v{margin-left:2.25rem!important}.fr-mr-md-9v,.fr-mx-md-9v{margin-right:2.25rem!important}.fr-mt-md-9v,.fr-my-md-9v{margin-top:2.25rem!important}.fr-mb-md-9v,.fr-my-md-9v{margin-bottom:2.25rem!important}.fr-m-md-10v,.fr-m-md-5w{margin:2.5rem!important}.fr-ml-md-10v,.fr-ml-md-5w,.fr-mx-md-10v,.fr-mx-md-5w{margin-left:2.5rem!important}.fr-mr-md-10v,.fr-mr-md-5w,.fr-mx-md-10v,.fr-mx-md-5w{margin-right:2.5rem!important}.fr-mt-md-10v,.fr-mt-md-5w,.fr-my-md-10v,.fr-my-md-5w{margin-top:2.5rem!important}.fr-mb-md-10v,.fr-mb-md-5w,.fr-my-md-10v,.fr-my-md-5w{margin-bottom:2.5rem!important}.fr-m-md-11v{margin:2.75rem!important}.fr-ml-md-11v,.fr-mx-md-11v{margin-left:2.75rem!important}.fr-mr-md-11v,.fr-mx-md-11v{margin-right:2.75rem!important}.fr-mt-md-11v,.fr-my-md-11v{margin-top:2.75rem!important}.fr-mb-md-11v,.fr-my-md-11v{margin-bottom:2.75rem!important}.fr-m-md-12v,.fr-m-md-6w{margin:3rem!important}.fr-ml-md-12v,.fr-ml-md-6w,.fr-mx-md-12v,.fr-mx-md-6w{margin-left:3rem!important}.fr-mr-md-12v,.fr-mr-md-6w,.fr-mx-md-12v,.fr-mx-md-6w{margin-right:3rem!important}.fr-mt-md-12v,.fr-mt-md-6w,.fr-my-md-12v,.fr-my-md-6w{margin-top:3rem!important}.fr-mb-md-12v,.fr-mb-md-6w,.fr-my-md-12v,.fr-my-md-6w{margin-bottom:3rem!important}.fr-m-md-13v{margin:3.25rem!important}.fr-ml-md-13v,.fr-mx-md-13v{margin-left:3.25rem!important}.fr-mr-md-13v,.fr-mx-md-13v{margin-right:3.25rem!important}.fr-mt-md-13v,.fr-my-md-13v{margin-top:3.25rem!important}.fr-mb-md-13v,.fr-my-md-13v{margin-bottom:3.25rem!important}.fr-m-md-14v,.fr-m-md-7w{margin:3.5rem!important}.fr-ml-md-14v,.fr-ml-md-7w,.fr-mx-md-14v,.fr-mx-md-7w{margin-left:3.5rem!important}.fr-mr-md-14v,.fr-mr-md-7w,.fr-mx-md-14v,.fr-mx-md-7w{margin-right:3.5rem!important}.fr-mt-md-14v,.fr-mt-md-7w,.fr-my-md-14v,.fr-my-md-7w{margin-top:3.5rem!important}.fr-mb-md-14v,.fr-mb-md-7w,.fr-my-md-14v,.fr-my-md-7w{margin-bottom:3.5rem!important}.fr-m-md-15v{margin:3.75rem!important}.fr-ml-md-15v,.fr-mx-md-15v{margin-left:3.75rem!important}.fr-mr-md-15v,.fr-mx-md-15v{margin-right:3.75rem!important}.fr-mt-md-15v,.fr-my-md-15v{margin-top:3.75rem!important}.fr-mb-md-15v,.fr-my-md-15v{margin-bottom:3.75rem!important}.fr-m-md-16v,.fr-m-md-8w{margin:4rem!important}.fr-ml-md-16v,.fr-ml-md-8w,.fr-mx-md-16v,.fr-mx-md-8w{margin-left:4rem!important}.fr-mr-md-16v,.fr-mr-md-8w,.fr-mx-md-16v,.fr-mx-md-8w{margin-right:4rem!important}.fr-mt-md-16v,.fr-mt-md-8w,.fr-my-md-16v,.fr-my-md-8w{margin-top:4rem!important}.fr-mb-md-16v,.fr-mb-md-8w,.fr-my-md-16v,.fr-my-md-8w{margin-bottom:4rem!important}.fr-m-md-17v{margin:4.25rem!important}.fr-ml-md-17v,.fr-mx-md-17v{margin-left:4.25rem!important}.fr-mr-md-17v,.fr-mx-md-17v{margin-right:4.25rem!important}.fr-mt-md-17v,.fr-my-md-17v{margin-top:4.25rem!important}.fr-mb-md-17v,.fr-my-md-17v{margin-bottom:4.25rem!important}.fr-m-md-18v,.fr-m-md-9w{margin:4.5rem!important}.fr-ml-md-18v,.fr-ml-md-9w,.fr-mx-md-18v,.fr-mx-md-9w{margin-left:4.5rem!important}.fr-mr-md-18v,.fr-mr-md-9w,.fr-mx-md-18v,.fr-mx-md-9w{margin-right:4.5rem!important}.fr-mt-md-18v,.fr-mt-md-9w,.fr-my-md-18v,.fr-my-md-9w{margin-top:4.5rem!important}.fr-mb-md-18v,.fr-mb-md-9w,.fr-my-md-18v,.fr-my-md-9w{margin-bottom:4.5rem!important}.fr-m-md-19v{margin:4.75rem!important}.fr-ml-md-19v,.fr-mx-md-19v{margin-left:4.75rem!important}.fr-mr-md-19v,.fr-mx-md-19v{margin-right:4.75rem!important}.fr-mt-md-19v,.fr-my-md-19v{margin-top:4.75rem!important}.fr-mb-md-19v,.fr-my-md-19v{margin-bottom:4.75rem!important}.fr-m-md-10w,.fr-m-md-20v{margin:5rem!important}.fr-ml-md-10w,.fr-ml-md-20v,.fr-mx-md-10w,.fr-mx-md-20v{margin-left:5rem!important}.fr-mr-md-10w,.fr-mr-md-20v,.fr-mx-md-10w,.fr-mx-md-20v{margin-right:5rem!important}.fr-mt-md-10w,.fr-mt-md-20v,.fr-my-md-10w,.fr-my-md-20v{margin-top:5rem!important}.fr-mb-md-10w,.fr-mb-md-20v,.fr-my-md-10w,.fr-my-md-20v{margin-bottom:5rem!important}.fr-m-md-21v{margin:5.25rem!important}.fr-ml-md-21v,.fr-mx-md-21v{margin-left:5.25rem!important}.fr-mr-md-21v,.fr-mx-md-21v{margin-right:5.25rem!important}.fr-mt-md-21v,.fr-my-md-21v{margin-top:5.25rem!important}.fr-mb-md-21v,.fr-my-md-21v{margin-bottom:5.25rem!important}.fr-m-md-11w,.fr-m-md-22v{margin:5.5rem!important}.fr-ml-md-11w,.fr-ml-md-22v,.fr-mx-md-11w,.fr-mx-md-22v{margin-left:5.5rem!important}.fr-mr-md-11w,.fr-mr-md-22v,.fr-mx-md-11w,.fr-mx-md-22v{margin-right:5.5rem!important}.fr-mt-md-11w,.fr-mt-md-22v,.fr-my-md-11w,.fr-my-md-22v{margin-top:5.5rem!important}.fr-mb-md-11w,.fr-mb-md-22v,.fr-my-md-11w,.fr-my-md-22v{margin-bottom:5.5rem!important}.fr-m-md-23v{margin:5.75rem!important}.fr-ml-md-23v,.fr-mx-md-23v{margin-left:5.75rem!important}.fr-mr-md-23v,.fr-mx-md-23v{margin-right:5.75rem!important}.fr-mt-md-23v,.fr-my-md-23v{margin-top:5.75rem!important}.fr-mb-md-23v,.fr-my-md-23v{margin-bottom:5.75rem!important}.fr-m-md-12w,.fr-m-md-24v{margin:6rem!important}.fr-ml-md-12w,.fr-ml-md-24v,.fr-mx-md-12w,.fr-mx-md-24v{margin-left:6rem!important}.fr-mr-md-12w,.fr-mr-md-24v,.fr-mx-md-12w,.fr-mx-md-24v{margin-right:6rem!important}.fr-mt-md-12w,.fr-mt-md-24v,.fr-my-md-12w,.fr-my-md-24v{margin-top:6rem!important}.fr-mb-md-12w,.fr-mb-md-24v,.fr-my-md-12w,.fr-my-md-24v{margin-bottom:6rem!important}.fr-m-md-25v{margin:6.25rem!important}.fr-ml-md-25v,.fr-mx-md-25v{margin-left:6.25rem!important}.fr-mr-md-25v,.fr-mx-md-25v{margin-right:6.25rem!important}.fr-mt-md-25v,.fr-my-md-25v{margin-top:6.25rem!important}.fr-mb-md-25v,.fr-my-md-25v{margin-bottom:6.25rem!important}.fr-m-md-13w,.fr-m-md-26v{margin:6.5rem!important}.fr-ml-md-13w,.fr-ml-md-26v,.fr-mx-md-13w,.fr-mx-md-26v{margin-left:6.5rem!important}.fr-mr-md-13w,.fr-mr-md-26v,.fr-mx-md-13w,.fr-mx-md-26v{margin-right:6.5rem!important}.fr-mt-md-13w,.fr-mt-md-26v,.fr-my-md-13w,.fr-my-md-26v{margin-top:6.5rem!important}.fr-mb-md-13w,.fr-mb-md-26v,.fr-my-md-13w,.fr-my-md-26v{margin-bottom:6.5rem!important}.fr-m-md-27v{margin:6.75rem!important}.fr-ml-md-27v,.fr-mx-md-27v{margin-left:6.75rem!important}.fr-mr-md-27v,.fr-mx-md-27v{margin-right:6.75rem!important}.fr-mt-md-27v,.fr-my-md-27v{margin-top:6.75rem!important}.fr-mb-md-27v,.fr-my-md-27v{margin-bottom:6.75rem!important}.fr-m-md-14w,.fr-m-md-28v{margin:7rem!important}.fr-ml-md-14w,.fr-ml-md-28v,.fr-mx-md-14w,.fr-mx-md-28v{margin-left:7rem!important}.fr-mr-md-14w,.fr-mr-md-28v,.fr-mx-md-14w,.fr-mx-md-28v{margin-right:7rem!important}.fr-mt-md-14w,.fr-mt-md-28v,.fr-my-md-14w,.fr-my-md-28v{margin-top:7rem!important}.fr-mb-md-14w,.fr-mb-md-28v,.fr-my-md-14w,.fr-my-md-28v{margin-bottom:7rem!important}.fr-m-md-29v{margin:7.25rem!important}.fr-ml-md-29v,.fr-mx-md-29v{margin-left:7.25rem!important}.fr-mr-md-29v,.fr-mx-md-29v{margin-right:7.25rem!important}.fr-mt-md-29v,.fr-my-md-29v{margin-top:7.25rem!important}.fr-mb-md-29v,.fr-my-md-29v{margin-bottom:7.25rem!important}.fr-m-md-15w,.fr-m-md-30v{margin:7.5rem!important}.fr-ml-md-15w,.fr-ml-md-30v,.fr-mx-md-15w,.fr-mx-md-30v{margin-left:7.5rem!important}.fr-mr-md-15w,.fr-mr-md-30v,.fr-mx-md-15w,.fr-mx-md-30v{margin-right:7.5rem!important}.fr-mt-md-15w,.fr-mt-md-30v,.fr-my-md-15w,.fr-my-md-30v{margin-top:7.5rem!important}.fr-mb-md-15w,.fr-mb-md-30v,.fr-my-md-15w,.fr-my-md-30v{margin-bottom:7.5rem!important}.fr-m-md-31v{margin:7.75rem!important}.fr-ml-md-31v,.fr-mx-md-31v{margin-left:7.75rem!important}.fr-mr-md-31v,.fr-mx-md-31v{margin-right:7.75rem!important}.fr-mt-md-31v,.fr-my-md-31v{margin-top:7.75rem!important}.fr-mb-md-31v,.fr-my-md-31v{margin-bottom:7.75rem!important}.fr-m-md-16w,.fr-m-md-32v{margin:8rem!important}.fr-ml-md-16w,.fr-ml-md-32v,.fr-mx-md-16w,.fr-mx-md-32v{margin-left:8rem!important}.fr-mr-md-16w,.fr-mr-md-32v,.fr-mx-md-16w,.fr-mx-md-32v{margin-right:8rem!important}.fr-mt-md-16w,.fr-mt-md-32v,.fr-my-md-16w,.fr-my-md-32v{margin-top:8rem!important}.fr-mb-md-16w,.fr-mb-md-32v,.fr-my-md-16w,.fr-my-md-32v{margin-bottom:8rem!important}.fr-m-md-auto{margin:auto}.fr-ml-md-auto,.fr-mx-md-auto{margin-left:auto}.fr-mr-md-auto,.fr-mx-md-auto{margin-right:auto}.fr-mt-md-auto,.fr-my-md-auto{margin-top:auto}.fr-mb-md-auto,.fr-my-md-auto{margin-bottom:auto}.fr-p-md-0{padding:0!important}.fr-pl-md-0,.fr-px-md-0{padding-left:0!important}.fr-pr-md-0,.fr-px-md-0{padding-right:0!important}.fr-pt-md-0,.fr-py-md-0{padding-top:0!important}.fr-pb-md-0,.fr-py-md-0{padding-bottom:0!important}.fr-p-md-0-5v{padding:.125rem!important}.fr-pl-md-0-5v,.fr-px-md-0-5v{padding-left:.125rem!important}.fr-pr-md-0-5v,.fr-px-md-0-5v{padding-right:.125rem!important}.fr-pt-md-0-5v,.fr-py-md-0-5v{padding-top:.125rem!important}.fr-pb-md-0-5v,.fr-py-md-0-5v{padding-bottom:.125rem!important}.fr-p-md-1v{padding:.25rem!important}.fr-pl-md-1v,.fr-px-md-1v{padding-left:.25rem!important}.fr-pr-md-1v,.fr-px-md-1v{padding-right:.25rem!important}.fr-pt-md-1v,.fr-py-md-1v{padding-top:.25rem!important}.fr-pb-md-1v,.fr-py-md-1v{padding-bottom:.25rem!important}.fr-p-md-1-5v{padding:.375rem!important}.fr-pl-md-1-5v,.fr-px-md-1-5v{padding-left:.375rem!important}.fr-pr-md-1-5v,.fr-px-md-1-5v{padding-right:.375rem!important}.fr-pt-md-1-5v,.fr-py-md-1-5v{padding-top:.375rem!important}.fr-pb-md-1-5v,.fr-py-md-1-5v{padding-bottom:.375rem!important}.fr-p-md-1w,.fr-p-md-2v{padding:.5rem!important}.fr-pl-md-1w,.fr-pl-md-2v,.fr-px-md-1w,.fr-px-md-2v{padding-left:.5rem!important}.fr-pr-md-1w,.fr-pr-md-2v,.fr-px-md-1w,.fr-px-md-2v{padding-right:.5rem!important}.fr-pt-md-1w,.fr-pt-md-2v,.fr-py-md-1w,.fr-py-md-2v{padding-top:.5rem!important}.fr-pb-md-1w,.fr-pb-md-2v,.fr-py-md-1w,.fr-py-md-2v{padding-bottom:.5rem!important}.fr-p-md-3v{padding:.75rem!important}.fr-pl-md-3v,.fr-px-md-3v{padding-left:.75rem!important}.fr-pr-md-3v,.fr-px-md-3v{padding-right:.75rem!important}.fr-pt-md-3v,.fr-py-md-3v{padding-top:.75rem!important}.fr-pb-md-3v,.fr-py-md-3v{padding-bottom:.75rem!important}.fr-p-md-2w,.fr-p-md-4v{padding:1rem!important}.fr-pl-md-2w,.fr-pl-md-4v,.fr-px-md-2w,.fr-px-md-4v{padding-left:1rem!important}.fr-pr-md-2w,.fr-pr-md-4v,.fr-px-md-2w,.fr-px-md-4v{padding-right:1rem!important}.fr-pt-md-2w,.fr-pt-md-4v,.fr-py-md-2w,.fr-py-md-4v{padding-top:1rem!important}.fr-pb-md-2w,.fr-pb-md-4v,.fr-py-md-2w,.fr-py-md-4v{padding-bottom:1rem!important}.fr-p-md-5v{padding:1.25rem!important}.fr-pl-md-5v,.fr-px-md-5v{padding-left:1.25rem!important}.fr-pr-md-5v,.fr-px-md-5v{padding-right:1.25rem!important}.fr-pt-md-5v,.fr-py-md-5v{padding-top:1.25rem!important}.fr-pb-md-5v,.fr-py-md-5v{padding-bottom:1.25rem!important}.fr-p-md-3w,.fr-p-md-6v{padding:1.5rem!important}.fr-pl-md-3w,.fr-pl-md-6v,.fr-px-md-3w,.fr-px-md-6v{padding-left:1.5rem!important}.fr-pr-md-3w,.fr-pr-md-6v,.fr-px-md-3w,.fr-px-md-6v{padding-right:1.5rem!important}.fr-pt-md-3w,.fr-pt-md-6v,.fr-py-md-3w,.fr-py-md-6v{padding-top:1.5rem!important}.fr-pb-md-3w,.fr-pb-md-6v,.fr-py-md-3w,.fr-py-md-6v{padding-bottom:1.5rem!important}.fr-p-md-7v{padding:1.75rem!important}.fr-pl-md-7v,.fr-px-md-7v{padding-left:1.75rem!important}.fr-pr-md-7v,.fr-px-md-7v{padding-right:1.75rem!important}.fr-pt-md-7v,.fr-py-md-7v{padding-top:1.75rem!important}.fr-pb-md-7v,.fr-py-md-7v{padding-bottom:1.75rem!important}.fr-p-md-4w,.fr-p-md-8v{padding:2rem!important}.fr-pl-md-4w,.fr-pl-md-8v,.fr-px-md-4w,.fr-px-md-8v{padding-left:2rem!important}.fr-pr-md-4w,.fr-pr-md-8v,.fr-px-md-4w,.fr-px-md-8v{padding-right:2rem!important}.fr-pt-md-4w,.fr-pt-md-8v,.fr-py-md-4w,.fr-py-md-8v{padding-top:2rem!important}.fr-pb-md-4w,.fr-pb-md-8v,.fr-py-md-4w,.fr-py-md-8v{padding-bottom:2rem!important}.fr-p-md-9v{padding:2.25rem!important}.fr-pl-md-9v,.fr-px-md-9v{padding-left:2.25rem!important}.fr-pr-md-9v,.fr-px-md-9v{padding-right:2.25rem!important}.fr-pt-md-9v,.fr-py-md-9v{padding-top:2.25rem!important}.fr-pb-md-9v,.fr-py-md-9v{padding-bottom:2.25rem!important}.fr-p-md-10v,.fr-p-md-5w{padding:2.5rem!important}.fr-pl-md-10v,.fr-pl-md-5w,.fr-px-md-10v,.fr-px-md-5w{padding-left:2.5rem!important}.fr-pr-md-10v,.fr-pr-md-5w,.fr-px-md-10v,.fr-px-md-5w{padding-right:2.5rem!important}.fr-pt-md-10v,.fr-pt-md-5w,.fr-py-md-10v,.fr-py-md-5w{padding-top:2.5rem!important}.fr-pb-md-10v,.fr-pb-md-5w,.fr-py-md-10v,.fr-py-md-5w{padding-bottom:2.5rem!important}.fr-p-md-11v{padding:2.75rem!important}.fr-pl-md-11v,.fr-px-md-11v{padding-left:2.75rem!important}.fr-pr-md-11v,.fr-px-md-11v{padding-right:2.75rem!important}.fr-pt-md-11v,.fr-py-md-11v{padding-top:2.75rem!important}.fr-pb-md-11v,.fr-py-md-11v{padding-bottom:2.75rem!important}.fr-p-md-12v,.fr-p-md-6w{padding:3rem!important}.fr-pl-md-12v,.fr-pl-md-6w,.fr-px-md-12v,.fr-px-md-6w{padding-left:3rem!important}.fr-pr-md-12v,.fr-pr-md-6w,.fr-px-md-12v,.fr-px-md-6w{padding-right:3rem!important}.fr-pt-md-12v,.fr-pt-md-6w,.fr-py-md-12v,.fr-py-md-6w{padding-top:3rem!important}.fr-pb-md-12v,.fr-pb-md-6w,.fr-py-md-12v,.fr-py-md-6w{padding-bottom:3rem!important}.fr-p-md-13v{padding:3.25rem!important}.fr-pl-md-13v,.fr-px-md-13v{padding-left:3.25rem!important}.fr-pr-md-13v,.fr-px-md-13v{padding-right:3.25rem!important}.fr-pt-md-13v,.fr-py-md-13v{padding-top:3.25rem!important}.fr-pb-md-13v,.fr-py-md-13v{padding-bottom:3.25rem!important}.fr-p-md-14v,.fr-p-md-7w{padding:3.5rem!important}.fr-pl-md-14v,.fr-pl-md-7w,.fr-px-md-14v,.fr-px-md-7w{padding-left:3.5rem!important}.fr-pr-md-14v,.fr-pr-md-7w,.fr-px-md-14v,.fr-px-md-7w{padding-right:3.5rem!important}.fr-pt-md-14v,.fr-pt-md-7w,.fr-py-md-14v,.fr-py-md-7w{padding-top:3.5rem!important}.fr-pb-md-14v,.fr-pb-md-7w,.fr-py-md-14v,.fr-py-md-7w{padding-bottom:3.5rem!important}.fr-p-md-15v{padding:3.75rem!important}.fr-pl-md-15v,.fr-px-md-15v{padding-left:3.75rem!important}.fr-pr-md-15v,.fr-px-md-15v{padding-right:3.75rem!important}.fr-pt-md-15v,.fr-py-md-15v{padding-top:3.75rem!important}.fr-pb-md-15v,.fr-py-md-15v{padding-bottom:3.75rem!important}.fr-p-md-16v,.fr-p-md-8w{padding:4rem!important}.fr-pl-md-16v,.fr-pl-md-8w,.fr-px-md-16v,.fr-px-md-8w{padding-left:4rem!important}.fr-pr-md-16v,.fr-pr-md-8w,.fr-px-md-16v,.fr-px-md-8w{padding-right:4rem!important}.fr-pt-md-16v,.fr-pt-md-8w,.fr-py-md-16v,.fr-py-md-8w{padding-top:4rem!important}.fr-pb-md-16v,.fr-pb-md-8w,.fr-py-md-16v,.fr-py-md-8w{padding-bottom:4rem!important}.fr-p-md-17v{padding:4.25rem!important}.fr-pl-md-17v,.fr-px-md-17v{padding-left:4.25rem!important}.fr-pr-md-17v,.fr-px-md-17v{padding-right:4.25rem!important}.fr-pt-md-17v,.fr-py-md-17v{padding-top:4.25rem!important}.fr-pb-md-17v,.fr-py-md-17v{padding-bottom:4.25rem!important}.fr-p-md-18v,.fr-p-md-9w{padding:4.5rem!important}.fr-pl-md-18v,.fr-pl-md-9w,.fr-px-md-18v,.fr-px-md-9w{padding-left:4.5rem!important}.fr-pr-md-18v,.fr-pr-md-9w,.fr-px-md-18v,.fr-px-md-9w{padding-right:4.5rem!important}.fr-pt-md-18v,.fr-pt-md-9w,.fr-py-md-18v,.fr-py-md-9w{padding-top:4.5rem!important}.fr-pb-md-18v,.fr-pb-md-9w,.fr-py-md-18v,.fr-py-md-9w{padding-bottom:4.5rem!important}.fr-p-md-19v{padding:4.75rem!important}.fr-pl-md-19v,.fr-px-md-19v{padding-left:4.75rem!important}.fr-pr-md-19v,.fr-px-md-19v{padding-right:4.75rem!important}.fr-pt-md-19v,.fr-py-md-19v{padding-top:4.75rem!important}.fr-pb-md-19v,.fr-py-md-19v{padding-bottom:4.75rem!important}.fr-p-md-10w,.fr-p-md-20v{padding:5rem!important}.fr-pl-md-10w,.fr-pl-md-20v,.fr-px-md-10w,.fr-px-md-20v{padding-left:5rem!important}.fr-pr-md-10w,.fr-pr-md-20v,.fr-px-md-10w,.fr-px-md-20v{padding-right:5rem!important}.fr-pt-md-10w,.fr-pt-md-20v,.fr-py-md-10w,.fr-py-md-20v{padding-top:5rem!important}.fr-pb-md-10w,.fr-pb-md-20v,.fr-py-md-10w,.fr-py-md-20v{padding-bottom:5rem!important}.fr-p-md-21v{padding:5.25rem!important}.fr-pl-md-21v,.fr-px-md-21v{padding-left:5.25rem!important}.fr-pr-md-21v,.fr-px-md-21v{padding-right:5.25rem!important}.fr-pt-md-21v,.fr-py-md-21v{padding-top:5.25rem!important}.fr-pb-md-21v,.fr-py-md-21v{padding-bottom:5.25rem!important}.fr-p-md-11w,.fr-p-md-22v{padding:5.5rem!important}.fr-pl-md-11w,.fr-pl-md-22v,.fr-px-md-11w,.fr-px-md-22v{padding-left:5.5rem!important}.fr-pr-md-11w,.fr-pr-md-22v,.fr-px-md-11w,.fr-px-md-22v{padding-right:5.5rem!important}.fr-pt-md-11w,.fr-pt-md-22v,.fr-py-md-11w,.fr-py-md-22v{padding-top:5.5rem!important}.fr-pb-md-11w,.fr-pb-md-22v,.fr-py-md-11w,.fr-py-md-22v{padding-bottom:5.5rem!important}.fr-p-md-23v{padding:5.75rem!important}.fr-pl-md-23v,.fr-px-md-23v{padding-left:5.75rem!important}.fr-pr-md-23v,.fr-px-md-23v{padding-right:5.75rem!important}.fr-pt-md-23v,.fr-py-md-23v{padding-top:5.75rem!important}.fr-pb-md-23v,.fr-py-md-23v{padding-bottom:5.75rem!important}.fr-p-md-12w,.fr-p-md-24v{padding:6rem!important}.fr-pl-md-12w,.fr-pl-md-24v,.fr-px-md-12w,.fr-px-md-24v{padding-left:6rem!important}.fr-pr-md-12w,.fr-pr-md-24v,.fr-px-md-12w,.fr-px-md-24v{padding-right:6rem!important}.fr-pt-md-12w,.fr-pt-md-24v,.fr-py-md-12w,.fr-py-md-24v{padding-top:6rem!important}.fr-pb-md-12w,.fr-pb-md-24v,.fr-py-md-12w,.fr-py-md-24v{padding-bottom:6rem!important}.fr-p-md-25v{padding:6.25rem!important}.fr-pl-md-25v,.fr-px-md-25v{padding-left:6.25rem!important}.fr-pr-md-25v,.fr-px-md-25v{padding-right:6.25rem!important}.fr-pt-md-25v,.fr-py-md-25v{padding-top:6.25rem!important}.fr-pb-md-25v,.fr-py-md-25v{padding-bottom:6.25rem!important}.fr-p-md-13w,.fr-p-md-26v{padding:6.5rem!important}.fr-pl-md-13w,.fr-pl-md-26v,.fr-px-md-13w,.fr-px-md-26v{padding-left:6.5rem!important}.fr-pr-md-13w,.fr-pr-md-26v,.fr-px-md-13w,.fr-px-md-26v{padding-right:6.5rem!important}.fr-pt-md-13w,.fr-pt-md-26v,.fr-py-md-13w,.fr-py-md-26v{padding-top:6.5rem!important}.fr-pb-md-13w,.fr-pb-md-26v,.fr-py-md-13w,.fr-py-md-26v{padding-bottom:6.5rem!important}.fr-p-md-27v{padding:6.75rem!important}.fr-pl-md-27v,.fr-px-md-27v{padding-left:6.75rem!important}.fr-pr-md-27v,.fr-px-md-27v{padding-right:6.75rem!important}.fr-pt-md-27v,.fr-py-md-27v{padding-top:6.75rem!important}.fr-pb-md-27v,.fr-py-md-27v{padding-bottom:6.75rem!important}.fr-p-md-14w,.fr-p-md-28v{padding:7rem!important}.fr-pl-md-14w,.fr-pl-md-28v,.fr-px-md-14w,.fr-px-md-28v{padding-left:7rem!important}.fr-pr-md-14w,.fr-pr-md-28v,.fr-px-md-14w,.fr-px-md-28v{padding-right:7rem!important}.fr-pt-md-14w,.fr-pt-md-28v,.fr-py-md-14w,.fr-py-md-28v{padding-top:7rem!important}.fr-pb-md-14w,.fr-pb-md-28v,.fr-py-md-14w,.fr-py-md-28v{padding-bottom:7rem!important}.fr-p-md-29v{padding:7.25rem!important}.fr-pl-md-29v,.fr-px-md-29v{padding-left:7.25rem!important}.fr-pr-md-29v,.fr-px-md-29v{padding-right:7.25rem!important}.fr-pt-md-29v,.fr-py-md-29v{padding-top:7.25rem!important}.fr-pb-md-29v,.fr-py-md-29v{padding-bottom:7.25rem!important}.fr-p-md-15w,.fr-p-md-30v{padding:7.5rem!important}.fr-pl-md-15w,.fr-pl-md-30v,.fr-px-md-15w,.fr-px-md-30v{padding-left:7.5rem!important}.fr-pr-md-15w,.fr-pr-md-30v,.fr-px-md-15w,.fr-px-md-30v{padding-right:7.5rem!important}.fr-pt-md-15w,.fr-pt-md-30v,.fr-py-md-15w,.fr-py-md-30v{padding-top:7.5rem!important}.fr-pb-md-15w,.fr-pb-md-30v,.fr-py-md-15w,.fr-py-md-30v{padding-bottom:7.5rem!important}.fr-p-md-31v{padding:7.75rem!important}.fr-pl-md-31v,.fr-px-md-31v{padding-left:7.75rem!important}.fr-pr-md-31v,.fr-px-md-31v{padding-right:7.75rem!important}.fr-pt-md-31v,.fr-py-md-31v{padding-top:7.75rem!important}.fr-pb-md-31v,.fr-py-md-31v{padding-bottom:7.75rem!important}.fr-p-md-16w,.fr-p-md-32v{padding:8rem!important}.fr-pl-md-16w,.fr-pl-md-32v,.fr-px-md-16w,.fr-px-md-32v{padding-left:8rem!important}.fr-pr-md-16w,.fr-pr-md-32v,.fr-px-md-16w,.fr-px-md-32v{padding-right:8rem!important}.fr-pt-md-16w,.fr-pt-md-32v,.fr-py-md-16w,.fr-py-md-32v{padding-top:8rem!important}.fr-pb-md-16w,.fr-pb-md-32v,.fr-py-md-16w,.fr-py-md-32v{padding-bottom:8rem!important}}@media (min-width:62em){ /*! media lg */.fr-hidden-lg{display:none!important}.fr-unhidden-lg{display:inherit!important}.fr-sr-only-lg{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{padding-left:1.5rem;padding-right:1.5rem}.fr-container-lg--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters,.fr-grid-row-md--gutters,.fr-grid-row-sm--gutters{margin:-.75rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-],.fr-grid-row-md--gutters>.fr-col,.fr-grid-row-md--gutters>[class*=" fr-col-"],.fr-grid-row-md--gutters>[class^=fr-col-],.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-lg--gutters{margin:-.75rem}.fr-grid-row-lg--gutters>.fr-col,.fr-grid-row-lg--gutters>[class*=" fr-col-"],.fr-grid-row-lg--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-lg--no-gutters{margin:0}.fr-grid-row-lg--no-gutters>.fr-col,.fr-grid-row-lg--no-gutters>[class*=" fr-col-"],.fr-grid-row-lg--no-gutters>[class^=fr-col-]{padding:0}.fr-col-lg{flex:1}.fr-col-lg-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-lg-1:not(.fr-col-offset-lg-1--right){margin-left:8.33333%}.fr-col-offset-lg-1--right{margin-right:8.33333%}.fr-col-lg-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-lg-2:not(.fr-col-offset-lg-2--right){margin-left:16.66667%}.fr-col-offset-lg-2--right{margin-right:16.66667%}.fr-col-lg-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-lg-3:not(.fr-col-offset-lg-3--right){margin-left:25%}.fr-col-offset-lg-3--right{margin-right:25%}.fr-col-lg-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-lg-4:not(.fr-col-offset-lg-4--right){margin-left:33.33333%}.fr-col-offset-lg-4--right{margin-right:33.33333%}.fr-col-lg-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-lg-5:not(.fr-col-offset-lg-5--right){margin-left:41.66667%}.fr-col-offset-lg-5--right{margin-right:41.66667%}.fr-col-lg-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-lg-6:not(.fr-col-offset-lg-6--right){margin-left:50%}.fr-col-offset-lg-6--right{margin-right:50%}.fr-col-lg-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-lg-7:not(.fr-col-offset-lg-7--right){margin-left:58.33333%}.fr-col-offset-lg-7--right{margin-right:58.33333%}.fr-col-lg-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-lg-8:not(.fr-col-offset-lg-8--right){margin-left:66.66667%}.fr-col-offset-lg-8--right{margin-right:66.66667%}.fr-col-lg-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-lg-9:not(.fr-col-offset-lg-9--right){margin-left:75%}.fr-col-offset-lg-9--right{margin-right:75%}.fr-col-lg-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-lg-10:not(.fr-col-offset-lg-10--right){margin-left:83.33333%}.fr-col-offset-lg-10--right{margin-right:83.33333%}.fr-col-lg-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-lg-11:not(.fr-col-offset-lg-11--right){margin-left:91.66667%}.fr-col-offset-lg-11--right{margin-right:91.66667%}.fr-col-lg-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-lg-12:not(.fr-col-offset-lg-12--right){margin-left:100%}.fr-col-offset-lg-12--right{margin-right:100%}.fr-displayed-lg{display:inherit!important}}@media (min-width:78em){ - /*! media xl */.fr-hidden-xl{display:none!important}.fr-unhidden-xl{display:inherit!important}.fr-sr-only-xl{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{max-width:78rem}.fr-container-xl{max-width:78rem;padding-left:1.5rem;padding-right:1.5rem}.fr-container-xl--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-xl--gutters{margin:-.75rem}.fr-grid-row-xl--gutters>.fr-col,.fr-grid-row-xl--gutters>[class*=" fr-col-"],.fr-grid-row-xl--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-xl--no-gutters{margin:0}.fr-grid-row-xl--no-gutters>.fr-col,.fr-grid-row-xl--no-gutters>[class*=" fr-col-"],.fr-grid-row-xl--no-gutters>[class^=fr-col-]{padding:0}.fr-col-xl{flex:1}.fr-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-xl-1:not(.fr-col-offset-xl-1--right){margin-left:8.33333%}.fr-col-offset-xl-1--right{margin-right:8.33333%}.fr-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-xl-2:not(.fr-col-offset-xl-2--right){margin-left:16.66667%}.fr-col-offset-xl-2--right{margin-right:16.66667%}.fr-col-xl-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-xl-3:not(.fr-col-offset-xl-3--right){margin-left:25%}.fr-col-offset-xl-3--right{margin-right:25%}.fr-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-xl-4:not(.fr-col-offset-xl-4--right){margin-left:33.33333%}.fr-col-offset-xl-4--right{margin-right:33.33333%}.fr-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-xl-5:not(.fr-col-offset-xl-5--right){margin-left:41.66667%}.fr-col-offset-xl-5--right{margin-right:41.66667%}.fr-col-xl-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-xl-6:not(.fr-col-offset-xl-6--right){margin-left:50%}.fr-col-offset-xl-6--right{margin-right:50%}.fr-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-xl-7:not(.fr-col-offset-xl-7--right){margin-left:58.33333%}.fr-col-offset-xl-7--right{margin-right:58.33333%}.fr-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-xl-8:not(.fr-col-offset-xl-8--right){margin-left:66.66667%}.fr-col-offset-xl-8--right{margin-right:66.66667%}.fr-col-xl-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-xl-9:not(.fr-col-offset-xl-9--right){margin-left:75%}.fr-col-offset-xl-9--right{margin-right:75%}.fr-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-xl-10:not(.fr-col-offset-xl-10--right){margin-left:83.33333%}.fr-col-offset-xl-10--right{margin-right:83.33333%}.fr-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-xl-11:not(.fr-col-offset-xl-11--right){margin-left:91.66667%}.fr-col-offset-xl-11--right{margin-right:91.66667%}.fr-col-xl-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-xl-12:not(.fr-col-offset-xl-12--right){margin-left:100%}.fr-col-offset-xl-12--right{margin-right:100%}}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-collapse,.fr-collapse:before{transition:none}} \ No newline at end of file + /*! media xl */.fr-hidden-xl{display:none!important}.fr-unhidden-xl{display:inherit!important}.fr-sr-only-xl{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{max-width:78rem}.fr-container-xl{max-width:78rem;padding-left:1.5rem;padding-right:1.5rem}.fr-container-xl--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-xl--gutters{margin:-.75rem}.fr-grid-row-xl--gutters>.fr-col,.fr-grid-row-xl--gutters>[class*=" fr-col-"],.fr-grid-row-xl--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-xl--no-gutters{margin:0}.fr-grid-row-xl--no-gutters>.fr-col,.fr-grid-row-xl--no-gutters>[class*=" fr-col-"],.fr-grid-row-xl--no-gutters>[class^=fr-col-]{padding:0}.fr-col-xl{flex:1}.fr-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-xl-1:not(.fr-col-offset-xl-1--right){margin-left:8.33333%}.fr-col-offset-xl-1--right{margin-right:8.33333%}.fr-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-xl-2:not(.fr-col-offset-xl-2--right){margin-left:16.66667%}.fr-col-offset-xl-2--right{margin-right:16.66667%}.fr-col-xl-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-xl-3:not(.fr-col-offset-xl-3--right){margin-left:25%}.fr-col-offset-xl-3--right{margin-right:25%}.fr-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-xl-4:not(.fr-col-offset-xl-4--right){margin-left:33.33333%}.fr-col-offset-xl-4--right{margin-right:33.33333%}.fr-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-xl-5:not(.fr-col-offset-xl-5--right){margin-left:41.66667%}.fr-col-offset-xl-5--right{margin-right:41.66667%}.fr-col-xl-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-xl-6:not(.fr-col-offset-xl-6--right){margin-left:50%}.fr-col-offset-xl-6--right{margin-right:50%}.fr-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-xl-7:not(.fr-col-offset-xl-7--right){margin-left:58.33333%}.fr-col-offset-xl-7--right{margin-right:58.33333%}.fr-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-xl-8:not(.fr-col-offset-xl-8--right){margin-left:66.66667%}.fr-col-offset-xl-8--right{margin-right:66.66667%}.fr-col-xl-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-xl-9:not(.fr-col-offset-xl-9--right){margin-left:75%}.fr-col-offset-xl-9--right{margin-right:75%}.fr-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-xl-10:not(.fr-col-offset-xl-10--right){margin-left:83.33333%}.fr-col-offset-xl-10--right{margin-right:83.33333%}.fr-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-xl-11:not(.fr-col-offset-xl-11--right){margin-left:91.66667%}.fr-col-offset-xl-11--right{margin-right:91.66667%}.fr-col-xl-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-xl-12:not(.fr-col-offset-xl-12--right){margin-left:100%}.fr-col-offset-xl-12--right{margin-right:100%}}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,select[class*=" fr-fi-"]:disabled:after,select[class*=" fr-fi-"]:disabled:before,select[class*=" fr-icon-"]:disabled:after,select[class*=" fr-icon-"]:disabled:before,select[class^=fr-fi-]:disabled:after,select[class^=fr-fi-]:disabled:before,select[class^=fr-icon-]:disabled:after,select[class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-collapse,.fr-collapse:before{transition:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/core/core.min.css b/dsfr/static/dsfr/dist/core/core.min.css index 85dcc9037..5c9fd7015 100644 --- a/dsfr/static/dsfr/dist/core/core.min.css +++ b/dsfr/static/dsfr/dist/core/core.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32)}.fr-placement{left:0;position:fixed;top:0}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse--expanded{overflow-x:hidden;overflow-y:auto}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32)}.fr-placement{position:fixed;width:max-content}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}@media (min-width:36em){ /*! media sm */.fr-hidden-sm{display:none!important}.fr-unhidden-sm{display:inherit!important}.fr-sr-only-sm{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-sm-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-sm-2--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-sm-3--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-sm-4--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-sm-5--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-sm-6--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-sm-7--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-sm-8--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-sm-9--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-sm-10--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-sm-11--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-sm-12--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%} /*! media sm */}@media (min-width:48em){ /*! media md */h6{font-size:1.25rem}h5,h6{line-height:1.75rem}h5{font-size:1.375rem}h4{font-size:1.5rem;line-height:2rem}h3{font-size:1.75rem;line-height:2.25rem}h2{font-size:2rem;line-height:2.5rem}h1{font-size:2.5rem;line-height:3rem}.fr-h6{font-size:1.25rem!important}.fr-h5,.fr-h6{line-height:1.75rem!important}.fr-h5{font-size:1.375rem!important}.fr-h4{font-size:1.5rem!important;line-height:2rem!important}.fr-h3{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h2{font-size:2rem!important;line-height:2.5rem!important}.fr-h1{font-size:2.5rem!important;line-height:3rem!important}.fr-display--xs{font-size:3rem!important;line-height:3.5rem!important}.fr-display--sm{font-size:3.5rem!important;line-height:4rem!important}.fr-display--md{font-size:4rem!important;line-height:4.5rem!important}.fr-display--lg{font-size:4.5rem!important;line-height:5rem!important}.fr-display--xl{font-size:5rem!important;line-height:5.5rem!important}.fr-hidden-md{display:none!important}.fr-unhidden-md{display:inherit!important}.fr-sr-only-md{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-md{padding-left:1rem;padding-right:1rem}.fr-container-md--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-md--gutters{margin:-.5rem}.fr-grid-row-md--gutters>.fr-col,.fr-grid-row-md--gutters>[class*=" fr-col-"],.fr-grid-row-md--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-md--no-gutters{margin:0}.fr-grid-row-md--no-gutters>.fr-col,.fr-grid-row-md--no-gutters>[class*=" fr-col-"],.fr-grid-row-md--no-gutters>[class^=fr-col-]{padding:0}.fr-col-md{flex:1}.fr-col-md-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-md-1:not(.fr-col-offset-md-1--right){margin-left:8.33333%}.fr-col-offset-md-1--right{margin-right:8.33333%}.fr-col-md-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-md-2:not(.fr-col-offset-md-2--right){margin-left:16.66667%}.fr-col-offset-md-2--right{margin-right:16.66667%}.fr-col-md-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-md-3:not(.fr-col-offset-md-3--right){margin-left:25%}.fr-col-offset-md-3--right{margin-right:25%}.fr-col-md-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-md-4:not(.fr-col-offset-md-4--right){margin-left:33.33333%}.fr-col-offset-md-4--right{margin-right:33.33333%}.fr-col-md-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-md-5:not(.fr-col-offset-md-5--right){margin-left:41.66667%}.fr-col-offset-md-5--right{margin-right:41.66667%}.fr-col-md-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-md-6:not(.fr-col-offset-md-6--right){margin-left:50%}.fr-col-offset-md-6--right{margin-right:50%}.fr-col-md-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-md-7:not(.fr-col-offset-md-7--right){margin-left:58.33333%}.fr-col-offset-md-7--right{margin-right:58.33333%}.fr-col-md-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-md-8:not(.fr-col-offset-md-8--right){margin-left:66.66667%}.fr-col-offset-md-8--right{margin-right:66.66667%}.fr-col-md-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-md-9:not(.fr-col-offset-md-9--right){margin-left:75%}.fr-col-offset-md-9--right{margin-right:75%}.fr-col-md-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-md-10:not(.fr-col-offset-md-10--right){margin-left:83.33333%}.fr-col-offset-md-10--right{margin-right:83.33333%}.fr-col-md-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-md-11:not(.fr-col-offset-md-11--right){margin-left:91.66667%}.fr-col-offset-md-11--right{margin-right:91.66667%}.fr-col-md-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-md-12:not(.fr-col-offset-md-12--right){margin-left:100%}.fr-col-offset-md-12--right{margin-right:100%}.fr-m-md-n4w,.fr-m-md-n8v{margin:-2rem!important}.fr-ml-md-n4w,.fr-ml-md-n8v,.fr-mx-md-n4w,.fr-mx-md-n8v{margin-left:-2rem!important}.fr-mr-md-n4w,.fr-mr-md-n8v,.fr-mx-md-n4w,.fr-mx-md-n8v{margin-right:-2rem!important}.fr-mt-md-n4w,.fr-mt-md-n8v,.fr-my-md-n4w,.fr-my-md-n8v{margin-top:-2rem!important}.fr-mb-md-n4w,.fr-mb-md-n8v,.fr-my-md-n4w,.fr-my-md-n8v{margin-bottom:-2rem!important}.fr-m-md-n7v{margin:-1.75rem!important}.fr-ml-md-n7v,.fr-mx-md-n7v{margin-left:-1.75rem!important}.fr-mr-md-n7v,.fr-mx-md-n7v{margin-right:-1.75rem!important}.fr-mt-md-n7v,.fr-my-md-n7v{margin-top:-1.75rem!important}.fr-mb-md-n7v,.fr-my-md-n7v{margin-bottom:-1.75rem!important}.fr-m-md-n3w,.fr-m-md-n6v{margin:-1.5rem!important}.fr-ml-md-n3w,.fr-ml-md-n6v,.fr-mx-md-n3w,.fr-mx-md-n6v{margin-left:-1.5rem!important}.fr-mr-md-n3w,.fr-mr-md-n6v,.fr-mx-md-n3w,.fr-mx-md-n6v{margin-right:-1.5rem!important}.fr-mt-md-n3w,.fr-mt-md-n6v,.fr-my-md-n3w,.fr-my-md-n6v{margin-top:-1.5rem!important}.fr-mb-md-n3w,.fr-mb-md-n6v,.fr-my-md-n3w,.fr-my-md-n6v{margin-bottom:-1.5rem!important}.fr-m-md-n5v{margin:-1.25rem!important}.fr-ml-md-n5v,.fr-mx-md-n5v{margin-left:-1.25rem!important}.fr-mr-md-n5v,.fr-mx-md-n5v{margin-right:-1.25rem!important}.fr-mt-md-n5v,.fr-my-md-n5v{margin-top:-1.25rem!important}.fr-mb-md-n5v,.fr-my-md-n5v{margin-bottom:-1.25rem!important}.fr-m-md-n2w,.fr-m-md-n4v{margin:-1rem!important}.fr-ml-md-n2w,.fr-ml-md-n4v,.fr-mx-md-n2w,.fr-mx-md-n4v{margin-left:-1rem!important}.fr-mr-md-n2w,.fr-mr-md-n4v,.fr-mx-md-n2w,.fr-mx-md-n4v{margin-right:-1rem!important}.fr-mt-md-n2w,.fr-mt-md-n4v,.fr-my-md-n2w,.fr-my-md-n4v{margin-top:-1rem!important}.fr-mb-md-n2w,.fr-mb-md-n4v,.fr-my-md-n2w,.fr-my-md-n4v{margin-bottom:-1rem!important}.fr-m-md-n3v{margin:-.75rem!important}.fr-ml-md-n3v,.fr-mx-md-n3v{margin-left:-.75rem!important}.fr-mr-md-n3v,.fr-mx-md-n3v{margin-right:-.75rem!important}.fr-mt-md-n3v,.fr-my-md-n3v{margin-top:-.75rem!important}.fr-mb-md-n3v,.fr-my-md-n3v{margin-bottom:-.75rem!important}.fr-m-md-n1w,.fr-m-md-n2v{margin:-.5rem!important}.fr-ml-md-n1w,.fr-ml-md-n2v,.fr-mx-md-n1w,.fr-mx-md-n2v{margin-left:-.5rem!important}.fr-mr-md-n1w,.fr-mr-md-n2v,.fr-mx-md-n1w,.fr-mx-md-n2v{margin-right:-.5rem!important}.fr-mt-md-n1w,.fr-mt-md-n2v,.fr-my-md-n1w,.fr-my-md-n2v{margin-top:-.5rem!important}.fr-mb-md-n1w,.fr-mb-md-n2v,.fr-my-md-n1w,.fr-my-md-n2v{margin-bottom:-.5rem!important}.fr-m-md-n1v{margin:-.25rem!important}.fr-ml-md-n1v,.fr-mx-md-n1v{margin-left:-.25rem!important}.fr-mr-md-n1v,.fr-mx-md-n1v{margin-right:-.25rem!important}.fr-mt-md-n1v,.fr-my-md-n1v{margin-top:-.25rem!important}.fr-mb-md-n1v,.fr-my-md-n1v{margin-bottom:-.25rem!important}.fr-m-md-n1-5v{margin:-.375rem!important}.fr-ml-md-n1-5v,.fr-mx-md-n1-5v{margin-left:-.375rem!important}.fr-mr-md-n1-5v,.fr-mx-md-n1-5v{margin-right:-.375rem!important}.fr-mt-md-n1-5v,.fr-my-md-n1-5v{margin-top:-.375rem!important}.fr-mb-md-n1-5v,.fr-my-md-n1-5v{margin-bottom:-.375rem!important}.fr-m-md-0{margin:0!important}.fr-ml-md-0,.fr-mx-md-0{margin-left:0!important}.fr-mr-md-0,.fr-mx-md-0{margin-right:0!important}.fr-mt-md-0,.fr-my-md-0{margin-top:0!important}.fr-mb-md-0,.fr-my-md-0{margin-bottom:0!important}.fr-m-md-n0-5v{margin:-.125rem!important}.fr-ml-md-n0-5v,.fr-mx-md-n0-5v{margin-left:-.125rem!important}.fr-mr-md-n0-5v,.fr-mx-md-n0-5v{margin-right:-.125rem!important}.fr-mt-md-n0-5v,.fr-my-md-n0-5v{margin-top:-.125rem!important}.fr-mb-md-n0-5v,.fr-my-md-n0-5v{margin-bottom:-.125rem!important}.fr-m-md-0-5v{margin:.125rem!important}.fr-ml-md-0-5v,.fr-mx-md-0-5v{margin-left:.125rem!important}.fr-mr-md-0-5v,.fr-mx-md-0-5v{margin-right:.125rem!important}.fr-mt-md-0-5v,.fr-my-md-0-5v{margin-top:.125rem!important}.fr-mb-md-0-5v,.fr-my-md-0-5v{margin-bottom:.125rem!important}.fr-m-md-1v{margin:.25rem!important}.fr-ml-md-1v,.fr-mx-md-1v{margin-left:.25rem!important}.fr-mr-md-1v,.fr-mx-md-1v{margin-right:.25rem!important}.fr-mt-md-1v,.fr-my-md-1v{margin-top:.25rem!important}.fr-mb-md-1v,.fr-my-md-1v{margin-bottom:.25rem!important}.fr-m-md-1-5v{margin:.375rem!important}.fr-ml-md-1-5v,.fr-mx-md-1-5v{margin-left:.375rem!important}.fr-mr-md-1-5v,.fr-mx-md-1-5v{margin-right:.375rem!important}.fr-mt-md-1-5v,.fr-my-md-1-5v{margin-top:.375rem!important}.fr-mb-md-1-5v,.fr-my-md-1-5v{margin-bottom:.375rem!important}.fr-m-md-1w,.fr-m-md-2v{margin:.5rem!important}.fr-ml-md-1w,.fr-ml-md-2v,.fr-mx-md-1w,.fr-mx-md-2v{margin-left:.5rem!important}.fr-mr-md-1w,.fr-mr-md-2v,.fr-mx-md-1w,.fr-mx-md-2v{margin-right:.5rem!important}.fr-mt-md-1w,.fr-mt-md-2v,.fr-my-md-1w,.fr-my-md-2v{margin-top:.5rem!important}.fr-mb-md-1w,.fr-mb-md-2v,.fr-my-md-1w,.fr-my-md-2v{margin-bottom:.5rem!important}.fr-m-md-3v{margin:.75rem!important}.fr-ml-md-3v,.fr-mx-md-3v{margin-left:.75rem!important}.fr-mr-md-3v,.fr-mx-md-3v{margin-right:.75rem!important}.fr-mt-md-3v,.fr-my-md-3v{margin-top:.75rem!important}.fr-mb-md-3v,.fr-my-md-3v{margin-bottom:.75rem!important}.fr-m-md-2w,.fr-m-md-4v{margin:1rem!important}.fr-ml-md-2w,.fr-ml-md-4v,.fr-mx-md-2w,.fr-mx-md-4v{margin-left:1rem!important}.fr-mr-md-2w,.fr-mr-md-4v,.fr-mx-md-2w,.fr-mx-md-4v{margin-right:1rem!important}.fr-mt-md-2w,.fr-mt-md-4v,.fr-my-md-2w,.fr-my-md-4v{margin-top:1rem!important}.fr-mb-md-2w,.fr-mb-md-4v,.fr-my-md-2w,.fr-my-md-4v{margin-bottom:1rem!important}.fr-m-md-5v{margin:1.25rem!important}.fr-ml-md-5v,.fr-mx-md-5v{margin-left:1.25rem!important}.fr-mr-md-5v,.fr-mx-md-5v{margin-right:1.25rem!important}.fr-mt-md-5v,.fr-my-md-5v{margin-top:1.25rem!important}.fr-mb-md-5v,.fr-my-md-5v{margin-bottom:1.25rem!important}.fr-m-md-3w,.fr-m-md-6v{margin:1.5rem!important}.fr-ml-md-3w,.fr-ml-md-6v,.fr-mx-md-3w,.fr-mx-md-6v{margin-left:1.5rem!important}.fr-mr-md-3w,.fr-mr-md-6v,.fr-mx-md-3w,.fr-mx-md-6v{margin-right:1.5rem!important}.fr-mt-md-3w,.fr-mt-md-6v,.fr-my-md-3w,.fr-my-md-6v{margin-top:1.5rem!important}.fr-mb-md-3w,.fr-mb-md-6v,.fr-my-md-3w,.fr-my-md-6v{margin-bottom:1.5rem!important}.fr-m-md-7v{margin:1.75rem!important}.fr-ml-md-7v,.fr-mx-md-7v{margin-left:1.75rem!important}.fr-mr-md-7v,.fr-mx-md-7v{margin-right:1.75rem!important}.fr-mt-md-7v,.fr-my-md-7v{margin-top:1.75rem!important}.fr-mb-md-7v,.fr-my-md-7v{margin-bottom:1.75rem!important}.fr-m-md-4w,.fr-m-md-8v{margin:2rem!important}.fr-ml-md-4w,.fr-ml-md-8v,.fr-mx-md-4w,.fr-mx-md-8v{margin-left:2rem!important}.fr-mr-md-4w,.fr-mr-md-8v,.fr-mx-md-4w,.fr-mx-md-8v{margin-right:2rem!important}.fr-mt-md-4w,.fr-mt-md-8v,.fr-my-md-4w,.fr-my-md-8v{margin-top:2rem!important}.fr-mb-md-4w,.fr-mb-md-8v,.fr-my-md-4w,.fr-my-md-8v{margin-bottom:2rem!important}.fr-m-md-9v{margin:2.25rem!important}.fr-ml-md-9v,.fr-mx-md-9v{margin-left:2.25rem!important}.fr-mr-md-9v,.fr-mx-md-9v{margin-right:2.25rem!important}.fr-mt-md-9v,.fr-my-md-9v{margin-top:2.25rem!important}.fr-mb-md-9v,.fr-my-md-9v{margin-bottom:2.25rem!important}.fr-m-md-10v,.fr-m-md-5w{margin:2.5rem!important}.fr-ml-md-10v,.fr-ml-md-5w,.fr-mx-md-10v,.fr-mx-md-5w{margin-left:2.5rem!important}.fr-mr-md-10v,.fr-mr-md-5w,.fr-mx-md-10v,.fr-mx-md-5w{margin-right:2.5rem!important}.fr-mt-md-10v,.fr-mt-md-5w,.fr-my-md-10v,.fr-my-md-5w{margin-top:2.5rem!important}.fr-mb-md-10v,.fr-mb-md-5w,.fr-my-md-10v,.fr-my-md-5w{margin-bottom:2.5rem!important}.fr-m-md-11v{margin:2.75rem!important}.fr-ml-md-11v,.fr-mx-md-11v{margin-left:2.75rem!important}.fr-mr-md-11v,.fr-mx-md-11v{margin-right:2.75rem!important}.fr-mt-md-11v,.fr-my-md-11v{margin-top:2.75rem!important}.fr-mb-md-11v,.fr-my-md-11v{margin-bottom:2.75rem!important}.fr-m-md-12v,.fr-m-md-6w{margin:3rem!important}.fr-ml-md-12v,.fr-ml-md-6w,.fr-mx-md-12v,.fr-mx-md-6w{margin-left:3rem!important}.fr-mr-md-12v,.fr-mr-md-6w,.fr-mx-md-12v,.fr-mx-md-6w{margin-right:3rem!important}.fr-mt-md-12v,.fr-mt-md-6w,.fr-my-md-12v,.fr-my-md-6w{margin-top:3rem!important}.fr-mb-md-12v,.fr-mb-md-6w,.fr-my-md-12v,.fr-my-md-6w{margin-bottom:3rem!important}.fr-m-md-13v{margin:3.25rem!important}.fr-ml-md-13v,.fr-mx-md-13v{margin-left:3.25rem!important}.fr-mr-md-13v,.fr-mx-md-13v{margin-right:3.25rem!important}.fr-mt-md-13v,.fr-my-md-13v{margin-top:3.25rem!important}.fr-mb-md-13v,.fr-my-md-13v{margin-bottom:3.25rem!important}.fr-m-md-14v,.fr-m-md-7w{margin:3.5rem!important}.fr-ml-md-14v,.fr-ml-md-7w,.fr-mx-md-14v,.fr-mx-md-7w{margin-left:3.5rem!important}.fr-mr-md-14v,.fr-mr-md-7w,.fr-mx-md-14v,.fr-mx-md-7w{margin-right:3.5rem!important}.fr-mt-md-14v,.fr-mt-md-7w,.fr-my-md-14v,.fr-my-md-7w{margin-top:3.5rem!important}.fr-mb-md-14v,.fr-mb-md-7w,.fr-my-md-14v,.fr-my-md-7w{margin-bottom:3.5rem!important}.fr-m-md-15v{margin:3.75rem!important}.fr-ml-md-15v,.fr-mx-md-15v{margin-left:3.75rem!important}.fr-mr-md-15v,.fr-mx-md-15v{margin-right:3.75rem!important}.fr-mt-md-15v,.fr-my-md-15v{margin-top:3.75rem!important}.fr-mb-md-15v,.fr-my-md-15v{margin-bottom:3.75rem!important}.fr-m-md-16v,.fr-m-md-8w{margin:4rem!important}.fr-ml-md-16v,.fr-ml-md-8w,.fr-mx-md-16v,.fr-mx-md-8w{margin-left:4rem!important}.fr-mr-md-16v,.fr-mr-md-8w,.fr-mx-md-16v,.fr-mx-md-8w{margin-right:4rem!important}.fr-mt-md-16v,.fr-mt-md-8w,.fr-my-md-16v,.fr-my-md-8w{margin-top:4rem!important}.fr-mb-md-16v,.fr-mb-md-8w,.fr-my-md-16v,.fr-my-md-8w{margin-bottom:4rem!important}.fr-m-md-17v{margin:4.25rem!important}.fr-ml-md-17v,.fr-mx-md-17v{margin-left:4.25rem!important}.fr-mr-md-17v,.fr-mx-md-17v{margin-right:4.25rem!important}.fr-mt-md-17v,.fr-my-md-17v{margin-top:4.25rem!important}.fr-mb-md-17v,.fr-my-md-17v{margin-bottom:4.25rem!important}.fr-m-md-18v,.fr-m-md-9w{margin:4.5rem!important}.fr-ml-md-18v,.fr-ml-md-9w,.fr-mx-md-18v,.fr-mx-md-9w{margin-left:4.5rem!important}.fr-mr-md-18v,.fr-mr-md-9w,.fr-mx-md-18v,.fr-mx-md-9w{margin-right:4.5rem!important}.fr-mt-md-18v,.fr-mt-md-9w,.fr-my-md-18v,.fr-my-md-9w{margin-top:4.5rem!important}.fr-mb-md-18v,.fr-mb-md-9w,.fr-my-md-18v,.fr-my-md-9w{margin-bottom:4.5rem!important}.fr-m-md-19v{margin:4.75rem!important}.fr-ml-md-19v,.fr-mx-md-19v{margin-left:4.75rem!important}.fr-mr-md-19v,.fr-mx-md-19v{margin-right:4.75rem!important}.fr-mt-md-19v,.fr-my-md-19v{margin-top:4.75rem!important}.fr-mb-md-19v,.fr-my-md-19v{margin-bottom:4.75rem!important}.fr-m-md-10w,.fr-m-md-20v{margin:5rem!important}.fr-ml-md-10w,.fr-ml-md-20v,.fr-mx-md-10w,.fr-mx-md-20v{margin-left:5rem!important}.fr-mr-md-10w,.fr-mr-md-20v,.fr-mx-md-10w,.fr-mx-md-20v{margin-right:5rem!important}.fr-mt-md-10w,.fr-mt-md-20v,.fr-my-md-10w,.fr-my-md-20v{margin-top:5rem!important}.fr-mb-md-10w,.fr-mb-md-20v,.fr-my-md-10w,.fr-my-md-20v{margin-bottom:5rem!important}.fr-m-md-21v{margin:5.25rem!important}.fr-ml-md-21v,.fr-mx-md-21v{margin-left:5.25rem!important}.fr-mr-md-21v,.fr-mx-md-21v{margin-right:5.25rem!important}.fr-mt-md-21v,.fr-my-md-21v{margin-top:5.25rem!important}.fr-mb-md-21v,.fr-my-md-21v{margin-bottom:5.25rem!important}.fr-m-md-11w,.fr-m-md-22v{margin:5.5rem!important}.fr-ml-md-11w,.fr-ml-md-22v,.fr-mx-md-11w,.fr-mx-md-22v{margin-left:5.5rem!important}.fr-mr-md-11w,.fr-mr-md-22v,.fr-mx-md-11w,.fr-mx-md-22v{margin-right:5.5rem!important}.fr-mt-md-11w,.fr-mt-md-22v,.fr-my-md-11w,.fr-my-md-22v{margin-top:5.5rem!important}.fr-mb-md-11w,.fr-mb-md-22v,.fr-my-md-11w,.fr-my-md-22v{margin-bottom:5.5rem!important}.fr-m-md-23v{margin:5.75rem!important}.fr-ml-md-23v,.fr-mx-md-23v{margin-left:5.75rem!important}.fr-mr-md-23v,.fr-mx-md-23v{margin-right:5.75rem!important}.fr-mt-md-23v,.fr-my-md-23v{margin-top:5.75rem!important}.fr-mb-md-23v,.fr-my-md-23v{margin-bottom:5.75rem!important}.fr-m-md-12w,.fr-m-md-24v{margin:6rem!important}.fr-ml-md-12w,.fr-ml-md-24v,.fr-mx-md-12w,.fr-mx-md-24v{margin-left:6rem!important}.fr-mr-md-12w,.fr-mr-md-24v,.fr-mx-md-12w,.fr-mx-md-24v{margin-right:6rem!important}.fr-mt-md-12w,.fr-mt-md-24v,.fr-my-md-12w,.fr-my-md-24v{margin-top:6rem!important}.fr-mb-md-12w,.fr-mb-md-24v,.fr-my-md-12w,.fr-my-md-24v{margin-bottom:6rem!important}.fr-m-md-25v{margin:6.25rem!important}.fr-ml-md-25v,.fr-mx-md-25v{margin-left:6.25rem!important}.fr-mr-md-25v,.fr-mx-md-25v{margin-right:6.25rem!important}.fr-mt-md-25v,.fr-my-md-25v{margin-top:6.25rem!important}.fr-mb-md-25v,.fr-my-md-25v{margin-bottom:6.25rem!important}.fr-m-md-13w,.fr-m-md-26v{margin:6.5rem!important}.fr-ml-md-13w,.fr-ml-md-26v,.fr-mx-md-13w,.fr-mx-md-26v{margin-left:6.5rem!important}.fr-mr-md-13w,.fr-mr-md-26v,.fr-mx-md-13w,.fr-mx-md-26v{margin-right:6.5rem!important}.fr-mt-md-13w,.fr-mt-md-26v,.fr-my-md-13w,.fr-my-md-26v{margin-top:6.5rem!important}.fr-mb-md-13w,.fr-mb-md-26v,.fr-my-md-13w,.fr-my-md-26v{margin-bottom:6.5rem!important}.fr-m-md-27v{margin:6.75rem!important}.fr-ml-md-27v,.fr-mx-md-27v{margin-left:6.75rem!important}.fr-mr-md-27v,.fr-mx-md-27v{margin-right:6.75rem!important}.fr-mt-md-27v,.fr-my-md-27v{margin-top:6.75rem!important}.fr-mb-md-27v,.fr-my-md-27v{margin-bottom:6.75rem!important}.fr-m-md-14w,.fr-m-md-28v{margin:7rem!important}.fr-ml-md-14w,.fr-ml-md-28v,.fr-mx-md-14w,.fr-mx-md-28v{margin-left:7rem!important}.fr-mr-md-14w,.fr-mr-md-28v,.fr-mx-md-14w,.fr-mx-md-28v{margin-right:7rem!important}.fr-mt-md-14w,.fr-mt-md-28v,.fr-my-md-14w,.fr-my-md-28v{margin-top:7rem!important}.fr-mb-md-14w,.fr-mb-md-28v,.fr-my-md-14w,.fr-my-md-28v{margin-bottom:7rem!important}.fr-m-md-29v{margin:7.25rem!important}.fr-ml-md-29v,.fr-mx-md-29v{margin-left:7.25rem!important}.fr-mr-md-29v,.fr-mx-md-29v{margin-right:7.25rem!important}.fr-mt-md-29v,.fr-my-md-29v{margin-top:7.25rem!important}.fr-mb-md-29v,.fr-my-md-29v{margin-bottom:7.25rem!important}.fr-m-md-15w,.fr-m-md-30v{margin:7.5rem!important}.fr-ml-md-15w,.fr-ml-md-30v,.fr-mx-md-15w,.fr-mx-md-30v{margin-left:7.5rem!important}.fr-mr-md-15w,.fr-mr-md-30v,.fr-mx-md-15w,.fr-mx-md-30v{margin-right:7.5rem!important}.fr-mt-md-15w,.fr-mt-md-30v,.fr-my-md-15w,.fr-my-md-30v{margin-top:7.5rem!important}.fr-mb-md-15w,.fr-mb-md-30v,.fr-my-md-15w,.fr-my-md-30v{margin-bottom:7.5rem!important}.fr-m-md-31v{margin:7.75rem!important}.fr-ml-md-31v,.fr-mx-md-31v{margin-left:7.75rem!important}.fr-mr-md-31v,.fr-mx-md-31v{margin-right:7.75rem!important}.fr-mt-md-31v,.fr-my-md-31v{margin-top:7.75rem!important}.fr-mb-md-31v,.fr-my-md-31v{margin-bottom:7.75rem!important}.fr-m-md-16w,.fr-m-md-32v{margin:8rem!important}.fr-ml-md-16w,.fr-ml-md-32v,.fr-mx-md-16w,.fr-mx-md-32v{margin-left:8rem!important}.fr-mr-md-16w,.fr-mr-md-32v,.fr-mx-md-16w,.fr-mx-md-32v{margin-right:8rem!important}.fr-mt-md-16w,.fr-mt-md-32v,.fr-my-md-16w,.fr-my-md-32v{margin-top:8rem!important}.fr-mb-md-16w,.fr-mb-md-32v,.fr-my-md-16w,.fr-my-md-32v{margin-bottom:8rem!important}.fr-m-md-auto{margin:auto}.fr-ml-md-auto,.fr-mx-md-auto{margin-left:auto}.fr-mr-md-auto,.fr-mx-md-auto{margin-right:auto}.fr-mt-md-auto,.fr-my-md-auto{margin-top:auto}.fr-mb-md-auto,.fr-my-md-auto{margin-bottom:auto}.fr-p-md-0{padding:0!important}.fr-pl-md-0,.fr-px-md-0{padding-left:0!important}.fr-pr-md-0,.fr-px-md-0{padding-right:0!important}.fr-pt-md-0,.fr-py-md-0{padding-top:0!important}.fr-pb-md-0,.fr-py-md-0{padding-bottom:0!important}.fr-p-md-0-5v{padding:.125rem!important}.fr-pl-md-0-5v,.fr-px-md-0-5v{padding-left:.125rem!important}.fr-pr-md-0-5v,.fr-px-md-0-5v{padding-right:.125rem!important}.fr-pt-md-0-5v,.fr-py-md-0-5v{padding-top:.125rem!important}.fr-pb-md-0-5v,.fr-py-md-0-5v{padding-bottom:.125rem!important}.fr-p-md-1v{padding:.25rem!important}.fr-pl-md-1v,.fr-px-md-1v{padding-left:.25rem!important}.fr-pr-md-1v,.fr-px-md-1v{padding-right:.25rem!important}.fr-pt-md-1v,.fr-py-md-1v{padding-top:.25rem!important}.fr-pb-md-1v,.fr-py-md-1v{padding-bottom:.25rem!important}.fr-p-md-1-5v{padding:.375rem!important}.fr-pl-md-1-5v,.fr-px-md-1-5v{padding-left:.375rem!important}.fr-pr-md-1-5v,.fr-px-md-1-5v{padding-right:.375rem!important}.fr-pt-md-1-5v,.fr-py-md-1-5v{padding-top:.375rem!important}.fr-pb-md-1-5v,.fr-py-md-1-5v{padding-bottom:.375rem!important}.fr-p-md-1w,.fr-p-md-2v{padding:.5rem!important}.fr-pl-md-1w,.fr-pl-md-2v,.fr-px-md-1w,.fr-px-md-2v{padding-left:.5rem!important}.fr-pr-md-1w,.fr-pr-md-2v,.fr-px-md-1w,.fr-px-md-2v{padding-right:.5rem!important}.fr-pt-md-1w,.fr-pt-md-2v,.fr-py-md-1w,.fr-py-md-2v{padding-top:.5rem!important}.fr-pb-md-1w,.fr-pb-md-2v,.fr-py-md-1w,.fr-py-md-2v{padding-bottom:.5rem!important}.fr-p-md-3v{padding:.75rem!important}.fr-pl-md-3v,.fr-px-md-3v{padding-left:.75rem!important}.fr-pr-md-3v,.fr-px-md-3v{padding-right:.75rem!important}.fr-pt-md-3v,.fr-py-md-3v{padding-top:.75rem!important}.fr-pb-md-3v,.fr-py-md-3v{padding-bottom:.75rem!important}.fr-p-md-2w,.fr-p-md-4v{padding:1rem!important}.fr-pl-md-2w,.fr-pl-md-4v,.fr-px-md-2w,.fr-px-md-4v{padding-left:1rem!important}.fr-pr-md-2w,.fr-pr-md-4v,.fr-px-md-2w,.fr-px-md-4v{padding-right:1rem!important}.fr-pt-md-2w,.fr-pt-md-4v,.fr-py-md-2w,.fr-py-md-4v{padding-top:1rem!important}.fr-pb-md-2w,.fr-pb-md-4v,.fr-py-md-2w,.fr-py-md-4v{padding-bottom:1rem!important}.fr-p-md-5v{padding:1.25rem!important}.fr-pl-md-5v,.fr-px-md-5v{padding-left:1.25rem!important}.fr-pr-md-5v,.fr-px-md-5v{padding-right:1.25rem!important}.fr-pt-md-5v,.fr-py-md-5v{padding-top:1.25rem!important}.fr-pb-md-5v,.fr-py-md-5v{padding-bottom:1.25rem!important}.fr-p-md-3w,.fr-p-md-6v{padding:1.5rem!important}.fr-pl-md-3w,.fr-pl-md-6v,.fr-px-md-3w,.fr-px-md-6v{padding-left:1.5rem!important}.fr-pr-md-3w,.fr-pr-md-6v,.fr-px-md-3w,.fr-px-md-6v{padding-right:1.5rem!important}.fr-pt-md-3w,.fr-pt-md-6v,.fr-py-md-3w,.fr-py-md-6v{padding-top:1.5rem!important}.fr-pb-md-3w,.fr-pb-md-6v,.fr-py-md-3w,.fr-py-md-6v{padding-bottom:1.5rem!important}.fr-p-md-7v{padding:1.75rem!important}.fr-pl-md-7v,.fr-px-md-7v{padding-left:1.75rem!important}.fr-pr-md-7v,.fr-px-md-7v{padding-right:1.75rem!important}.fr-pt-md-7v,.fr-py-md-7v{padding-top:1.75rem!important}.fr-pb-md-7v,.fr-py-md-7v{padding-bottom:1.75rem!important}.fr-p-md-4w,.fr-p-md-8v{padding:2rem!important}.fr-pl-md-4w,.fr-pl-md-8v,.fr-px-md-4w,.fr-px-md-8v{padding-left:2rem!important}.fr-pr-md-4w,.fr-pr-md-8v,.fr-px-md-4w,.fr-px-md-8v{padding-right:2rem!important}.fr-pt-md-4w,.fr-pt-md-8v,.fr-py-md-4w,.fr-py-md-8v{padding-top:2rem!important}.fr-pb-md-4w,.fr-pb-md-8v,.fr-py-md-4w,.fr-py-md-8v{padding-bottom:2rem!important}.fr-p-md-9v{padding:2.25rem!important}.fr-pl-md-9v,.fr-px-md-9v{padding-left:2.25rem!important}.fr-pr-md-9v,.fr-px-md-9v{padding-right:2.25rem!important}.fr-pt-md-9v,.fr-py-md-9v{padding-top:2.25rem!important}.fr-pb-md-9v,.fr-py-md-9v{padding-bottom:2.25rem!important}.fr-p-md-10v,.fr-p-md-5w{padding:2.5rem!important}.fr-pl-md-10v,.fr-pl-md-5w,.fr-px-md-10v,.fr-px-md-5w{padding-left:2.5rem!important}.fr-pr-md-10v,.fr-pr-md-5w,.fr-px-md-10v,.fr-px-md-5w{padding-right:2.5rem!important}.fr-pt-md-10v,.fr-pt-md-5w,.fr-py-md-10v,.fr-py-md-5w{padding-top:2.5rem!important}.fr-pb-md-10v,.fr-pb-md-5w,.fr-py-md-10v,.fr-py-md-5w{padding-bottom:2.5rem!important}.fr-p-md-11v{padding:2.75rem!important}.fr-pl-md-11v,.fr-px-md-11v{padding-left:2.75rem!important}.fr-pr-md-11v,.fr-px-md-11v{padding-right:2.75rem!important}.fr-pt-md-11v,.fr-py-md-11v{padding-top:2.75rem!important}.fr-pb-md-11v,.fr-py-md-11v{padding-bottom:2.75rem!important}.fr-p-md-12v,.fr-p-md-6w{padding:3rem!important}.fr-pl-md-12v,.fr-pl-md-6w,.fr-px-md-12v,.fr-px-md-6w{padding-left:3rem!important}.fr-pr-md-12v,.fr-pr-md-6w,.fr-px-md-12v,.fr-px-md-6w{padding-right:3rem!important}.fr-pt-md-12v,.fr-pt-md-6w,.fr-py-md-12v,.fr-py-md-6w{padding-top:3rem!important}.fr-pb-md-12v,.fr-pb-md-6w,.fr-py-md-12v,.fr-py-md-6w{padding-bottom:3rem!important}.fr-p-md-13v{padding:3.25rem!important}.fr-pl-md-13v,.fr-px-md-13v{padding-left:3.25rem!important}.fr-pr-md-13v,.fr-px-md-13v{padding-right:3.25rem!important}.fr-pt-md-13v,.fr-py-md-13v{padding-top:3.25rem!important}.fr-pb-md-13v,.fr-py-md-13v{padding-bottom:3.25rem!important}.fr-p-md-14v,.fr-p-md-7w{padding:3.5rem!important}.fr-pl-md-14v,.fr-pl-md-7w,.fr-px-md-14v,.fr-px-md-7w{padding-left:3.5rem!important}.fr-pr-md-14v,.fr-pr-md-7w,.fr-px-md-14v,.fr-px-md-7w{padding-right:3.5rem!important}.fr-pt-md-14v,.fr-pt-md-7w,.fr-py-md-14v,.fr-py-md-7w{padding-top:3.5rem!important}.fr-pb-md-14v,.fr-pb-md-7w,.fr-py-md-14v,.fr-py-md-7w{padding-bottom:3.5rem!important}.fr-p-md-15v{padding:3.75rem!important}.fr-pl-md-15v,.fr-px-md-15v{padding-left:3.75rem!important}.fr-pr-md-15v,.fr-px-md-15v{padding-right:3.75rem!important}.fr-pt-md-15v,.fr-py-md-15v{padding-top:3.75rem!important}.fr-pb-md-15v,.fr-py-md-15v{padding-bottom:3.75rem!important}.fr-p-md-16v,.fr-p-md-8w{padding:4rem!important}.fr-pl-md-16v,.fr-pl-md-8w,.fr-px-md-16v,.fr-px-md-8w{padding-left:4rem!important}.fr-pr-md-16v,.fr-pr-md-8w,.fr-px-md-16v,.fr-px-md-8w{padding-right:4rem!important}.fr-pt-md-16v,.fr-pt-md-8w,.fr-py-md-16v,.fr-py-md-8w{padding-top:4rem!important}.fr-pb-md-16v,.fr-pb-md-8w,.fr-py-md-16v,.fr-py-md-8w{padding-bottom:4rem!important}.fr-p-md-17v{padding:4.25rem!important}.fr-pl-md-17v,.fr-px-md-17v{padding-left:4.25rem!important}.fr-pr-md-17v,.fr-px-md-17v{padding-right:4.25rem!important}.fr-pt-md-17v,.fr-py-md-17v{padding-top:4.25rem!important}.fr-pb-md-17v,.fr-py-md-17v{padding-bottom:4.25rem!important}.fr-p-md-18v,.fr-p-md-9w{padding:4.5rem!important}.fr-pl-md-18v,.fr-pl-md-9w,.fr-px-md-18v,.fr-px-md-9w{padding-left:4.5rem!important}.fr-pr-md-18v,.fr-pr-md-9w,.fr-px-md-18v,.fr-px-md-9w{padding-right:4.5rem!important}.fr-pt-md-18v,.fr-pt-md-9w,.fr-py-md-18v,.fr-py-md-9w{padding-top:4.5rem!important}.fr-pb-md-18v,.fr-pb-md-9w,.fr-py-md-18v,.fr-py-md-9w{padding-bottom:4.5rem!important}.fr-p-md-19v{padding:4.75rem!important}.fr-pl-md-19v,.fr-px-md-19v{padding-left:4.75rem!important}.fr-pr-md-19v,.fr-px-md-19v{padding-right:4.75rem!important}.fr-pt-md-19v,.fr-py-md-19v{padding-top:4.75rem!important}.fr-pb-md-19v,.fr-py-md-19v{padding-bottom:4.75rem!important}.fr-p-md-10w,.fr-p-md-20v{padding:5rem!important}.fr-pl-md-10w,.fr-pl-md-20v,.fr-px-md-10w,.fr-px-md-20v{padding-left:5rem!important}.fr-pr-md-10w,.fr-pr-md-20v,.fr-px-md-10w,.fr-px-md-20v{padding-right:5rem!important}.fr-pt-md-10w,.fr-pt-md-20v,.fr-py-md-10w,.fr-py-md-20v{padding-top:5rem!important}.fr-pb-md-10w,.fr-pb-md-20v,.fr-py-md-10w,.fr-py-md-20v{padding-bottom:5rem!important}.fr-p-md-21v{padding:5.25rem!important}.fr-pl-md-21v,.fr-px-md-21v{padding-left:5.25rem!important}.fr-pr-md-21v,.fr-px-md-21v{padding-right:5.25rem!important}.fr-pt-md-21v,.fr-py-md-21v{padding-top:5.25rem!important}.fr-pb-md-21v,.fr-py-md-21v{padding-bottom:5.25rem!important}.fr-p-md-11w,.fr-p-md-22v{padding:5.5rem!important}.fr-pl-md-11w,.fr-pl-md-22v,.fr-px-md-11w,.fr-px-md-22v{padding-left:5.5rem!important}.fr-pr-md-11w,.fr-pr-md-22v,.fr-px-md-11w,.fr-px-md-22v{padding-right:5.5rem!important}.fr-pt-md-11w,.fr-pt-md-22v,.fr-py-md-11w,.fr-py-md-22v{padding-top:5.5rem!important}.fr-pb-md-11w,.fr-pb-md-22v,.fr-py-md-11w,.fr-py-md-22v{padding-bottom:5.5rem!important}.fr-p-md-23v{padding:5.75rem!important}.fr-pl-md-23v,.fr-px-md-23v{padding-left:5.75rem!important}.fr-pr-md-23v,.fr-px-md-23v{padding-right:5.75rem!important}.fr-pt-md-23v,.fr-py-md-23v{padding-top:5.75rem!important}.fr-pb-md-23v,.fr-py-md-23v{padding-bottom:5.75rem!important}.fr-p-md-12w,.fr-p-md-24v{padding:6rem!important}.fr-pl-md-12w,.fr-pl-md-24v,.fr-px-md-12w,.fr-px-md-24v{padding-left:6rem!important}.fr-pr-md-12w,.fr-pr-md-24v,.fr-px-md-12w,.fr-px-md-24v{padding-right:6rem!important}.fr-pt-md-12w,.fr-pt-md-24v,.fr-py-md-12w,.fr-py-md-24v{padding-top:6rem!important}.fr-pb-md-12w,.fr-pb-md-24v,.fr-py-md-12w,.fr-py-md-24v{padding-bottom:6rem!important}.fr-p-md-25v{padding:6.25rem!important}.fr-pl-md-25v,.fr-px-md-25v{padding-left:6.25rem!important}.fr-pr-md-25v,.fr-px-md-25v{padding-right:6.25rem!important}.fr-pt-md-25v,.fr-py-md-25v{padding-top:6.25rem!important}.fr-pb-md-25v,.fr-py-md-25v{padding-bottom:6.25rem!important}.fr-p-md-13w,.fr-p-md-26v{padding:6.5rem!important}.fr-pl-md-13w,.fr-pl-md-26v,.fr-px-md-13w,.fr-px-md-26v{padding-left:6.5rem!important}.fr-pr-md-13w,.fr-pr-md-26v,.fr-px-md-13w,.fr-px-md-26v{padding-right:6.5rem!important}.fr-pt-md-13w,.fr-pt-md-26v,.fr-py-md-13w,.fr-py-md-26v{padding-top:6.5rem!important}.fr-pb-md-13w,.fr-pb-md-26v,.fr-py-md-13w,.fr-py-md-26v{padding-bottom:6.5rem!important}.fr-p-md-27v{padding:6.75rem!important}.fr-pl-md-27v,.fr-px-md-27v{padding-left:6.75rem!important}.fr-pr-md-27v,.fr-px-md-27v{padding-right:6.75rem!important}.fr-pt-md-27v,.fr-py-md-27v{padding-top:6.75rem!important}.fr-pb-md-27v,.fr-py-md-27v{padding-bottom:6.75rem!important}.fr-p-md-14w,.fr-p-md-28v{padding:7rem!important}.fr-pl-md-14w,.fr-pl-md-28v,.fr-px-md-14w,.fr-px-md-28v{padding-left:7rem!important}.fr-pr-md-14w,.fr-pr-md-28v,.fr-px-md-14w,.fr-px-md-28v{padding-right:7rem!important}.fr-pt-md-14w,.fr-pt-md-28v,.fr-py-md-14w,.fr-py-md-28v{padding-top:7rem!important}.fr-pb-md-14w,.fr-pb-md-28v,.fr-py-md-14w,.fr-py-md-28v{padding-bottom:7rem!important}.fr-p-md-29v{padding:7.25rem!important}.fr-pl-md-29v,.fr-px-md-29v{padding-left:7.25rem!important}.fr-pr-md-29v,.fr-px-md-29v{padding-right:7.25rem!important}.fr-pt-md-29v,.fr-py-md-29v{padding-top:7.25rem!important}.fr-pb-md-29v,.fr-py-md-29v{padding-bottom:7.25rem!important}.fr-p-md-15w,.fr-p-md-30v{padding:7.5rem!important}.fr-pl-md-15w,.fr-pl-md-30v,.fr-px-md-15w,.fr-px-md-30v{padding-left:7.5rem!important}.fr-pr-md-15w,.fr-pr-md-30v,.fr-px-md-15w,.fr-px-md-30v{padding-right:7.5rem!important}.fr-pt-md-15w,.fr-pt-md-30v,.fr-py-md-15w,.fr-py-md-30v{padding-top:7.5rem!important}.fr-pb-md-15w,.fr-pb-md-30v,.fr-py-md-15w,.fr-py-md-30v{padding-bottom:7.5rem!important}.fr-p-md-31v{padding:7.75rem!important}.fr-pl-md-31v,.fr-px-md-31v{padding-left:7.75rem!important}.fr-pr-md-31v,.fr-px-md-31v{padding-right:7.75rem!important}.fr-pt-md-31v,.fr-py-md-31v{padding-top:7.75rem!important}.fr-pb-md-31v,.fr-py-md-31v{padding-bottom:7.75rem!important}.fr-p-md-16w,.fr-p-md-32v{padding:8rem!important}.fr-pl-md-16w,.fr-pl-md-32v,.fr-px-md-16w,.fr-px-md-32v{padding-left:8rem!important}.fr-pr-md-16w,.fr-pr-md-32v,.fr-px-md-16w,.fr-px-md-32v{padding-right:8rem!important}.fr-pt-md-16w,.fr-pt-md-32v,.fr-py-md-16w,.fr-py-md-32v{padding-top:8rem!important}.fr-pb-md-16w,.fr-pb-md-32v,.fr-py-md-16w,.fr-py-md-32v{padding-bottom:8rem!important} @@ -9,4 +9,4 @@ /*! media lg */.fr-hidden-lg{display:none!important}.fr-unhidden-lg{display:inherit!important}.fr-sr-only-lg{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{padding-left:1.5rem;padding-right:1.5rem}.fr-container-lg--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters,.fr-grid-row-md--gutters,.fr-grid-row-sm--gutters{margin:-.75rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-],.fr-grid-row-md--gutters>.fr-col,.fr-grid-row-md--gutters>[class*=" fr-col-"],.fr-grid-row-md--gutters>[class^=fr-col-],.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-lg--gutters{margin:-.75rem}.fr-grid-row-lg--gutters>.fr-col,.fr-grid-row-lg--gutters>[class*=" fr-col-"],.fr-grid-row-lg--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-lg--no-gutters{margin:0}.fr-grid-row-lg--no-gutters>.fr-col,.fr-grid-row-lg--no-gutters>[class*=" fr-col-"],.fr-grid-row-lg--no-gutters>[class^=fr-col-]{padding:0}.fr-col-lg{flex:1}.fr-col-lg-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-lg-1:not(.fr-col-offset-lg-1--right){margin-left:8.33333%}.fr-col-offset-lg-1--right{margin-right:8.33333%}.fr-col-lg-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-lg-2:not(.fr-col-offset-lg-2--right){margin-left:16.66667%}.fr-col-offset-lg-2--right{margin-right:16.66667%}.fr-col-lg-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-lg-3:not(.fr-col-offset-lg-3--right){margin-left:25%}.fr-col-offset-lg-3--right{margin-right:25%}.fr-col-lg-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-lg-4:not(.fr-col-offset-lg-4--right){margin-left:33.33333%}.fr-col-offset-lg-4--right{margin-right:33.33333%}.fr-col-lg-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-lg-5:not(.fr-col-offset-lg-5--right){margin-left:41.66667%}.fr-col-offset-lg-5--right{margin-right:41.66667%}.fr-col-lg-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-lg-6:not(.fr-col-offset-lg-6--right){margin-left:50%}.fr-col-offset-lg-6--right{margin-right:50%}.fr-col-lg-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-lg-7:not(.fr-col-offset-lg-7--right){margin-left:58.33333%}.fr-col-offset-lg-7--right{margin-right:58.33333%}.fr-col-lg-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-lg-8:not(.fr-col-offset-lg-8--right){margin-left:66.66667%}.fr-col-offset-lg-8--right{margin-right:66.66667%}.fr-col-lg-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-lg-9:not(.fr-col-offset-lg-9--right){margin-left:75%}.fr-col-offset-lg-9--right{margin-right:75%}.fr-col-lg-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-lg-10:not(.fr-col-offset-lg-10--right){margin-left:83.33333%}.fr-col-offset-lg-10--right{margin-right:83.33333%}.fr-col-lg-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-lg-11:not(.fr-col-offset-lg-11--right){margin-left:91.66667%}.fr-col-offset-lg-11--right{margin-right:91.66667%}.fr-col-lg-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-lg-12:not(.fr-col-offset-lg-12--right){margin-left:100%}.fr-col-offset-lg-12--right{margin-right:100%}.fr-displayed-lg{display:inherit!important} /*! media lg */}@media (min-width:78em){ /*! media xl */.fr-hidden-xl{display:none!important}.fr-unhidden-xl{display:inherit!important}.fr-sr-only-xl{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{max-width:78rem}.fr-container-xl{max-width:78rem;padding-left:1.5rem;padding-right:1.5rem}.fr-container-xl--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-xl--gutters{margin:-.75rem}.fr-grid-row-xl--gutters>.fr-col,.fr-grid-row-xl--gutters>[class*=" fr-col-"],.fr-grid-row-xl--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-xl--no-gutters{margin:0}.fr-grid-row-xl--no-gutters>.fr-col,.fr-grid-row-xl--no-gutters>[class*=" fr-col-"],.fr-grid-row-xl--no-gutters>[class^=fr-col-]{padding:0}.fr-col-xl{flex:1}.fr-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-xl-1:not(.fr-col-offset-xl-1--right){margin-left:8.33333%}.fr-col-offset-xl-1--right{margin-right:8.33333%}.fr-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-xl-2:not(.fr-col-offset-xl-2--right){margin-left:16.66667%}.fr-col-offset-xl-2--right{margin-right:16.66667%}.fr-col-xl-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-xl-3:not(.fr-col-offset-xl-3--right){margin-left:25%}.fr-col-offset-xl-3--right{margin-right:25%}.fr-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-xl-4:not(.fr-col-offset-xl-4--right){margin-left:33.33333%}.fr-col-offset-xl-4--right{margin-right:33.33333%}.fr-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-xl-5:not(.fr-col-offset-xl-5--right){margin-left:41.66667%}.fr-col-offset-xl-5--right{margin-right:41.66667%}.fr-col-xl-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-xl-6:not(.fr-col-offset-xl-6--right){margin-left:50%}.fr-col-offset-xl-6--right{margin-right:50%}.fr-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-xl-7:not(.fr-col-offset-xl-7--right){margin-left:58.33333%}.fr-col-offset-xl-7--right{margin-right:58.33333%}.fr-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-xl-8:not(.fr-col-offset-xl-8--right){margin-left:66.66667%}.fr-col-offset-xl-8--right{margin-right:66.66667%}.fr-col-xl-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-xl-9:not(.fr-col-offset-xl-9--right){margin-left:75%}.fr-col-offset-xl-9--right{margin-right:75%}.fr-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-xl-10:not(.fr-col-offset-xl-10--right){margin-left:83.33333%}.fr-col-offset-xl-10--right{margin-right:83.33333%}.fr-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-xl-11:not(.fr-col-offset-xl-11--right){margin-left:91.66667%}.fr-col-offset-xl-11--right{margin-right:91.66667%}.fr-col-xl-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-xl-12:not(.fr-col-offset-xl-12--right){margin-left:100%}.fr-col-offset-xl-12--right{margin-right:100%} - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-collapse,.fr-collapse:before{transition:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}}@media print{body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-no-print{display:none}h1,h2,h3,h4{break-after:avoid;page-break-after:avoid}p{orphans:3;widows:3}.fr-text--sm,.fr-text--xs{font-size:1rem!important;line-height:1.5rem!important;margin:var(--text-spacing)}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,select[class*=" fr-fi-"]:disabled:after,select[class*=" fr-fi-"]:disabled:before,select[class*=" fr-icon-"]:disabled:after,select[class*=" fr-icon-"]:disabled:before,select[class^=fr-fi-]:disabled:after,select[class^=fr-fi-]:disabled:before,select[class^=fr-icon-]:disabled:after,select[class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-collapse,.fr-collapse:before{transition:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}}@media print{body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-no-print{display:none}h1,h2,h3,h4{break-after:avoid;page-break-after:avoid}p{orphans:3;widows:3}.fr-text--sm,.fr-text--xs{font-size:1rem!important;line-height:1.5rem!important;margin:var(--text-spacing)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/core/core.module.min.js b/dsfr/static/dsfr/dist/core/core.module.min.js index c5d752e7d..2bd75a01e 100644 --- a/dsfr/static/dsfr/dist/core/core.module.min.js +++ b/dsfr/static/dsfr/dist/core/core.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const t=new class{constructor(){this.modules={}}create(t){const e=new t;this.modules[e.type]=e}getModule(t){return this.modules[t]}add(t,e){this.modules[t].add(e)}remove(t,e){this.modules[t].remove(e)}get isActive(){return this._isActive}set isActive(t){if(t===this._isActive)return;this._isActive=t;const e=Object.keys(this.modules).map((t=>this.modules[t]));if(t)for(const t of e)t.activate();else for(const t of e)t.deactivate()}get isLegacy(){return this._isLegacy}set isLegacy(t){t!==this._isLegacy&&(this._isLegacy=t)}},e="fr",s="dsfr",i="@gouvfr",n="1.12.1";class r{constructor(t,e,s,i){switch(this.level=t,this.light=e,this.dark=s,i){case"warn":this.logger=console.warn;break;case"error":this.logger=console.error;break;default:this.logger=console.log}}log(...t){const e=new o(s);for(const s of t)e.add(s);this.print(e)}print(t){t.setColor(this.color),this.logger.apply(console,t.getMessage())}get color(){return window.matchMedia("(prefers-color-scheme: dark)").matches?this.dark:this.light}}class o{constructor(t){this.inputs=["%c"],this.styles=["font-family:Marianne","line-height: 1.5"],this.objects=[],t&&this.add(`${t} :`)}add(t){switch(typeof t){case"object":case"function":this.inputs.push("%o "),this.objects.push(t);break;default:this.inputs.push(`${t} `)}}setColor(t){this.styles.push(`color:${t}`)}getMessage(){return[this.inputs.join(""),this.styles.join(";"),...this.objects]}}const h={log:new r(0,"#616161","#989898"),debug:new r(1,"#000091","#8B8BFF"),info:new r(2,"#007c3b","#00ed70"),warn:new r(3,"#ba4500","#fa5c00","warn"),error:new r(4,"#D80600","#FF4641","error")};const a=new class{constructor(){this.level=2;for(const t in h){const e=h[t];this[t]=(...t)=>{this.level<=e.level&&e.log.apply(e,t)},this[t].print=e.print.bind(e)}}state(){const e=new o;e.add(t),this.log.print(e)}tree(){const e=t.getModule("stage");if(!e)return;const s=new o;this._branch(e.root,0,s),this.log.print(s)}_branch(t,e,s){let i="";if(e>0){let t="";for(let s=0;s{"loading"!==document.readyState?window.requestAnimationFrame(t):document.addEventListener("DOMContentLoaded",t)},l={AUTO:"auto",MANUAL:"manual",RUNTIME:"runtime",LOADED:"loaded",VUE:"vue",ANGULAR:"angular",REACT:"react"};const d=new class{constructor(){this._mode=l.AUTO,this.isStarted=!1,this.starting=this.start.bind(this),this.preventManipulation=!1}configure(t={},e,s){this.startCallback=e;const i=t.production&&(!s||"false"!==s.production);switch(!0){case s&&!isNaN(s.level):a.level=Number(s.level);break;case s&&s.verbose&&("true"===s.verbose||1===s.verbose):a.level=0;break;case i:a.level=999;break;case t.verbose:a.level=0}a.info(`version ${n}`),this.mode=t.mode||l.AUTO}set mode(t){switch(t){case l.AUTO:this.preventManipulation=!1,e=this.starting,c(e);break;case l.LOADED:this.preventManipulation=!1,c(this.starting);break;case l.RUNTIME:this.preventManipulation=!1,this.start();break;case l.MANUAL:this.preventManipulation=!1;break;case l.VUE:case l.ANGULAR:case l.REACT:this.preventManipulation=!0;break;default:return void a.error("Illegal mode")}var e;this._mode=t,a.info(`mode set to ${t}`)}get mode(){return this._mode}start(){a.info("start"),this.startCallback()}};class u{constructor(){this._collection=[]}forEach(t){this._collection.forEach(t)}map(t){return this._collection.map(t)}get length(){return this._collection.length}add(t){return!(this._collection.indexOf(t)>-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)}remove(t){const e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()}execute(...t){for(const e of this._collection)e&&e.apply(null,t)}clear(){this._collection.length=0}clone(){const t=new u;return t._collection=this._collection.slice(),t}get collection(){return this._collection}}class g extends u{constructor(t){super(),this.type=t,this.isActive=!1}activate(){}deactivate(){}}const p=t=>`${e}-${t}`;p.selector=(t,e)=>(void 0===e&&(e="."),`${e}${p(t)}`),(p.attr=t=>`data-${p(t)}`).selector=(t,e)=>{let s=p.attr(t);return void 0!==e&&(s+=`="${e}"`),`[${s}]`},p.event=t=>`${s}.${t}`,p.emission=(t,e)=>`emission:${t}.${e}`;const m=(t,e)=>Array.prototype.slice.call(t.querySelectorAll(e)),f=(t,e)=>{const s=t.parentElement;return s.matches(e)?s:s===document.documentElement?null:f(s,e)};class _{constructor(t,e,s){this.selector=t,this.InstanceClass=e,this.creator=s,this.instances=new u,this.isIntroduced=!1,this._instanceClassName=this.InstanceClass.instanceClassName,this._instanceClassNames=this.getInstanceClassNames(this.InstanceClass),this._property=this._instanceClassName.substring(0,1).toLowerCase()+this._instanceClassName.substring(1);const i=this._instanceClassName.replace(/[^a-zA-Z0-9]+/g,"-").replace(/([A-Z]+)([A-Z][a-z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([0-9])([^0-9])/g,"$1-$2").replace(/([^0-9])([0-9])/g,"$1-$2").toLowerCase();this._attribute=p.attr(`js-${i}`)}getInstanceClassNames(t){const e=Object.getPrototypeOf(t);return e&&"Instance"!==e.instanceClassName?[...this.getInstanceClassNames(e),t.instanceClassName]:[t.instanceClassName]}hasInstanceClassName(t){return this._instanceClassNames.indexOf(t)>-1}introduce(){this.isIntroduced||(this.isIntroduced=!0,t.getModule("stage").parse(document.documentElement,this))}parse(t,e){const s=[];return t.matches&&t.matches(this.selector)&&s.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&s.push.apply(s,m(t,this.selector)),s}create(t){if(!t.node.matches(this.selector))return;const e=new this.InstanceClass;return this.instances.add(e),e}remove(t){this.instances.remove(t)}dispose(){const t=this.instances.collection;for(let e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null}get instanceClassName(){return this._instanceClassName}get instanceClassNames(){return this._instanceClassNames}get property(){return this._property}get attribute(){return this._attribute}}class b extends g{constructor(){super("register")}register(e,s,i){const n=new _(e,s,i);return this.add(n),t.isActive&&n.introduce(),n}activate(){for(const t of this.collection)t.introduce()}remove(t){t.dispose(),super.remove(t)}}let v=0;class y{constructor(t,e){e?this.id=e:(v++,this.id=v),this.node=t,this.attributeNames=[],this.instances=[],this._children=[],this._parent=null,this._projects=[]}get proxy(){const t=this;if(!this._proxy){this._proxy={id:this.id,get parent(){return t.parent?t.parent.proxy:null},get children(){return t.children.map((t=>t.proxy))}};for(const t of this.instances)this._proxy[t.registration.property]=t.proxy}return this._proxy}get html(){if(!this.node||!this.node.outerHTML)return"";const t=this.node.outerHTML.indexOf(">");return this.node.outerHTML.substring(0,t+1)}project(t){-1===this._projects.indexOf(t)&&this._projects.push(t)}populate(){const t=this._projects.slice();this._projects.length=0;for(const e of t)this.create(e)}create(t){if(this.hasInstance(t.instanceClassName))return;a.debug(`create instance of ${t.instanceClassName} on element [${this.id}]`);const e=t.create(this);this.instances.push(e),e._config(this,t),this._proxy&&(this._proxy[t.property]=e.proxy)}remove(t){const e=this.instances.indexOf(t);e>-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]}get parent(){return this._parent}get ascendants(){return[this.parent,...this.parent.ascendants]}get children(){return this._children}get descendants(){const t=[...this._children];return this._children.forEach((e=>t.push(...e.descendants))),t}addChild(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){const e=this.instances[t];e&&e._dispose()}this.instances.length=0,t.remove("stage",this),this.parent.removeChild(this),this._children.length=0,a.debug(`remove element [${this.id}] ${this.html}`)}prepare(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)}examine(){const t=this.attributeNames.slice();this.attributeNames.length=0;for(let e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)}}const E={CLICK:p.emission("root","click"),KEYDOWN:p.emission("root","keydown"),KEYUP:p.emission("root","keyup")},w={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},C=t=>Object.values(w).filter((e=>e.value===t))[0];class A extends y{constructor(){super(document.documentElement,"root"),this.node.setAttribute(p.attr("js"),!0),this.listen()}listen(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})}click(t){this.emit(E.CLICK,t.target)}keydown(t){this.emit(E.KEYDOWN,C(t.keyCode))}keyup(t){this.emit(E.KEYUP,C(t.keyCode))}}class x extends g{constructor(){super("stage"),this.root=new A,super.add(this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}hasElement(t){for(const e of this.collection)if(e.node===t)return!0;return!1}getElement(t){for(const e of this.collection)if(e.node===t)return e;const e=new y(t);return this.add(e),a.debug(`add element [${e.id}] ${e.html}`),e}getProxy(t){if(!this.hasElement(t))return null;return this.getElement(t).proxy}add(t){super.add(t),this.put(t,this.root)}put(t,e){let s=0;for(let i=e.children.length-1;i>-1;i--){const n=e.children[i],r=t.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(n),t.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){s=i+1;break}}e.addChild(t,s)}activate(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})}deactivate(){this.observer.disconnect()}mutate(t){const e=[];t.forEach((t=>{switch(t.type){case"childList":t.removedNodes.forEach((t=>this.dispose(t))),t.addedNodes.forEach((t=>this.parse(t)));break;case"attributes":if(this.hasElement(t.target)){const s=this.getElement(t.target);s.prepare(t.attributeName),-1===e.indexOf(s)&&e.push(s);for(const t of s.descendants)-1===e.indexOf(t)&&e.push(t)}-1===this.modifications.indexOf(t.target)&&this.modifications.push(t.target)}})),e.forEach((t=>t.examine())),this.modifications.length&&!this.willModify&&(this.willModify=!0,window.requestAnimationFrame(this.modifying))}modify(){this.willModify=!1;const t=this.modifications.slice();this.modifications.length=0;for(const e of t)document.documentElement.contains(e)&&this.parse(e)}dispose(t){const e=[];this.forEach((s=>{t.contains(s.node)&&e.push(s)}));for(const t of e)t.dispose(),this.remove(t)}parse(e,s,i){const n=s?[s]:t.getModule("register").collection,r=[];for(const t of n){const s=t.parse(e,i);for(const e of s){const s=this.getElement(e);s.project(t),-1===r.indexOf(s)&&r.push(s)}}for(const t of r)t.populate()}}class T extends g{constructor(){super("render"),this.rendering=this.render.bind(this),this.nexts=new u}activate(){window.requestAnimationFrame(this.rendering)}request(t){this.nexts.add(t)}render(){if(!t.isActive)return;if(window.requestAnimationFrame(this.rendering),this.forEach((t=>t.render())),!this.nexts.length)return;const e=this.nexts.clone();this.nexts.clear(),e.forEach((t=>t.next()))}}class N extends g{constructor(){super("resize"),this.requireResize=!1,this.resizing=this.resize.bind(this);const t=this.request.bind(this);document.fonts&&document.fonts.ready.then(t),window.addEventListener("resize",t),window.addEventListener("orientationchange",t)}activate(){this.request()}request(){this.requireResize||(this.requireResize=!0,window.requestAnimationFrame(this.resizing))}resize(){this.requireResize&&(this.forEach((t=>t.resize())),this.requireResize=!1)}}class R extends g{constructor(){super("lock"),this._isLocked=!1,this._scrollY=0,this.onPopulate=this.lock.bind(this),this.onEmpty=this.unlock.bind(this)}get isLocked(){return this._isLocked}lock(){if(!this._isLocked){this._isLocked=!0,this._scrollY=window.scrollY;const t=window.innerWidth-document.documentElement.clientWidth;document.documentElement.setAttribute(p.attr("scrolling"),"false"),document.body.style.top=-this._scrollY+"px",this.behavior=getComputedStyle(document.documentElement).getPropertyValue("scroll-behavior"),"smooth"===this.behavior&&(document.documentElement.style.scrollBehavior="auto"),t>0&&document.documentElement.style.setProperty("--scrollbar-width",`${t}px`)}}unlock(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(p.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"))}move(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)}}class D extends g{constructor(){super("load"),this.loading=this.load.bind(this)}activate(){window.addEventListener("load",this.loading)}load(){this.forEach((t=>t.load()))}}const O=["Marianne","Spectral"];class S extends g{constructor(){super("font-swap"),this.swapping=this.swap.bind(this)}activate(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)}swap(){const t=O.filter((t=>document.fonts.check(`16px ${t}`)));this.forEach((e=>e.swapFont(t)))}}class L extends g{constructor(){super("mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}listen(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))}unlisten(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))}request(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))}move(){this.requireMove&&(this.forEach((t=>t.mouseMove(this.point))),this.requireMove=!1)}}class k extends g{constructor(){super("hash"),this.handling=this.handle.bind(this),this.getLocationHash()}activate(){window.addEventListener("hashchange",this.handling)}deactivate(){window.removeEventListener("hashchange",this.handling)}_sanitize(t){return"#"===t.charAt(0)?t.substring(1):t}set hash(t){const e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)}get hash(){return this._hash}getLocationHash(){const t=window.location.hash;this._hash=this._sanitize(t)}handle(t){this.getLocationHash(),this.forEach((e=>e.handleHash(this._hash,t)))}}const P=new class{constructor(){t.create(b),t.create(x),t.create(T),t.create(N),t.create(R),t.create(D),t.create(S),t.create(L),t.create(k);const e=t.getModule("register");this.register=e.register.bind(e)}get isActive(){return t.isActive}start(){a.debug("START"),t.isActive=!0}stop(){a.debug("STOP"),t.isActive=!1}};const M=t=>{switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},I=new class{getColor(t,e,s,i={}){const n=`--${t}-${e}-${s}${M(i)}`;return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null}},$=t=>"."===t.charAt(0)?t.substr(1):t,G=t=>{switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},q=(t,e,s)=>{e=$(e);const i=G(t),n=i.indexOf(e);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(e),t.className=i.join(" ")},j=(t,e)=>q(t,e),U=(t,e)=>q(t,e,!0),F=(t,e)=>G(t).indexOf($(e))>-1,H=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),z=t=>t.querySelectorAll(H);let B=0;const V=t=>{if(!document.getElementById(t))return t;let e=!0;const s=t;for(;e;)B++,t=`${s}-${B}`,e=document.getElementById(t);return t},K={addClass:j,hasClass:F,removeClass:U,queryParentSelector:f,querySelectorAllArray:m,queryActions:z,uniqueId:V};const Y={DataURISVG:class{constructor(t=0,e=0){this._width=t,this._height=e,this._content=""}get width(){return this._width}set width(t){this._width=t}get height(){return this._height}set height(t){this._height=t}get content(){return this._content}set content(t){this._content=t}getDataURI(t=!1){let e=`${this._content}`;return e=e.replace(/#/gi,"%23"),t&&(e=e.replace(//gi,"%3E"),e=e.replace(/"/gi,"'"),e=e.replace(/{/gi,"%7B"),e=e.replace(/}/gi,"%7D")),`data:image/svg+xml;charset=utf8,${e}`}}},W={supportLocalStorage:()=>{try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:()=>!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")},X={TransitionSelector:{NONE:p.selector("transition-none")}},Z=(t,...e)=>(e.forEach((e=>{const s=Object.keys(e).reduce(((t,s)=>(t[s]=Object.getOwnPropertyDescriptor(e,s),t)),{});Object.getOwnPropertySymbols(e).forEach((t=>{const i=Object.getOwnPropertyDescriptor(e,t);i.enumerable&&(s[t]=i)})),Object.defineProperties(t,s)})),t),J={completeAssign:Z},Q={},tt={};Object.defineProperty(tt,"isLegacy",{get:()=>t.isLegacy}),tt.setLegacy=()=>{t.isLegacy=!0},Q.legacy=tt,Q.dom=K,Q.image=Y,Q.support=W,Q.motion=X,Q.property=J,Q.ns=p,Q.register=P.register,Q.state=t,Q.query=(t=>{if(t&&t.search){const t=new URLSearchParams(window.location.search).entries();return Object.fromEntries(t)}return null})(window.location),Object.defineProperty(Q,"preventManipulation",{get:()=>d.preventManipulation}),Object.defineProperty(Q,"stage",{get:()=>t.getModule("stage")});const et=e=>t.getModule("stage").getProxy(e);et.version=n,et.prefix=e,et.organisation=i,et.Modes=l,Object.defineProperty(et,"mode",{set:t=>{d.mode=t},get:()=>d.mode}),et.internals=Q,et.version=n,et.start=P.start,et.stop=P.stop,et.inspector=a,et.colors=I;const st=window[s];et.internals.configuration=st,d.configure(st,et.start,et.internals.query),window[s]=et;class it{constructor(){this.emissions={}}add(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)}remove(t,e){if(this.emissions[t])if(e){const s=this.emissions[t].indexOf(e);s>-1&&this.emissions[t].splice(s)}else delete this.emissions[t]}emit(t,e){if(!this.emissions[t])return[];const s=[];for(const i of this.emissions[t])i&&s.push(i(e));return s}dispose(){this.emissions=null}}class nt{constructor(t,e){this.id=t,this.minWidth=e}test(){return window.matchMedia(`(min-width: ${this.minWidth}em)`).matches}}const rt={XS:new nt("xs",0),SM:new nt("sm",36),MD:new nt("md",48),LG:new nt("lg",62),XL:new nt("xl",78)};class ot{constructor(t=!0){this.jsAttribute=t,this._isRendering=!1,this._isResizing=!1,this._isScrollLocked=!1,this._isLoading=!1,this._isSwappingFont=!1,this._isEnabled=!0,this._isDisposed=!1,this._listeners={},this._handlingClick=this.handleClick.bind(this),this._hashes=[],this._hash="",this._keyListenerTypes=[],this._keys=[],this.handlingKey=this.handleKey.bind(this),this._emitter=new it,this._ascent=new it,this._descent=new it,this._registrations=[],this._nexts=[]}static get instanceClassName(){return"Instance"}_config(t,e){this.element=t,this.registration=e,this.node=t.node,this.id=t.node.id,this.jsAttribute&&this.setAttribute(e.attribute,!0),this.init()}init(){}get proxy(){const t=this;return Z({render:()=>t.render(),resize:()=>t.resize()},{get node(){return this.node},get isEnabled(){return t.isEnabled},set isEnabled(e){t.isEnabled=e}})}log(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.log.apply(a,t)}debug(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.debug.apply(a,t)}info(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.info.apply(a,t)}warn(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.warn.apply(a,t)}error(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.error.apply(a,t)}register(e,s){const i=t.getModule("register").register(e,s,this);this._registrations.push(i)}getRegisteredInstances(t){for(const e of this._registrations)if(e.hasInstanceClassName(t))return e.instances.collection;return[]}dispatch(t,e,s,i){const n=new CustomEvent(t,{detail:e,bubble:!0===s,cancelable:!0===i});this.node.dispatchEvent(n)}listen(t,e,s){this._listeners[t]||(this._listeners[t]=[]);const i=this._listeners[t],n=new at(this.node,t,e,s);i.push(n),n.listen()}unlisten(t,e,s){if(!t){for(const t in this._listeners)this.unlisten(t);return}const i=this._listeners[t];if(!i)return;if(!e)return void i.forEach((e=>this.unlisten(t,e.closure)));const n=i.filter((t=>t.closure===e&&t.matchOptions(s)));n.forEach((t=>t.unlisten())),this._listeners[t]=i.filter((t=>-1===n.indexOf(t)))}listenClick(t){this.listen("click",this._handlingClick,t)}unlistenClick(t){this.unlisten("click",this._handlingClick,t)}handleClick(t){}set hash(e){t.getModule("hash").hash=e}get hash(){return t.getModule("hash").hash}listenHash(e,s){if(!this._hashes)return;0===this._hashes.length&&t.add("hash",this);const i=new ct(e,s);this._hashes=this._hashes.filter((t=>t.hash!==e)),this._hashes.push(i)}unlistenHash(e){this._hashes&&(this._hashes=this._hashes.filter((t=>t.hash!==e)),0===this._hashes.length&&t.remove("hash",this))}handleHash(t,e){if(this._hashes)for(const s of this._hashes)s.handle(t,e)}listenKey(t,e,s=!1,i=!1,n="down"){-1===this._keyListenerTypes.indexOf(n)&&(this.listen(`key${n}`,this.handlingKey),this._keyListenerTypes.push(n)),this._keys.push(new ht(n,t,e,s,i))}unlistenKey(t,e){this._keys=this._keys.filter((s=>s.code!==t||s.closure!==e)),this._keyListenerTypes.forEach((t=>{this._keys.some((e=>e.type===t))||this.unlisten(`key${t}`,this.handlingKey)}))}handleKey(t){for(const e of this._keys)e.handle(t)}get isEnabled(){return this._isEnabled}set isEnabled(t){this._isEnabled=t}get isRendering(){return this._isRendering}set isRendering(e){this._isRendering!==e&&(e?t.add("render",this):t.remove("render",this),this._isRendering=e)}render(){}request(e){this._nexts.push(e),t.getModule("render").request(this)}next(){const t=this._nexts.slice();this._nexts.length=0;for(const e of t)e&&e()}get isResizing(){return this._isResizing}set isResizing(e){this._isResizing!==e&&(e?(t.add("resize",this),this.resize()):t.remove("resize",this),this._isResizing=e)}resize(){}isBreakpoint(t){return!0==("string"==typeof t)?rt[t.toUpperCase()].test():t.test()}get isScrollLocked(){return this._isScrollLocked}set isScrollLocked(e){this._isScrollLocked!==e&&(e?t.add("lock",this):t.remove("lock",this),this._isScrollLocked=e)}get isLoading(){return this._isLoading}set isLoading(e){this._isLoading!==e&&(e?t.add("load",this):t.remove("load",this),this._isLoading=e)}load(){}get isSwappingFont(){return this._isSwappingFont}set isSwappingFont(e){this._isSwappingFont!==e&&(e?t.add("font-swap",this):t.remove("font-swap",this),this._isSwappingFont=e)}swapFont(){}get isMouseMoving(){return this._isMouseMoving}set isMouseMoving(e){this._isMouseMoving!==e&&(e?t.add("mouse-move",this):t.remove("mouse-move",this),this._isMouseMoving=e)}mouseMove(t){}examine(t){this.node.matches(this.registration.selector)?this.mutate(t):this._dispose()}mutate(t){}retrieveNodeId(t,e){if(t.id)return t.id;const s=V(`${this.id}-${e}`);return this.warn(`add id '${s}' to ${e}`),t.setAttribute("id",s),s}get isDisposed(){return this._isDisposed}_dispose(){this.debug(`dispose instance of ${this.registration.instanceClassName} on element [${this.element.id}]`),this.removeAttribute(this.registration.attribute),this.unlisten(),t.remove("hash",this),this._hashes=null,this._keys=null,this.isRendering=!1,this.isResizing=!1,this._nexts=null,t.getModule("render").nexts.remove(this),this.isScrollLocked=!1,this.isLoading=!1,this.isSwappingFont=!1,this.isMouseMoving=!1,this._emitter.dispose(),this._emitter=null,this._ascent.dispose(),this._ascent=null,this._descent.dispose(),this._descent=null,this.element.remove(this);for(const e of this._registrations)t.remove("register",e);this._registrations=null,this.registration.remove(this),this._isDisposed=!0,this.dispose()}dispose(){}emit(t,e){return this.element.emit(t,e)}addEmission(t,e){this._emitter.add(t,e)}removeEmission(t,e){this._emitter.remove(t,e)}ascend(t,e){return this.element.ascend(t,e)}addAscent(t,e){this._ascent.add(t,e)}removeAscent(t,e){this._ascent.remove(t,e)}descend(t,e){return this.element.descend(t,e)}addDescent(t,e){this._descent.add(t,e)}removeDescent(t,e){this._descent.remove(t,e)}get style(){return this.node.style}addClass(t){j(this.node,t)}removeClass(t){U(this.node,t)}hasClass(t){return F(this.node,t)}get classNames(){return G(this.node)}remove(){this.node.parentNode.removeChild(this.node)}setAttribute(t,e){this.node.setAttribute(t,e)}getAttribute(t){return this.node.getAttribute(t)}hasAttribute(t){return this.node.hasAttribute(t)}removeAttribute(t){this.node.removeAttribute(t)}setProperty(t,e){this.node.style.setProperty(t,e)}removeProperty(t){this.node.style.removeProperty(t)}focus(){this.node.focus()}blur(){this.node.blur()}focusClosest(){const t=this._focusClosest(this.node.parentNode);t&&t.focus()}_focusClosest(t){if(!t)return null;const e=[...z(t)];if(e.length<=1)return this._focusClosest(t.parentNode);{const t=e.indexOf(this.node);return e[t+(twindow.innerHeight&&s.move(e.bottom-window.innerHeight+50)}matches(t){return this.node.matches(t)}querySelector(t){return this.node.querySelector(t)}querySelectorAll(t){return m(this.node,t)}queryParentSelector(t){return f(this.node,t)}getRect(){const t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t}get isLegacy(){return t.isLegacy}}class ht{constructor(t,e,s,i,n){this.type=t,this.eventType=`key${t}`,this.keyCode=e,this.closure=s,this.preventDefault=!0===i,this.stopPropagation=!0===n}handle(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())}}class at{constructor(t,e,s,i){this._node=t,this._type=e,this._closure=s,this._options=i}get closure(){return this._closure}listen(){this._node.addEventListener(this._type,this._closure,this._options)}matchOptions(t=null){switch(!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((e=>this._options[e]===t[e])):return!0}return!1}unlisten(){this._node.removeEventListener(this._type,this._closure,this._options)}}class ct{constructor(t,e){this.hash=t,this.add=e}handle(t,e){this.hash===t&&this.add(e)}}const lt={DISCLOSE:p.event("disclose"),CONCEAL:p.event("conceal")},dt={RESET:p.emission("disclosure","reset"),ADDED:p.emission("disclosure","added"),RETRIEVE:p.emission("disclosure","retrieve"),REMOVED:p.emission("disclosure","removed"),GROUP:p.emission("disclosure","group"),UNGROUP:p.emission("disclosure","ungroup"),SPOTLIGHT:p.emission("disclosure","spotlight")};class ut extends ot{constructor(t,e,s,i){super(),this.type=t,this._selector=e,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}static get instanceClassName(){return"Disclosure"}init(){this.addDescent(dt.RESET,this.reset.bind(this)),this.addDescent(dt.GROUP,this.update.bind(this)),this.addDescent(dt.UNGROUP,this.update.bind(this)),this.addAscent(dt.SPOTLIGHT,this.disclose.bind(this)),this.register(`[aria-controls="${this.id}"]`,this.DisclosureButtonInstanceClass),this.ascend(dt.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()}get isEnabled(){return super.isEnabled}set isEnabled(t){this.isEnabled!==t&&(super.isEnabled=t,t?this.ascend(dt.ADDED):this.ascend(dt.REMOVED))}get isPristine(){return this._isPristine}get proxy(){const t=this,e=Object.assign(super.proxy,{disclose:t.disclose.bind(t),focus:t.focus.bind(t)});this.type.canConceal&&(e.conceal=t.conceal.bind(t));return Z(e,{get buttons(){return t.buttons.map((t=>t.proxy))},get group(){const e=t.group;return e?e.proxy:null},get isDisclosed(){return t.isDisclosed}})}get buttons(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)}update(){this.getGroup(),this.retrievePrimaries()}getGroup(){if(!this.disclosuresGroupInstanceClassName)return void(this._group=null);const t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}get group(){return this._group}disclose(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)}conceal(t,e=!0){return!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(dt.RESET),!0))}get isDisclosed(){return this._isDisclosed}set isDisclosed(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?lt.DISCLOSE:lt.CONCEAL,this.type),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(let e=0;et.isInitiallyDisclosed))}hasRetrieved(){return this._hasRetrieved}reset(){}toggle(t){if(this.type.canConceal)switch(!0){case!t:case this.isDisclosed:this.conceal(!1,!1);break;default:this.disclose()}else this.disclose()}get buttonHasFocus(){return this.buttons.some((t=>t.hasFocus))}get hasFocus(){return!!super.hasFocus||(!!this.buttonHasFocus||this.querySelectorAll(":focus").length>0)}focus(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()}get primaryButtons(){return this._primaryButtons}retrievePrimaries(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))}_retrievePrimaries(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}}retrieved(){}_spotlight(){this.disclose(),this.request((()=>{this.ascend(dt.SPOTLIGHT)}))}_electPrimaries(t){return t.filter((t=>t.canDisclose&&!this.node.contains(t.node)))}applyAbility(t=!1){const e=!this._primaryButtons.every((t=>t.isDisabled));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(dt.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(dt.ADDED),this.hash===this.id&&this._spotlight())))}dispose(){this._group=null,this._primaryButtons=null,super.dispose(),this.ascend(dt.REMOVED)}}class gt extends ot{constructor(t){super(),this.type=t,this.attributeName=t.ariaState?"aria-"+t.id:p.attr(t.id),this._canDisclose=!1}static get instanceClassName(){return"DisclosureButton"}get isPrimary(){return this.registration.creator.primaryButtons.includes(this)}get canDisclose(){return this._canDisclose}get isDisabled(){return this.type.canDisable&&this.hasAttribute("disabled")}init(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()}get proxy(){return Object.assign(super.proxy,{focus:this.focus.bind(this)})}handleClick(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)}mutate(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())}apply(t){this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((()=>{this._isApplying=!1})))}get isDisclosed(){return"true"===this.getAttribute(this.attributeName)}get isInitiallyDisclosed(){return this._isInitiallyDisclosed}focus(){super.focus(),this.scrollIntoView()}measure(t){const e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y}get dx(){return this._dx}get dy(){return this._dy}}const pt={PREVENT_CONCEAL:p.attr.selector("prevent-conceal"),GROUP:p.attr("group")};class mt extends ot{constructor(t,e){super(e),this.disclosureInstanceClassName=t,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}static get instanceClassName(){return"DisclosuresGroup"}init(){this.addAscent(dt.ADDED,this.update.bind(this)),this.addAscent(dt.RETRIEVE,this.retrieve.bind(this)),this.addAscent(dt.REMOVED,this.update.bind(this)),this.descend(dt.GROUP),this._isGrouped="false"!==this.getAttribute(pt.GROUP),this.update()}get proxy(){const t=this,e={set index(e){t.index=e},get index(){return t.index},get length(){return t.length},get current(){const e=t.current;return e?e.proxy:null},get members(){return t.members.map((t=>t.proxy))},get hasFocus(){return t.hasFocus},set isGrouped(e){t.isGrouped=e},get isGrouped(){return t.isGrouped}};return Z(super.proxy,e)}validate(t){return!0}getMembers(){const t=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=t.filter(this.validate.bind(this)).filter((t=>t.isEnabled));t.filter((t=>!this._members.includes(t))).forEach((t=>t.conceal()))}retrieve(t=!1){this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))}_retrieve(){if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.hash)for(let t=0;t{this.ascend(dt.SPOTLIGHT)})),t}for(let t=0;t=this.length||t===this._index)){this._index=t;for(let e=0;ee.map((e=>p.selector(`${t}--${e}`))).join(","),Nt=`${p.selector("responsive-img")}, ${Tt("responsive-img",xt)}, ${p.selector("responsive-vid")}, ${Tt("responsive-vid",["16x9","4x3","1x1"])}`,Rt={RATIO:`${p.selector("ratio")}, ${Tt("ratio",xt)}, ${Nt}`},Dt=window[s];const Ot={TOP:p.selector("placement--top"),RIGHT:p.selector("placement--right"),BOTTOM:p.selector("placement--bottom"),LEFT:p.selector("placement--left")},St={START:p.selector("placement--start"),CENTER:p.selector("placement--center"),END:p.selector("placement--end")},Lt={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},kt={START:"align_start",CENTER:"align_center",END:"align_end"},Pt={AUTO:"placement_auto",MANUAL:"placement_manual"};et.core={Instance:ot,Breakpoints:rt,KeyCodes:w,Disclosure:ut,DisclosureButton:gt,DisclosuresGroup:mt,DisclosureType:ft,DisclosureEvent:lt,DisclosureSelector:pt,DisclosureEmission:dt,Collapse:class extends ut{constructor(){super(ft.EXPAND,bt.COLLAPSE,_t,"CollapsesGroup")}static get instanceClassName(){return"Collapse"}init(){super.init(),this.listen("transitionend",this.endCollapsing.bind(this))}endCollapsing(t){this._isCollpasing&&(this._timeout&&clearTimeout(this._timeout),this._timeout=null,this._isCollpasing=!1,this.removeClass(bt.COLLAPSING),this.isDisclosed||this.isLegacy&&(this.style.maxHeight=""))}unbound(){this.isLegacy&&(this.style.maxHeight="none")}disclose(t){if(!0===this.isDisclosed||!this.isEnabled)return!1;this.unbound(),this.collapsing((()=>super.disclose(t)))}conceal(t,e){if(!1===this.isDisclosed)return!1;this.collapsing((()=>super.conceal(t,e)))}collapsing(t){this._isCollpasing=!0,this._timeout&&clearTimeout(this._timeout),this.addClass(bt.COLLAPSING),this.adjust(),this.request((()=>{t(),this._timeout=setTimeout(this.endCollapsing.bind(this),500)}))}adjust(){this.setProperty("--collapser","none");const t=this.node.offsetHeight;this.setProperty("--collapse",-t+"px"),this.setProperty("--collapser","")}reset(){this.isPristine||(this.isDisclosed=!1)}_electPrimaries(t){const e=this.element.parent.instances.map((t=>t.collapsePrimary)).filter((e=>void 0!==e&&t.indexOf(e)>-1));if(1===e.length)return e;if(1===(t=super._electPrimaries(t)).length)return t;const s=t.filter((t=>t.dy>=0));if(s.length>0&&(t=s),1===t.length)return t;const i=Math.min(...t.map((t=>t.dy))),n=t.filter((t=>t.dy===i));return n.length>0&&(t=n),1===t.length||t.sort(((t,e)=>Math.abs(e.dx)-Math.abs(t.dx))),t}},CollapseButton:_t,CollapsesGroup:class extends mt{constructor(){super("Collapse")}static get instanceClassName(){return"CollapsesGroup"}get canUngroup(){return!0}},CollapseSelector:bt,RootSelector:{ROOT:":root"},RootEmission:E,Equisized:class extends ot{static get instanceClassName(){return"Equisized"}init(){this.ascend(vt.CHANGE)}measure(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width}adjust(t){this.isLegacy&&(this.style.width=`${t}px`)}dispose(){this.ascend(vt.CHANGE)}},EquisizedEmission:vt,Toggle:class extends ot{static get instanceClassName(){return"Toggle"}init(){this.pressed="true"===this.pressed,this.listenClick()}handleClick(){this.toggle()}toggle(){this.pressed="true"!==this.pressed}get pressed(){return this.getAttribute("aria-pressed")}set pressed(t){this.setAttribute("aria-pressed",t?"true":"false"),this.dispatch(yt.TOGGLE,t)}get proxy(){const t=this,e=Object.assign(super.proxy,{toggle:t.toggle.bind(t)});return Z(e,{get pressed(){return t.pressed},set pressed(e){t.pressed=e}})}},EquisizedsGroup:class extends ot{static get instanceClassName(){return"EquisizedsGroup"}init(){this.isResizing=!0,this.isLoading=!0,this.addAscent(vt.CHANGE,this.resize.bind(this))}load(){this.resize()}resize(){const t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");const e=Math.max(...t.map((t=>t.measure())));this.isLegacy?t.forEach((t=>t.adjust(e))):this.style.setProperty("--equisized-width",`${e}px`)}},InjectSvg:class extends ot{static get instanceClassName(){return"InjectSvg"}init(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()}get proxy(){const t=this;return Object.assign(super.proxy,{replace:t.replace.bind(t),restore:t.restore.bind(t)})}fetch(){this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((t=>t.text())).then((t=>{const e=(new DOMParser).parseFromString(t,"text/html");this.svg=e.querySelector("svg"),this.svg&&this.replace()})))}replace(){if(!this.svg)return void this.fetch();this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);let t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-',`id="${t}-artwork-`),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-',`"#${t}-artwork-`))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,s;e=this.svg,s={"aria-hidden":!0,focusable:!1},Object.keys(s).forEach((t=>e.setAttribute(t,s[t]))),this.node.replaceChild(this.svg,this.img)}restore(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))}},InjectSvgSelector:Et,Artwork:class extends ot{static get instanceClassName(){return"Artwork"}init(){this.isLegacy&&this.replace()}get proxy(){return Object.assign(super.proxy,{replace:this.replace.bind(this)})}fetch(){this.xlink=this.node.getAttribute("href");const t=this.xlink.split("#");this.svgUrl=t[0],this.svgName=t[1];const e=new XMLHttpRequest;e.onload=()=>{const t=(new DOMParser).parseFromString(e.responseText,"text/html");this.realSvgContent=t.getElementById(this.svgName),this.realSvgContent&&("symbol"===this.realSvgContent.tagName?(this.use=t.querySelector('use[href="#'+this.svgName+'"]'),this.use&&this.node.parentNode.insertBefore(this.use,this.node)):this.realSvgContent.classList.add(this.node.classList),this.replace())},e.open("GET",this.svgUrl),e.send()}replace(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()}},ArtworkSelector:wt,AssessFile:class extends ot{static get instanceClassName(){return"AssessFile"}init(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(At.ADDED,this.update.bind(this)),this.addDescent(At.ADDED,this.update.bind(this))}getFileLength(){void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((t=>{this.length=t.headers.get("content-length")||-1,-1===this.length&&a.warn("File size unknown: "+this.href+'\nUnable to get HTTP header: "content-length"'),this.gather()})):this.length=-1}mutate(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())}gather(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){const t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()}update(){this.details&&(this.descend(At.UPDATE,this.details),this.ascend(At.UPDATE,this.details))}getLang(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)}parseExtension(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")}getLangDisplayName(t){if(this.isLegacy)return t;const e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)}bytesToSize(t){if(-1===t)return null;let e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(p.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);const s=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===s)return`${t} ${e[s]}`;const i=t/1e3**s,n=Math.round(100*(i+Number.EPSILON))/100;return`${String(n).replace(".",",")} ${e[s]}`}},AssessDetail:class extends ot{static get instanceClassName(){return"AssessDetail"}init(){this.addDescent(At.UPDATE,this.update.bind(this)),this.ascend(At.ADDED)}update(t){this.node.innerHTML=t.join(" - ")}},AssessEmission:At,AssessSelector:Ct,Ratio:class extends ot{static get instanceClassName(){return"Ratio"}init(){if(!Dt.internals.support.supportAspectRatio()){this.ratio=16/9;for(const t in this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){const e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}}render(){this.getRect().width!==this.currentWidth&&this.update()}update(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"}},RatioSelector:Rt,Placement:class extends ot{constructor(t=Pt.AUTO,e=[Lt.BOTTOM,Lt.TOP,Lt.LEFT,Lt.RIGHT],s=[kt.CENTER,kt.START,kt.END],i=16){super(),this._mode=t,this._places=e,this._aligns=s,this._safeAreaMargin=i,this._isShown=!1}static get instanceClassName(){return"Placement"}init(){this.isResizing=!0}get proxy(){const t=this,e=Object.assign(super.proxy,{show:t.show.bind(t),hide:t.hide.bind(t)});return Z(e,{get mode(){return t.mode},set mode(e){t.mode=e},get place(){return t.place},set place(e){t.place=e},get align(){return t.align},set align(e){t.align=e},get isShown(){return t.isShown},set isShown(e){t.isShown=e}})}get mode(){return this._mode}set mode(t){this._mode=t}get place(){return this._place}set place(t){if(this._place!==t){switch(this._place){case Lt.TOP:this.removeClass(Ot.TOP);break;case Lt.RIGHT:this.removeClass(Ot.RIGHT);break;case Lt.BOTTOM:this.removeClass(Ot.BOTTOM);break;case Lt.LEFT:this.removeClass(Ot.LEFT)}switch(this._place=t,this._place){case Lt.TOP:this.addClass(Ot.TOP);break;case Lt.RIGHT:this.addClass(Ot.RIGHT);break;case Lt.BOTTOM:this.addClass(Ot.BOTTOM);break;case Lt.LEFT:this.addClass(Ot.LEFT)}}}get align(){return this._align}set align(t){if(this._align!==t){switch(this._align){case kt.START:this.removeClass(St.START);break;case kt.CENTER:this.removeClass(St.CENTER);break;case kt.END:this.removeClass(St.END)}switch(this._align=t,this._align){case kt.START:this.addClass(St.START);break;case kt.CENTER:this.addClass(St.CENTER);break;case kt.END:this.addClass(St.END)}}}show(){this.isShown=!0}hide(){this.isShown=!1}get isShown(){return this._isShown}set isShown(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)}setReferent(t){this._referent=t}resize(){this.safeArea={top:this._safeAreaMargin,right:window.innerWidth-this._safeAreaMargin,bottom:window.innerHeight-this._safeAreaMargin,left:this._safeAreaMargin,center:.5*window.innerWidth,middle:.5*window.innerHeight}}render(){if(!this._referent)return;if(this.rect=this.getRect(),this.referentRect=this._referent.getRect(),this.mode===Pt.AUTO)switch(this.place=this.getPlace(),this.place){case Lt.TOP:case Lt.BOTTOM:this.align=this.getHorizontalAlign();break;case Lt.LEFT:case Lt.RIGHT:this.align=this.getVerticalAlign()}let t,e;switch(this.place){case Lt.TOP:e=this.referentRect.top-this.rect.height;break;case Lt.RIGHT:t=this.referentRect.right;break;case Lt.BOTTOM:e=this.referentRect.bottom;break;case Lt.LEFT:t=this.referentRect.left-this.rect.width}switch(this.place){case Lt.TOP:case Lt.BOTTOM:switch(this.align){case kt.CENTER:t=this.referentRect.center-.5*this.rect.width;break;case kt.START:t=this.referentRect.left;break;case kt.END:t=this.referentRect.right-this.rect.width}break;case Lt.RIGHT:case Lt.LEFT:switch(this.align){case kt.CENTER:e=this.referentRect.middle-.5*this.rect.height;break;case kt.START:e=this.referentRect.top;break;case kt.END:e=this.referentRect.bottom-this.rect.height}}this._x===t&&this._y===e||(this._x=t+.5|0,this._y=e+.5|0,this.node.style.transform=`translate(${this._x}px,${this._y}px)`)}getPlace(){for(const t of this._places)switch(t){case Lt.TOP:if(this.referentRect.top-this.rect.height>this.safeArea.top)return Lt.TOP;break;case Lt.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return Lt.LEFT}return this._places[0]}getHorizontalAlign(){for(const t of this._aligns)switch(t){case kt.CENTER:if(this.referentRect.center-.5*this.rect.width>this.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return kt.END}return this._aligns[0]}getVerticalAlign(){for(const t of this._aligns)switch(t){case kt.CENTER:if(this.referentRect.middle-.5*this.rect.height>this.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return kt.END}return this._aligns[0]}dispose(){this._referent=null,super.dispose()}},PlacementReferent:class extends ot{constructor(){super(),this._isShown=!1}static get instanceClassName(){return"PlacementReferent"}init(){this.registration.creator.setReferent(this),this._placement=this.registration.creator}get placement(){return this._placement}get isShown(){return this._isShown}set isShown(t){this._isShown!==t&&this.isEnabled&&(this._isShown=t,t?this.registration.creator.show():this.registration.creator.hide())}show(){this.isShown=!0}hide(){this.isShown=!1}},PlacementAlign:kt,PlacementPosition:Lt,PlacementMode:Pt},et.internals.register(et.core.CollapseSelector.COLLAPSE,et.core.Collapse),et.internals.register(et.core.InjectSvgSelector.INJECT_SVG,et.core.InjectSvg),et.internals.register(et.core.RatioSelector.RATIO,et.core.Ratio),et.internals.register(et.core.AssessSelector.ASSESS_FILE,et.core.AssessFile),et.internals.register(et.core.AssessSelector.DETAIL,et.core.AssessDetail); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const t=new class{constructor(){this.modules={}}create(t){const e=new t;this.modules[e.type]=e}getModule(t){return this.modules[t]}add(t,e){this.modules[t].add(e)}remove(t,e){this.modules[t].remove(e)}get isActive(){return this._isActive}set isActive(t){if(t===this._isActive)return;this._isActive=t;const e=Object.keys(this.modules).map((t=>this.modules[t]));if(t)for(const t of e)t.activate();else for(const t of e)t.deactivate()}get isLegacy(){return this._isLegacy}set isLegacy(t){t!==this._isLegacy&&(this._isLegacy=t)}},e="fr",s="dsfr",i="@gouvfr",n="1.13.0";class r{constructor(t,e,s,i){switch(this.level=t,this.light=e,this.dark=s,i){case"warn":this.logger=console.warn;break;case"error":this.logger=console.error;break;default:this.logger=console.log}}log(...t){const e=new o(s);for(const s of t)e.add(s);this.print(e)}print(t){t.setColor(this.color),this.logger.apply(console,t.getMessage())}get color(){return window.matchMedia("(prefers-color-scheme: dark)").matches?this.dark:this.light}}class o{constructor(t){this.inputs=["%c"],this.styles=["font-family:Marianne","line-height: 1.5"],this.objects=[],t&&this.add(`${t} :`)}add(t){switch(typeof t){case"object":case"function":this.inputs.push("%o "),this.objects.push(t);break;default:this.inputs.push(`${t} `)}}setColor(t){this.styles.push(`color:${t}`)}getMessage(){return[this.inputs.join(""),this.styles.join(";"),...this.objects]}}const h={log:new r(0,"#616161","#989898"),debug:new r(1,"#000091","#8B8BFF"),info:new r(2,"#007c3b","#00ed70"),warn:new r(3,"#ba4500","#fa5c00","warn"),error:new r(4,"#D80600","#FF4641","error")};const a=new class{constructor(){this.level=2;for(const t in h){const e=h[t];this[t]=(...t)=>{this.level<=e.level&&e.log.apply(e,t)},this[t].print=e.print.bind(e)}}state(){const e=new o;e.add(t),this.log.print(e)}tree(){const e=t.getModule("stage");if(!e)return;const s=new o;this._branch(e.root,0,s),this.log.print(s)}_branch(t,e,s){let i="";if(e>0){let t="";for(let s=0;s{"loading"!==document.readyState?window.requestAnimationFrame(t):document.addEventListener("DOMContentLoaded",t)},l={AUTO:"auto",MANUAL:"manual",RUNTIME:"runtime",LOADED:"loaded",VUE:"vue",ANGULAR:"angular",REACT:"react"},d=(t,e,s=null,i=!0,n=!1)=>{const r={bubbles:!0===i,cancelable:!0===n};s&&(r.detail=s);const o=new CustomEvent(e,r);t.dispatchEvent(o)},u=(t,e=null,s=!1,i=!1)=>d(document.documentElement,t,e,s,i),g=t=>`${e}-${t}`;g.selector=(t,e)=>(void 0===e&&(e="."),`${e}${g(t)}`),(g.attr=t=>`data-${g(t)}`).selector=(t,e)=>{let s=g.attr(t);return void 0!==e&&(s+=`="${e}"`),`[${s}]`},g.event=t=>`${s}.${t}`,g.emission=(t,e)=>`emission:${t}.${e}`;const p={READY:g.event("ready"),START:g.event("start"),STOP:g.event("stop"),RENDER:g.event("render"),RESIZE:g.event("resize"),BREAKPOINT:g.event("breakpoint"),SCROLL_LOCK:g.event("scroll-lock"),SCROLL_UNLOCK:g.event("scroll-unlock")};const m=new class{constructor(){this._mode=l.AUTO,this.isStarted=!1,this.starting=this.start.bind(this),this.preventManipulation=!1}configure(t={},e,s){this.startCallback=e;const i=t.production&&(!s||"false"!==s.production);switch(!0){case s&&!isNaN(s.level):a.level=Number(s.level);break;case s&&s.verbose&&("true"===s.verbose||1===s.verbose):a.level=0;break;case i:a.level=999;break;case t.verbose:a.level=0}a.info(`version ${n}`),u(p.READY),this.mode=t.mode||l.AUTO}set mode(t){switch(t){case l.AUTO:this.preventManipulation=!1,e=this.starting,c(e);break;case l.LOADED:this.preventManipulation=!1,c(this.starting);break;case l.RUNTIME:this.preventManipulation=!1,this.start();break;case l.MANUAL:this.preventManipulation=!1;break;case l.VUE:case l.ANGULAR:case l.REACT:this.preventManipulation=!0;break;default:return void a.error("Illegal mode")}var e;this._mode=t,a.info(`mode set to ${t}`)}get mode(){return this._mode}start(){a.info("start"),this.startCallback()}};class f{constructor(){this._collection=[]}forEach(t){this._collection.forEach(t)}map(t){return this._collection.map(t)}get length(){return this._collection.length}add(t){return!(this._collection.indexOf(t)>-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)}remove(t){const e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()}execute(...t){for(const e of this._collection)e&&e.apply(null,t)}clear(){this._collection.length=0}clone(){const t=new f;return t._collection=this._collection.slice(),t}get collection(){return this._collection}}class _ extends f{constructor(t){super(),this.type=t,this.isActive=!1}activate(){}deactivate(){}}const b=(t,e)=>Array.prototype.slice.call(t.querySelectorAll(e)),v=(t,e)=>{const s=t.parentElement;return s.matches(e)?s:s===document.documentElement?null:v(s,e)};class y{constructor(t,e,s){this.selector=t,this.InstanceClass=e,this.creator=s,this.instances=new f,this.isIntroduced=!1,this._instanceClassName=this.InstanceClass.instanceClassName,this._instanceClassNames=this.getInstanceClassNames(this.InstanceClass),this._property=this._instanceClassName.substring(0,1).toLowerCase()+this._instanceClassName.substring(1);const i=this._instanceClassName.replace(/[^a-zA-Z0-9]+/g,"-").replace(/([A-Z]+)([A-Z][a-z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([0-9])([^0-9])/g,"$1-$2").replace(/([^0-9])([0-9])/g,"$1-$2").toLowerCase();this._attribute=g.attr(`js-${i}`)}getInstanceClassNames(t){const e=Object.getPrototypeOf(t);return e&&"Instance"!==e.instanceClassName?[...this.getInstanceClassNames(e),t.instanceClassName]:[t.instanceClassName]}hasInstanceClassName(t){return this._instanceClassNames.indexOf(t)>-1}introduce(){this.isIntroduced||(this.isIntroduced=!0,t.getModule("stage").parse(document.documentElement,this))}parse(t,e){const s=[];return t.matches&&t.matches(this.selector)&&s.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&s.push.apply(s,b(t,this.selector)),s}create(t){if(!t.node.matches(this.selector))return;const e=new this.InstanceClass;return this.instances.add(e),e}remove(t){this.instances.remove(t)}dispose(){const t=this.instances.collection;for(let e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null}get instanceClassName(){return this._instanceClassName}get instanceClassNames(){return this._instanceClassNames}get property(){return this._property}get attribute(){return this._attribute}}class E extends _{constructor(){super("register")}register(e,s,i){const n=new y(e,s,i);return this.add(n),t.isActive&&n.introduce(),n}activate(){for(const t of this.collection)t.introduce()}remove(t){t.dispose(),super.remove(t)}}let w=0;class C{constructor(t,e){e?this.id=e:(w++,this.id=w),this.node=t,this.attributeNames=[],this.instances=[],this._children=[],this._parent=null,this._projects=[]}get proxy(){const t=this;if(!this._proxy){this._proxy={id:this.id,get parent(){return t.parent?t.parent.proxy:null},get children(){return t.children.map((t=>t.proxy))}};for(const t of this.instances)this._proxy[t.registration.property]=t.proxy}return this._proxy}get html(){if(!this.node||!this.node.outerHTML)return"";const t=this.node.outerHTML.indexOf(">");return this.node.outerHTML.substring(0,t+1)}project(t){-1===this._projects.indexOf(t)&&this._projects.push(t)}populate(){const t=this._projects.slice();this._projects.length=0;for(const e of t)this.create(e)}create(t){if(this.hasInstance(t.instanceClassName))return;a.debug(`create instance of ${t.instanceClassName} on element [${this.id}]`);const e=t.create(this);this.instances.push(e),e._config(this,t),this._proxy&&(this._proxy[t.property]=e.proxy)}remove(t){const e=this.instances.indexOf(t);e>-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]}get parent(){return this._parent}get ascendants(){return[this.parent,...this.parent.ascendants]}get children(){return this._children}get descendants(){const t=[...this._children];return this._children.forEach((e=>t.push(...e.descendants))),t}addChild(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){const e=this.instances[t];e&&e._dispose()}this.instances.length=0,t.remove("stage",this),this.parent.removeChild(this),this._children.length=0,a.debug(`remove element [${this.id}] ${this.html}`)}prepare(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)}examine(){const t=this.attributeNames.slice();this.attributeNames.length=0;for(let e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)}}const A={CLICK:g.emission("root","click"),KEYDOWN:g.emission("root","keydown"),KEYUP:g.emission("root","keyup")},R={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},T=t=>Object.values(R).filter((e=>e.value===t))[0];class x extends C{constructor(){super(document.documentElement,"root"),this.node.setAttribute(g.attr("js"),!0),this.listen()}listen(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})}click(t){this.emit(A.CLICK,t.target)}keydown(t){this.emit(A.KEYDOWN,T(t.keyCode))}keyup(t){this.emit(A.KEYUP,T(t.keyCode))}}class N extends _{constructor(){super("stage"),this.root=new x,super.add(this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}hasElement(t){for(const e of this.collection)if(e.node===t)return!0;return!1}getElement(t){for(const e of this.collection)if(e.node===t)return e;const e=new C(t);return this.add(e),a.debug(`add element [${e.id}] ${e.html}`),e}getProxy(t){if(!this.hasElement(t))return null;return this.getElement(t).proxy}add(t){super.add(t),this.put(t,this.root)}put(t,e){let s=0;for(let i=e.children.length-1;i>-1;i--){const n=e.children[i],r=t.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(n),t.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){s=i+1;break}}e.addChild(t,s)}activate(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})}deactivate(){this.observer.disconnect()}mutate(t){const e=[];t.forEach((t=>{switch(t.type){case"childList":t.removedNodes.forEach((t=>this.dispose(t))),t.addedNodes.forEach((t=>this.parse(t)));break;case"attributes":if(this.hasElement(t.target)){const s=this.getElement(t.target);s.prepare(t.attributeName),-1===e.indexOf(s)&&e.push(s);for(const t of s.descendants)-1===e.indexOf(t)&&e.push(t)}-1===this.modifications.indexOf(t.target)&&this.modifications.push(t.target)}})),e.forEach((t=>t.examine())),this.modifications.length&&!this.willModify&&(this.willModify=!0,window.requestAnimationFrame(this.modifying))}modify(){this.willModify=!1;const t=this.modifications.slice();this.modifications.length=0;for(const e of t)document.documentElement.contains(e)&&this.parse(e)}dispose(t){const e=[];this.forEach((s=>{t.contains(s.node)&&e.push(s)}));for(const t of e)t.dispose(),this.remove(t)}parse(e,s,i){const n=s?[s]:t.getModule("register").collection,r=[];for(const t of n){const s=t.parse(e,i);for(const e of s){const s=this.getElement(e);s.project(t),-1===r.indexOf(s)&&r.push(s)}}for(const t of r)t.populate()}}class D extends _{constructor(){super("render"),this.rendering=this.render.bind(this),this.nexts=new f}activate(){window.requestAnimationFrame(this.rendering)}request(t){this.nexts.add(t)}render(){if(!t.isActive)return;if(window.requestAnimationFrame(this.rendering),this.forEach((t=>t.render())),!this.nexts.length)return;const e=this.nexts.clone();this.nexts.clear(),e.forEach((t=>t.next())),u(p.RENDER)}}class O extends _{constructor(){super("resize"),this.requireResize=!1,this.resizing=this.resize.bind(this);const t=this.request.bind(this);document.fonts&&document.fonts.ready.then(t),window.addEventListener("resize",t),window.addEventListener("orientationchange",t)}activate(){this.request()}request(){this.requireResize||(this.requireResize=!0,window.requestAnimationFrame(this.resizing))}resize(){this.requireResize&&(this.forEach((t=>t.resize())),this.requireResize=!1,u(p.RESIZE))}}class S extends _{constructor(){super("lock"),this._isLocked=!1,this._scrollY=0,this.onPopulate=this.lock.bind(this),this.onEmpty=this.unlock.bind(this)}get isLocked(){return this._isLocked}lock(){if(!this._isLocked){this._isLocked=!0,this._scrollY=window.scrollY;const t=window.innerWidth-document.documentElement.clientWidth;document.documentElement.setAttribute(g.attr("scrolling"),"false"),document.body.style.top=-this._scrollY+"px",this.behavior=getComputedStyle(document.documentElement).getPropertyValue("scroll-behavior"),"smooth"===this.behavior&&(document.documentElement.style.scrollBehavior="auto"),t>0&&document.documentElement.style.setProperty("--scrollbar-width",`${t}px`),u(p.SCROLL_LOCK)}}unlock(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(g.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"),u(p.SCROLL_UNLOCK))}move(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)}}class L extends _{constructor(){super("load"),this.loading=this.load.bind(this)}activate(){window.addEventListener("load",this.loading)}load(){this.forEach((t=>t.load()))}}const k=["Marianne","Spectral"];class P extends _{constructor(){super("font-swap"),this.swapping=this.swap.bind(this)}activate(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)}swap(){const t=k.filter((t=>document.fonts.check(`16px ${t}`)));this.forEach((e=>e.swapFont(t)))}}class I extends _{constructor(){super("mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}listen(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))}unlisten(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))}request(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))}move(){this.requireMove&&(this.forEach((t=>t.mouseMove(this.point))),this.requireMove=!1)}}class M extends _{constructor(){super("hash"),this.handling=this.handle.bind(this),this.getLocationHash()}activate(){window.addEventListener("hashchange",this.handling)}deactivate(){window.removeEventListener("hashchange",this.handling)}_sanitize(t){return"#"===t.charAt(0)?t.substring(1):t}set hash(t){const e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)}get hash(){return this._hash}getLocationHash(){const t=window.location.hash;this._hash=this._sanitize(t)}handle(t){this.getLocationHash(),this.forEach((e=>e.handleHash(this._hash,t)))}}const $=new class{constructor(){t.create(E),t.create(N),t.create(D),t.create(O),t.create(S),t.create(L),t.create(P),t.create(I),t.create(M);const e=t.getModule("register");this.register=e.register.bind(e)}get isActive(){return t.isActive}start(){a.debug("START"),t.isActive=!0,u(p.START)}stop(){a.debug("STOP"),t.isActive=!1,u(p.STOP)}};const G=t=>{switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},q=new class{getColor(t,e,s,i={}){const n=`--${t}-${e}-${s}${G(i)}`;return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null}},U=t=>"."===t.charAt(0)?t.substr(1):t,j=t=>{switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},F=(t,e,s)=>{e=U(e);const i=j(t),n=i.indexOf(e);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(e),t.className=i.join(" ")},z=(t,e)=>F(t,e),H=(t,e)=>F(t,e,!0),B=(t,e)=>j(t).indexOf(U(e))>-1,K=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),V=t=>t.querySelectorAll(K);let Y=0;const W=t=>{if(!document.getElementById(t))return t;let e=!0;const s=t;for(;e;)Y++,t=`${s}-${Y}`,e=document.getElementById(t);return t},X={addClass:z,hasClass:B,removeClass:H,queryParentSelector:v,querySelectorAllArray:b,queryActions:V,uniqueId:W,dispatch:d};const Z={DataURISVG:class{constructor(t=0,e=0){this._width=t,this._height=e,this._content=""}get width(){return this._width}set width(t){this._width=t}get height(){return this._height}set height(t){this._height=t}get content(){return this._content}set content(t){this._content=t}getDataURI(t=!1){let e=`${this._content}`;return e=e.replace(/#/gi,"%23"),t&&(e=e.replace(//gi,"%3E"),e=e.replace(/"/gi,"'"),e=e.replace(/{/gi,"%7B"),e=e.replace(/}/gi,"%7D")),`data:image/svg+xml;charset=utf8,${e}`}}},J={supportLocalStorage:()=>{try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:()=>!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")},Q={TransitionSelector:{NONE:g.selector("transition-none")}},tt=(t,...e)=>(e.forEach((e=>{const s=Object.keys(e).reduce(((t,s)=>(t[s]=Object.getOwnPropertyDescriptor(e,s),t)),{});Object.getOwnPropertySymbols(e).forEach((t=>{const i=Object.getOwnPropertyDescriptor(e,t);i.enumerable&&(s[t]=i)})),Object.defineProperties(t,s)})),t),et={completeAssign:tt},st={},it={};Object.defineProperty(it,"isLegacy",{get:()=>t.isLegacy}),it.setLegacy=()=>{t.isLegacy=!0},st.legacy=it,st.dom=X,st.image=Z,st.support=J,st.motion=Q,st.property=et,st.ns=g,st.register=$.register,st.state=t,st.query=(t=>{if(t&&t.search){const t=new URLSearchParams(window.location.search).entries();return Object.fromEntries(t)}return null})(window.location),Object.defineProperty(st,"preventManipulation",{get:()=>m.preventManipulation}),Object.defineProperty(st,"stage",{get:()=>t.getModule("stage")});const nt=e=>t.getModule("stage").getProxy(e);nt.version=n,nt.prefix=e,nt.organisation=i,nt.Modes=l,Object.defineProperty(nt,"mode",{set:t=>{m.mode=t},get:()=>m.mode}),nt.internals=st,nt.version=n,nt.start=$.start,nt.stop=$.stop,nt.inspector=a,nt.colors=q;const rt=window[s];nt.internals.configuration=rt,m.configure(rt,nt.start,nt.internals.query),window[s]=nt;class ot{constructor(){this.emissions={}}add(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)}remove(t,e){if(this.emissions[t])if(e){const s=this.emissions[t].indexOf(e);s>-1&&this.emissions[t].splice(s)}else delete this.emissions[t]}emit(t,e){if(!this.emissions[t])return[];const s=[];for(const i of this.emissions[t])i&&s.push(i(e));return s}dispose(){this.emissions=null}}class ht{constructor(t,e){this.id=t,this.minWidth=e}test(){return window.matchMedia(`(min-width: ${this.minWidth}em)`).matches}}const at={XS:new ht("xs",0),SM:new ht("sm",36),MD:new ht("md",48),LG:new ht("lg",62),XL:new ht("xl",78)},ct={CLICK:g.event("click")};class lt{constructor(t=!0){this.jsAttribute=t,this._isRendering=!1,this._isResizing=!1,this._isScrollLocked=!1,this._isLoading=!1,this._isSwappingFont=!1,this._isEnabled=!0,this._isDisposed=!1,this._listeners={},this._handlingClick=this._handleClick.bind(this),this._hashes=[],this._hash="",this._keyListenerTypes=[],this._keys=[],this.handlingKey=this.handleKey.bind(this),this._emitter=new ot,this._ascent=new ot,this._descent=new ot,this._registrations=[],this._nexts=[]}static get instanceClassName(){return"Instance"}_config(t,e){this.element=t,this.registration=e,this.node=t.node,this.id=t.node.id,this.jsAttribute&&this.setAttribute(e.attribute,!0),this.init()}init(){}get proxy(){const t=this;return tt({render:()=>t.render(),resize:()=>t.resize()},{get node(){return t.node},get isEnabled(){return t.isEnabled},set isEnabled(e){t.isEnabled=e}})}log(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.log.apply(a,t)}debug(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.debug.apply(a,t)}info(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.info.apply(a,t)}warn(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.warn.apply(a,t)}error(...t){t.unshift(`${this.registration.instanceClassName} #${this.id} - `),a.error.apply(a,t)}register(e,s){const i=t.getModule("register").register(e,s,this);this._registrations.push(i)}getRegisteredInstances(t){for(const e of this._registrations)if(e.hasInstanceClassName(t))return e.instances.collection;return[]}dispatch(t,e=null,s=!0,i=!1){d(this.node,t,e,s,i)}listen(t,e,s){this._listeners[t]||(this._listeners[t]=[]);const i=this._listeners[t],n=new ut(this.node,t,e,s);i.push(n),n.listen()}unlisten(t,e,s){if(!t){for(const t in this._listeners)this.unlisten(t);return}const i=this._listeners[t];if(!i)return;if(!e)return void i.forEach((e=>this.unlisten(t,e.closure)));const n=i.filter((t=>t.closure===e&&t.matchOptions(s)));n.forEach((t=>t.unlisten())),this._listeners[t]=i.filter((t=>-1===n.indexOf(t)))}listenClick(t){this.listen("click",this._handlingClick,t)}unlistenClick(t){this.unlisten("click",this._handlingClick,t)}_handleClick(t){this.handleClick(t),this.dispatch(ct.CLICK,this)}handleClick(t){}set hash(e){t.getModule("hash").hash=e}get hash(){return t.getModule("hash").hash}listenHash(e,s){if(!this._hashes)return;0===this._hashes.length&&t.add("hash",this);const i=new gt(e,s);this._hashes=this._hashes.filter((t=>t.hash!==e)),this._hashes.push(i)}unlistenHash(e){this._hashes&&(this._hashes=this._hashes.filter((t=>t.hash!==e)),0===this._hashes.length&&t.remove("hash",this))}handleHash(t,e){if(this._hashes)for(const s of this._hashes)s.handle(t,e)}listenKey(t,e,s=!1,i=!1,n="down"){-1===this._keyListenerTypes.indexOf(n)&&(this.listen(`key${n}`,this.handlingKey),this._keyListenerTypes.push(n)),this._keys.push(new dt(n,t,e,s,i))}unlistenKey(t,e){this._keys=this._keys.filter((s=>s.code!==t||s.closure!==e)),this._keyListenerTypes.forEach((t=>{this._keys.some((e=>e.type===t))||this.unlisten(`key${t}`,this.handlingKey)}))}handleKey(t){for(const e of this._keys)e.handle(t)}get isEnabled(){return this._isEnabled}set isEnabled(t){this._isEnabled=t}get isRendering(){return this._isRendering}set isRendering(e){this._isRendering!==e&&(e?t.add("render",this):t.remove("render",this),this._isRendering=e)}render(){}request(e){this._nexts.push(e),t.getModule("render").request(this)}next(){const t=this._nexts.slice();this._nexts.length=0;for(const e of t)e&&e()}get isResizing(){return this._isResizing}set isResizing(e){this._isResizing!==e&&(e?(t.add("resize",this),this.resize()):t.remove("resize",this),this._isResizing=e)}resize(){}isBreakpoint(t){return!0==("string"==typeof t)?at[t.toUpperCase()].test():t.test()}get isScrollLocked(){return this._isScrollLocked}set isScrollLocked(e){this._isScrollLocked!==e&&(e?t.add("lock",this):t.remove("lock",this),this._isScrollLocked=e)}get isLoading(){return this._isLoading}set isLoading(e){this._isLoading!==e&&(e?t.add("load",this):t.remove("load",this),this._isLoading=e)}load(){}get isSwappingFont(){return this._isSwappingFont}set isSwappingFont(e){this._isSwappingFont!==e&&(e?t.add("font-swap",this):t.remove("font-swap",this),this._isSwappingFont=e)}swapFont(){}get isMouseMoving(){return this._isMouseMoving}set isMouseMoving(e){this._isMouseMoving!==e&&(e?t.add("mouse-move",this):t.remove("mouse-move",this),this._isMouseMoving=e)}mouseMove(t){}examine(t){this.node.matches(this.registration.selector)?this.mutate(t):this._dispose()}mutate(t){}retrieveNodeId(t,e){if(t.id)return t.id;const s=W(`${this.id}-${e}`);return this.warn(`add id '${s}' to ${e}`),t.setAttribute("id",s),s}get isDisposed(){return this._isDisposed}_dispose(){this.debug(`dispose instance of ${this.registration.instanceClassName} on element [${this.element.id}]`),this.removeAttribute(this.registration.attribute),this.unlisten(),t.remove("hash",this),this._hashes=null,this._keys=null,this.isRendering=!1,this.isResizing=!1,this._nexts=null,t.getModule("render").nexts.remove(this),this.isScrollLocked=!1,this.isLoading=!1,this.isSwappingFont=!1,this.isMouseMoving=!1,this._emitter.dispose(),this._emitter=null,this._ascent.dispose(),this._ascent=null,this._descent.dispose(),this._descent=null,this.element.remove(this);for(const e of this._registrations)t.remove("register",e);this._registrations=null,this.registration.remove(this),this._isDisposed=!0,this.dispose()}dispose(){}emit(t,e){return this.element.emit(t,e)}addEmission(t,e){this._emitter.add(t,e)}removeEmission(t,e){this._emitter.remove(t,e)}ascend(t,e){return this.element.ascend(t,e)}addAscent(t,e){this._ascent.add(t,e)}removeAscent(t,e){this._ascent.remove(t,e)}descend(t,e){return this.element.descend(t,e)}addDescent(t,e){this._descent.add(t,e)}removeDescent(t,e){this._descent.remove(t,e)}get style(){return this.node.style}addClass(t){z(this.node,t)}removeClass(t){H(this.node,t)}hasClass(t){return B(this.node,t)}get classNames(){return j(this.node)}remove(){this.node.parentNode.removeChild(this.node)}setAttribute(t,e){this.node.setAttribute(t,e)}getAttribute(t){return this.node.getAttribute(t)}hasAttribute(t){return this.node.hasAttribute(t)}removeAttribute(t){this.node.removeAttribute(t)}setProperty(t,e){this.node.style.setProperty(t,e)}removeProperty(t){this.node.style.removeProperty(t)}focus(){this.node.focus()}blur(){this.node.blur()}focusClosest(){const t=this._focusClosest(this.node.parentNode);t&&t.focus()}_focusClosest(t){if(!t)return null;const e=[...V(t)];if(e.length<=1)return this._focusClosest(t.parentNode);{const t=e.indexOf(this.node);return e[t+(twindow.innerHeight&&s.move(e.bottom-window.innerHeight+50)}matches(t){return this.node.matches(t)}querySelector(t){return this.node.querySelector(t)}querySelectorAll(t){return b(this.node,t)}queryParentSelector(t){return v(this.node,t)}getRect(){const t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t}get isLegacy(){return t.isLegacy}}class dt{constructor(t,e,s,i,n){this.type=t,this.eventType=`key${t}`,this.keyCode=e,this.closure=s,this.preventDefault=!0===i,this.stopPropagation=!0===n}handle(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())}}class ut{constructor(t,e,s,i){this._node=t,this._type=e,this._closure=s,this._options=i}get closure(){return this._closure}listen(){this._node.addEventListener(this._type,this._closure,this._options)}matchOptions(t=null){switch(!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((e=>this._options[e]===t[e])):return!0}return!1}unlisten(){this._node.removeEventListener(this._type,this._closure,this._options)}}class gt{constructor(t,e){this.hash=t,this.add=e}handle(t,e){this.hash===t&&this.add(e)}}const pt={DISCLOSE:g.event("disclose"),CONCEAL:g.event("conceal"),CURRENT:g.event("current")},mt={RESET:g.emission("disclosure","reset"),ADDED:g.emission("disclosure","added"),RETRIEVE:g.emission("disclosure","retrieve"),REMOVED:g.emission("disclosure","removed"),GROUP:g.emission("disclosure","group"),UNGROUP:g.emission("disclosure","ungroup"),SPOTLIGHT:g.emission("disclosure","spotlight")};class ft extends lt{constructor(t,e,s,i){super(),this.type=t,this._selector=e,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}static get instanceClassName(){return"Disclosure"}init(){this.addDescent(mt.RESET,this.reset.bind(this)),this.addDescent(mt.GROUP,this.update.bind(this)),this.addDescent(mt.UNGROUP,this.update.bind(this)),this.addAscent(mt.SPOTLIGHT,this.disclose.bind(this)),this.register(`[aria-controls="${this.id}"]`,this.DisclosureButtonInstanceClass),this.ascend(mt.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()}get isEnabled(){return super.isEnabled}set isEnabled(t){this.isEnabled!==t&&(super.isEnabled=t,t?this.ascend(mt.ADDED):this.ascend(mt.REMOVED))}get isPristine(){return this._isPristine}get proxy(){const t=this,e=Object.assign(super.proxy,{disclose:t.disclose.bind(t),focus:t.focus.bind(t)});this.type.canConceal&&(e.conceal=t.conceal.bind(t));return tt(e,{get buttons(){return t.buttons.map((t=>t.proxy))},get group(){const e=t.group;return e?e.proxy:null},get isDisclosed(){return t.isDisclosed}})}get buttons(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)}update(){this.getGroup(),this.retrievePrimaries()}getGroup(){if(!this.disclosuresGroupInstanceClassName)return void(this._group=null);const t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}get group(){return this._group}disclose(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)}conceal(t,e=!0){return!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(mt.RESET),!0))}get isDisclosed(){return this._isDisclosed}set isDisclosed(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?pt.DISCLOSE:pt.CONCEAL,this),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(let e=0;et.isInitiallyDisclosed))}hasRetrieved(){return this._hasRetrieved}reset(){}toggle(t){if(this.type.canConceal)switch(!0){case!t:case this.isDisclosed:this.conceal(!1,!1);break;default:this.disclose()}else this.disclose()}get buttonHasFocus(){return this.buttons.some((t=>t.hasFocus))}get hasFocus(){return!!super.hasFocus||(!!this.buttonHasFocus||this.querySelectorAll(":focus").length>0)}focus(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()}get primaryButtons(){return this._primaryButtons}retrievePrimaries(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))}_retrievePrimaries(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}}retrieved(){}_spotlight(){this.disclose(),this.request((()=>{this.ascend(mt.SPOTLIGHT)}))}_electPrimaries(t){return t.filter((t=>t.canDisclose&&!this.node.contains(t.node)))}applyAbility(t=!1){const e=!this._primaryButtons.every((t=>t.isDisabled));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(mt.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(mt.ADDED),this.hash===this.id&&this._spotlight())))}dispose(){this._group=null,this._primaryButtons=null,super.dispose(),this.ascend(mt.REMOVED)}}class _t extends lt{constructor(t){super(),this.type=t,this.attributeName=t.ariaState?"aria-"+t.id:g.attr(t.id),this._canDisclose=!1}static get instanceClassName(){return"DisclosureButton"}get isPrimary(){return this.registration.creator.primaryButtons.includes(this)}get canDisclose(){return this._canDisclose}get isDisabled(){return this.type.canDisable&&this.hasAttribute("disabled")}init(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()}get proxy(){return Object.assign(super.proxy,{focus:this.focus.bind(this)})}handleClick(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)}mutate(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())}apply(t){this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((()=>{this._isApplying=!1})))}get isDisclosed(){return"true"===this.getAttribute(this.attributeName)}get isInitiallyDisclosed(){return this._isInitiallyDisclosed}focus(){super.focus(),this.scrollIntoView()}measure(t){const e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y}get dx(){return this._dx}get dy(){return this._dy}}const bt={PREVENT_CONCEAL:g.attr.selector("prevent-conceal"),GROUP:g.attr("group")};class vt extends lt{constructor(t,e){super(e),this.disclosureInstanceClassName=t,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}static get instanceClassName(){return"DisclosuresGroup"}init(){this.addAscent(mt.ADDED,this.update.bind(this)),this.addAscent(mt.RETRIEVE,this.retrieve.bind(this)),this.addAscent(mt.REMOVED,this.update.bind(this)),this.descend(mt.GROUP),this._isGrouped="false"!==this.getAttribute(bt.GROUP),this.update()}get proxy(){const t=this,e={set index(e){t.index=e},get index(){return t.index},get length(){return t.length},get current(){const e=t.current;return e?e.proxy:null},get members(){return t.members.map((t=>t.proxy))},get hasFocus(){return t.hasFocus},set isGrouped(e){t.isGrouped=e},get isGrouped(){return t.isGrouped}};return tt(super.proxy,e)}validate(t){return!0}getMembers(){const t=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=t.filter(this.validate.bind(this)).filter((t=>t.isEnabled));t.filter((t=>!this._members.includes(t))).forEach((t=>t.conceal()))}retrieve(t=!1){this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))}_retrieve(){if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.isGrouped){if(this.hash)for(let t=0;t{this.ascend(mt.SPOTLIGHT)})),t}for(let t=0;t=this.length||t===this._index)){this._index=t;for(let e=0;ee.map((e=>g.selector(`${t}--${e}`))).join(","),Ot=`${g.selector("responsive-img")}, ${Dt("responsive-img",Nt)}, ${g.selector("responsive-vid")}, ${Dt("responsive-vid",["16x9","4x3","1x1"])}`,St={RATIO:`${g.selector("ratio")}, ${Dt("ratio",Nt)}, ${Ot}`},Lt=window[s];const kt={TOP:g.selector("placement--top"),RIGHT:g.selector("placement--right"),BOTTOM:g.selector("placement--bottom"),LEFT:g.selector("placement--left")},Pt={START:g.selector("placement--start"),CENTER:g.selector("placement--center"),END:g.selector("placement--end")},It={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},Mt={START:"align_start",CENTER:"align_center",END:"align_end"},$t={AUTO:"placement_auto",MANUAL:"placement_manual"};nt.core={Instance:lt,Breakpoints:at,KeyCodes:R,Disclosure:ft,DisclosureButton:_t,DisclosuresGroup:vt,DisclosureType:yt,DisclosureEvent:pt,DisclosureSelector:bt,DisclosureEmission:mt,Collapse:class extends ft{constructor(){super(yt.EXPAND,wt.COLLAPSE,Et,"CollapsesGroup")}static get instanceClassName(){return"Collapse"}init(){super.init(),this.listen("transitionend",this.endCollapsing.bind(this))}endCollapsing(t){this._isCollpasing&&(this._timeout&&clearTimeout(this._timeout),this._timeout=null,this._isCollpasing=!1,this.removeClass(wt.COLLAPSING),this.isDisclosed||this.isLegacy&&(this.style.maxHeight=""))}unbound(){this.isLegacy&&(this.style.maxHeight="none")}disclose(t){if(!0===this.isDisclosed||!this.isEnabled)return!1;this.unbound(),this.collapsing((()=>super.disclose(t)))}conceal(t,e){if(!1===this.isDisclosed)return!1;this.collapsing((()=>super.conceal(t,e)))}collapsing(t){this._isCollpasing=!0,this._timeout&&clearTimeout(this._timeout),this.addClass(wt.COLLAPSING),this.adjust(),this.request((()=>{t(),this._timeout=setTimeout(this.endCollapsing.bind(this),500)}))}adjust(){this.setProperty("--collapser","none");const t=this.node.offsetHeight;this.setProperty("--collapse",-t+"px"),this.setProperty("--collapser","")}reset(){this.isPristine||(this.isDisclosed=!1)}_electPrimaries(t){const e=this.element.parent.instances.map((t=>t.collapsePrimary)).filter((e=>void 0!==e&&t.indexOf(e)>-1));if(1===e.length)return e;if(1===(t=super._electPrimaries(t)).length)return t;const s=t.filter((t=>t.dy>=0));if(s.length>0&&(t=s),1===t.length)return t;const i=Math.min(...t.map((t=>t.dy))),n=t.filter((t=>t.dy===i));return n.length>0&&(t=n),1===t.length||t.sort(((t,e)=>Math.abs(e.dx)-Math.abs(t.dx))),t}},CollapseButton:Et,CollapsesGroup:class extends vt{constructor(){super("Collapse")}static get instanceClassName(){return"CollapsesGroup"}get canUngroup(){return!0}},CollapseSelector:wt,RootSelector:{ROOT:":root"},RootEmission:A,Equisized:class extends lt{static get instanceClassName(){return"Equisized"}init(){this.ascend(Ct.CHANGE)}measure(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width}adjust(t){this.isLegacy&&(this.style.width=`${t}px`)}dispose(){this.ascend(Ct.CHANGE)}},EquisizedEmission:Ct,Toggle:class extends lt{static get instanceClassName(){return"Toggle"}init(){this.pressed="true"===this.pressed,this.listenClick()}handleClick(){this.toggle()}toggle(){this.pressed="true"!==this.pressed}get pressed(){return this.getAttribute("aria-pressed")}set pressed(t){this.setAttribute("aria-pressed",t?"true":"false")}get proxy(){const t=this,e=Object.assign(super.proxy,{toggle:t.toggle.bind(t)});return tt(e,{get pressed(){return t.pressed},set pressed(e){t.pressed=e}})}},EquisizedsGroup:class extends lt{static get instanceClassName(){return"EquisizedsGroup"}init(){this.isResizing=!0,this.isLoading=!0,this.addAscent(Ct.CHANGE,this.resize.bind(this))}load(){this.resize()}resize(){const t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");const e=Math.max(...t.map((t=>t.measure())));this.isLegacy?t.forEach((t=>t.adjust(e))):this.style.setProperty("--equisized-width",`${e}px`)}},InjectSvg:class extends lt{static get instanceClassName(){return"InjectSvg"}init(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()}get proxy(){const t=this;return Object.assign(super.proxy,{replace:t.replace.bind(t),restore:t.restore.bind(t)})}fetch(){this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((t=>t.text())).then((t=>{const e=(new DOMParser).parseFromString(t,"text/html");this.svg=e.querySelector("svg"),this.svg&&this.replace()})))}replace(){if(!this.svg)return void this.fetch();this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);let t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-',`id="${t}-artwork-`),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-',`"#${t}-artwork-`))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,s;e=this.svg,s={"aria-hidden":!0,focusable:!1},Object.keys(s).forEach((t=>e.setAttribute(t,s[t]))),this.node.replaceChild(this.svg,this.img)}restore(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))}},InjectSvgSelector:At,Artwork:class extends lt{static get instanceClassName(){return"Artwork"}init(){this.isLegacy&&this.replace()}get proxy(){return Object.assign(super.proxy,{replace:this.replace.bind(this)})}fetch(){this.xlink=this.node.getAttribute("href");const t=this.xlink.split("#");this.svgUrl=t[0],this.svgName=t[1];const e=new XMLHttpRequest;e.onload=()=>{const t=(new DOMParser).parseFromString(e.responseText,"text/html");this.realSvgContent=t.getElementById(this.svgName),this.realSvgContent&&("symbol"===this.realSvgContent.tagName?(this.use=t.querySelector('use[href="#'+this.svgName+'"]'),this.use&&this.node.parentNode.insertBefore(this.use,this.node)):this.realSvgContent.classList.add(this.node.classList),this.replace())},e.open("GET",this.svgUrl),e.send()}replace(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()}},ArtworkSelector:Rt,AssessFile:class extends lt{static get instanceClassName(){return"AssessFile"}init(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(xt.ADDED,this.update.bind(this)),this.addDescent(xt.ADDED,this.update.bind(this))}getFileLength(){void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((t=>{this.length=t.headers.get("content-length")||-1,-1===this.length&&a.warn("File size unknown: "+this.href+'\nUnable to get HTTP header: "content-length"'),this.gather()})):this.length=-1}mutate(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())}gather(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){const t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()}update(){this.details&&(this.descend(xt.UPDATE,this.details),this.ascend(xt.UPDATE,this.details))}getLang(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)}parseExtension(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")}getLangDisplayName(t){if(this.isLegacy)return t;const e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)}bytesToSize(t){if(-1===t)return null;let e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(g.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);const s=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===s)return`${t} ${e[s]}`;const i=t/1e3**s,n=Math.round(100*(i+Number.EPSILON))/100;return`${String(n).replace(".",",")} ${e[s]}`}},AssessDetail:class extends lt{static get instanceClassName(){return"AssessDetail"}init(){this.addDescent(xt.UPDATE,this.update.bind(this)),this.ascend(xt.ADDED)}update(t){this.node.innerHTML=t.join(" - ")}},AssessEmission:xt,AssessSelector:Tt,Ratio:class extends lt{static get instanceClassName(){return"Ratio"}init(){if(!Lt.internals.support.supportAspectRatio()){this.ratio=16/9;for(const t in this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){const e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}}render(){this.getRect().width!==this.currentWidth&&this.update()}update(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"}},RatioSelector:St,Placement:class extends lt{constructor(t=$t.AUTO,e=[It.BOTTOM,It.TOP,It.LEFT,It.RIGHT],s=[Mt.CENTER,Mt.START,Mt.END],i=16){super(),this._mode=t,this._places=e,this._aligns=s,this._safeAreaMargin=i,this._isShown=!1,this._x=this._y=0}static get instanceClassName(){return"Placement"}init(){this.isResizing=!0}get proxy(){const t=this,e=Object.assign(super.proxy,{show:t.show.bind(t),hide:t.hide.bind(t)});return tt(e,{get mode(){return t.mode},set mode(e){t.mode=e},get place(){return t.place},set place(e){t.place=e},get align(){return t.align},set align(e){t.align=e},get isShown(){return t.isShown},set isShown(e){t.isShown=e}})}get mode(){return this._mode}set mode(t){this._mode=t}get place(){return this._place}set place(t){if(this._place!==t){switch(this._place){case It.TOP:this.removeClass(kt.TOP);break;case It.RIGHT:this.removeClass(kt.RIGHT);break;case It.BOTTOM:this.removeClass(kt.BOTTOM);break;case It.LEFT:this.removeClass(kt.LEFT)}switch(this._place=t,this._place){case It.TOP:this.addClass(kt.TOP);break;case It.RIGHT:this.addClass(kt.RIGHT);break;case It.BOTTOM:this.addClass(kt.BOTTOM);break;case It.LEFT:this.addClass(kt.LEFT)}}}get align(){return this._align}set align(t){if(this._align!==t){switch(this._align){case Mt.START:this.removeClass(Pt.START);break;case Mt.CENTER:this.removeClass(Pt.CENTER);break;case Mt.END:this.removeClass(Pt.END)}switch(this._align=t,this._align){case Mt.START:this.addClass(Pt.START);break;case Mt.CENTER:this.addClass(Pt.CENTER);break;case Mt.END:this.addClass(Pt.END)}}}show(){this.isShown=!0}hide(){this.isShown=!1}get isShown(){return this._isShown}set isShown(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)}setReferent(t){this._referent=t}render(){if(!this._referent)return;if(this.referentRect=this._referent.getRect(),this.rect=this.getRect(),this.safeArea=this.getSafeArea(),this.mode===$t.AUTO)switch(this.place=this.getPlace(),this.place){case It.TOP:case It.BOTTOM:this.align=this.getHorizontalAlign();break;case It.LEFT:case It.RIGHT:this.align=this.getVerticalAlign()}let t,e;switch(this.place){case It.TOP:e=this.referentRect.top-this.rect.top-this.rect.height;break;case It.RIGHT:t=this.referentRect.left-this.rect.left+this.referentRect.width;break;case It.BOTTOM:e=this.referentRect.top-this.rect.top+this.referentRect.height;break;case It.LEFT:t=this.referentRect.left-this.rect.left-this.rect.width}switch(this.place){case It.TOP:case It.BOTTOM:switch(this.align){case Mt.CENTER:t=this.referentRect.left-this.rect.left+.5*this.referentRect.width-.5*this.rect.width;break;case Mt.START:t=this.referentRect.left-this.rect.left;break;case Mt.END:t=this.referentRect.left-this.rect.left+this.referentRect.width-this.rect.width}break;case It.RIGHT:case It.LEFT:switch(this.align){case Mt.CENTER:e=this.referentRect.top-this.rect.top+.5*this.referentRect.height-.5*this.rect.height;break;case Mt.START:e=this.referentRect.top-this.rect.top;break;case Mt.END:e=this.referentRect.top-this.rect.top-this.rect.height}}this._x+=t+.5|0,this._y+=e+.5|0,this.node.style.transform=`translate(${this._x}px,${this._y}px)`}getPlace(){for(const t of this._places)switch(t){case It.TOP:if(this.referentRect.top-this.rect.height>this.safeArea.top)return It.TOP;break;case It.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return It.LEFT}return this._places[0]}getHorizontalAlign(){for(const t of this._aligns)switch(t){case Mt.CENTER:if(this.referentRect.center-.5*this.rect.width>this.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return Mt.END}return this._aligns[0]}getVerticalAlign(){for(const t of this._aligns)switch(t){case Mt.CENTER:if(this.referentRect.middle-.5*this.rect.height>this.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return Mt.END}return this._aligns[0]}getSafeArea(){let t,e,s=this.node,i=this._safeAreaMargin,n=window.innerWidth-this._safeAreaMargin,r=window.innerHeight-this._safeAreaMargin,o=this._safeAreaMargin;for(;s&&s!==document.body;){s=s.parentElement;const h=window.getComputedStyle(s),a=/(visible|(\w+))(\s(visible|(\w+)))?/.exec(h.overflow);if(t=void 0!==a[2],e=void 0!==a[3]?void 0!==a[5]:void 0!==a[2],!t&&!e)continue;const c=s.getBoundingClientRect();t&&(c.left>o&&(o=c.left),c.righti&&(i=c.top),c.bottom0){for(var n="",r=0;r-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)},v.prototype.remove=function(t){var e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()},v.prototype.execute=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];for(var i=0,s=this._collection;i-1},O.prototype.introduce=function(){this.isIntroduced||(this.isIntroduced=!0,i.getModule("stage").parse(document.documentElement,this))},O.prototype.parse=function(t,e){var i=[];return t.matches&&t.matches(this.selector)&&i.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&i.push.apply(i,w(t,this.selector)),i},O.prototype.create=function(t){if(t.node.matches(this.selector)){var e=new this.InstanceClass;return this.instances.add(e),e}},O.prototype.remove=function(t){this.instances.remove(t)},O.prototype.dispose=function(){for(var t=this.instances.collection,e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null},A.instanceClassName.get=function(){return this._instanceClassName},A.instanceClassNames.get=function(){return this._instanceClassNames},A.property.get=function(){return this._property},A.attribute.get=function(){return this._attribute},Object.defineProperties(O.prototype,A);var N=function(t){function e(){t.call(this,"register")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,s){var n=new O(t,e,s);return this.add(n),i.isActive&&n.introduce(),n},e.prototype.activate=function(){for(var t=0,e=this.collection;t");return this.node.outerHTML.substring(0,t+1)},R.prototype.project=function(t){-1===this._projects.indexOf(t)&&this._projects.push(t)},R.prototype.populate=function(){var t=this._projects.slice();this._projects.length=0;for(var e=0,i=t;e-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]},D.parent.get=function(){return this._parent},D.ascendants.get=function(){return[this.parent].concat(this.parent.ascendants)},D.children.get=function(){return this._children},D.descendants.get=function(){var t=[].concat(this._children);return this._children.forEach((function(e){return t.push.apply(t,e.descendants)})),t},R.prototype.addChild=function(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){var e=this.instances[t];e&&e._dispose()}this.instances.length=0,i.remove("stage",this),this.parent.removeChild(this),this._children.length=0,p.debug("remove element ["+this.id+"] "+this.html)},R.prototype.prepare=function(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)},R.prototype.examine=function(){var t=this.attributeNames.slice();this.attributeNames.length=0;for(var e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)},Object.defineProperties(R.prototype,D);var x={CLICK:E.emission("root","click"),KEYDOWN:E.emission("root","keydown"),KEYUP:E.emission("root","keyup")},P={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},S=function(t){return Object.values(P).filter((function(e){return e.value===t}))[0]},L=function(t){function e(){t.call(this,document.documentElement,"root"),this.node.setAttribute(E.attr("js"),!0),this.listen()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})},e.prototype.click=function(t){this.emit(x.CLICK,t.target)},e.prototype.keydown=function(t){this.emit(x.KEYDOWN,S(t.keyCode))},e.prototype.keyup=function(t){this.emit(x.KEYUP,S(t.keyCode))},e}(R),k=function(t){function e(){t.call(this,"stage"),this.root=new L,t.prototype.add.call(this,this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasElement=function(t){for(var e=0,i=this.collection;e-1;s--){var n=e.children[s],r=t.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(n),t.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){i=s+1;break}}e.addChild(t,i)},e.prototype.activate=function(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})},e.prototype.deactivate=function(){this.observer.disconnect()},e.prototype.mutate=function(t){var e=this,i=[];t.forEach((function(t){switch(t.type){case"childList":t.removedNodes.forEach((function(t){return e.dispose(t)})),t.addedNodes.forEach((function(t){return e.parse(t)}));break;case"attributes":if(e.hasElement(t.target)){var s=e.getElement(t.target);s.prepare(t.attributeName),-1===i.indexOf(s)&&i.push(s);for(var n=0,r=s.descendants;n0&&document.documentElement.style.setProperty("--scrollbar-width",t+"px")}},e.prototype.unlock=function(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(E.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"))},e.prototype.move=function(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)},Object.defineProperties(e.prototype,i),e}(b),G=function(t){function e(){t.call(this,"load"),this.loading=this.load.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){window.addEventListener("load",this.loading)},e.prototype.load=function(){this.forEach((function(t){return t.load()}))},e}(b),q=["Marianne","Spectral"],U=function(t){function e(){t.call(this,"font-swap"),this.swapping=this.swap.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)},e.prototype.swap=function(){var t=q.filter((function(t){return document.fonts.check("16px "+t)}));this.forEach((function(e){return e.swapFont(t)}))},e}(b),F=function(t){function e(){t.call(this,"mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))},e.prototype.unlisten=function(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))},e.prototype.request=function(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))},e.prototype.move=function(){var t=this;this.requireMove&&(this.forEach((function(e){return e.mouseMove(t.point)})),this.requireMove=!1)},e}(b),H=function(t){function e(){t.call(this,"hash"),this.handling=this.handle.bind(this),this.getLocationHash()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={hash:{configurable:!0}};return e.prototype.activate=function(){window.addEventListener("hashchange",this.handling)},e.prototype.deactivate=function(){window.removeEventListener("hashchange",this.handling)},e.prototype._sanitize=function(t){return"#"===t.charAt(0)?t.substring(1):t},i.hash.set=function(t){var e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)},i.hash.get=function(){return this._hash},e.prototype.getLocationHash=function(){var t=window.location.hash;this._hash=this._sanitize(t)},e.prototype.handle=function(t){var e=this;this.getLocationHash(),this.forEach((function(i){return i.handleHash(e._hash,t)}))},Object.defineProperties(e.prototype,i),e}(b),z=function(){i.create(N),i.create(k),i.create(M),i.create(j),i.create(I),i.create(G),i.create(U),i.create(F),i.create(H);var t=i.getModule("register");this.register=t.register.bind(t)},B={isActive:{configurable:!0}};B.isActive.get=function(){return i.isActive},z.prototype.start=function(){p.debug("START"),i.isActive=!0},z.prototype.stop=function(){p.debug("STOP"),i.isActive=!1},Object.defineProperties(z.prototype,B);var V=new z,K=function(){};K.prototype.getColor=function(t,e,i,s){void 0===s&&(s={});var n="--"+t+"-"+e+"-"+i+W(s);return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null};var W=function(t){switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},Y=new K,$=function(t){return"."===t.charAt(0)?t.substr(1):t},X=function(t){switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},Z=function(t,e,i){e=$(e);var s=X(t),n=s.indexOf(e);!0===i?n>-1&&s.splice(n,1):-1===n&&s.push(e),t.className=s.join(" ")},J=function(t,e){return Z(t,e)},Q=function(t,e){return Z(t,e,!0)},tt=function(t,e){return X(t).indexOf($(e))>-1},et=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),it=function(t){return t.querySelectorAll(et)},st=0,nt=function(t){if(!document.getElementById(t))return t;for(var e=!0,i=t;e;)t=i+"-"+ ++st,e=document.getElementById(t);return t},rt={addClass:J,hasClass:tt,removeClass:Q,queryParentSelector:C,querySelectorAllArray:w,queryActions:it,uniqueId:nt},ot=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._width=t,this._height=e,this._content=""},at={width:{configurable:!0},height:{configurable:!0},content:{configurable:!0}};at.width.get=function(){return this._width},at.width.set=function(t){this._width=t},at.height.get=function(){return this._height},at.height.set=function(t){this._height=t},at.content.get=function(){return this._content},at.content.set=function(t){this._content=t},ot.prototype.getDataURI=function(t){void 0===t&&(t=!1);var e=""+this._content+"";return e=e.replace(/#/gi,"%23"),t&&(e=(e=(e=(e=(e=e.replace(//gi,"%3E")).replace(/"/gi,"'")).replace(/{/gi,"%7B")).replace(/}/gi,"%7D")),"data:image/svg+xml;charset=utf8,"+e},Object.defineProperties(ot.prototype,at);var ct={DataURISVG:ot},ht={supportLocalStorage:function(){try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:function(){return!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")}},ut={TransitionSelector:{NONE:E.selector("transition-none")}},lt=function(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];return e.forEach((function(e){var i=Object.keys(e).reduce((function(t,i){return t[i]=Object.getOwnPropertyDescriptor(e,i),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var s=Object.getOwnPropertyDescriptor(e,t);s.enumerable&&(i[t]=s)})),Object.defineProperties(t,i)})),t},pt={completeAssign:lt},dt={},ft={};Object.defineProperty(ft,"isLegacy",{get:function(){return i.isLegacy}}),ft.setLegacy=function(){i.isLegacy=!0},dt.legacy=ft,dt.dom=rt,dt.image=ct,dt.support=ht,dt.motion=ut,dt.property=pt,dt.ns=E,dt.register=V.register,dt.state=i,dt.query=function(t){if(t&&t.search){var e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null}(window.location),Object.defineProperty(dt,"preventManipulation",{get:function(){return m.preventManipulation}}),Object.defineProperty(dt,"stage",{get:function(){return i.getModule("stage")}});var gt=function(t){return i.getModule("stage").getProxy(t)};gt.version=o,gt.prefix=s,gt.organisation=r,gt.Modes=f,Object.defineProperty(gt,"mode",{set:function(t){m.mode=t},get:function(){return m.mode}}),gt.internals=dt,gt.version=o,gt.start=V.start,gt.stop=V.stop,gt.inspector=p,gt.colors=Y;var yt=window[n];gt.internals.configuration=yt,m.configure(yt,gt.start,gt.internals.query),window[n]=gt;var mt=function(){this.emissions={}};mt.prototype.add=function(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)},mt.prototype.remove=function(t,e){if(this.emissions[t])if(e){var i=this.emissions[t].indexOf(e);i>-1&&this.emissions[t].splice(i)}else delete this.emissions[t]},mt.prototype.emit=function(t,e){if(!this.emissions[t])return[];for(var i=[],s=0,n=this.emissions[t];swindow.innerHeight&&e.move(t.bottom-window.innerHeight+50)},bt.prototype.matches=function(t){return this.node.matches(t)},bt.prototype.querySelector=function(t){return this.node.querySelector(t)},bt.prototype.querySelectorAll=function(t){return w(this.node,t)},bt.prototype.queryParentSelector=function(t){return C(this.node,t)},bt.prototype.getRect=function(){var t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t},Et.isLegacy.get=function(){return i.isLegacy},Object.defineProperties(bt.prototype,Et),Object.defineProperties(bt,wt);var Ct=function(t,e,i,s,n){this.type=t,this.eventType="key"+t,this.keyCode=e,this.closure=i,this.preventDefault=!0===s,this.stopPropagation=!0===n};Ct.prototype.handle=function(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())};var Ot=function(t,e,i,s){this._node=t,this._type=e,this._closure=i,this._options=s},At={closure:{configurable:!0}};At.closure.get=function(){return this._closure},Ot.prototype.listen=function(){this._node.addEventListener(this._type,this._closure,this._options)},Ot.prototype.matchOptions=function(t){var e=this;switch(void 0===t&&(t=null),!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((function(i){return e._options[i]===t[i]})):return!0}return!1},Ot.prototype.unlisten=function(){this._node.removeEventListener(this._type,this._closure,this._options)},Object.defineProperties(Ot.prototype,At);var Nt=function(t,e){this.hash=t,this.add=e};Nt.prototype.handle=function(t,e){this.hash===t&&this.add(e)};var Tt={DISCLOSE:E.event("disclose"),CONCEAL:E.event("conceal")},Rt={RESET:E.emission("disclosure","reset"),ADDED:E.emission("disclosure","added"),RETRIEVE:E.emission("disclosure","retrieve"),REMOVED:E.emission("disclosure","removed"),GROUP:E.emission("disclosure","group"),UNGROUP:E.emission("disclosure","ungroup"),SPOTLIGHT:E.emission("disclosure","spotlight")},Dt=function(t){function e(e,i,s,n){t.call(this),this.type=e,this._selector=i,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=n,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isEnabled:{configurable:!0},isPristine:{configurable:!0},proxy:{configurable:!0},buttons:{configurable:!0},group:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0},primaryButtons:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Disclosure"},e.prototype.init=function(){this.addDescent(Rt.RESET,this.reset.bind(this)),this.addDescent(Rt.GROUP,this.update.bind(this)),this.addDescent(Rt.UNGROUP,this.update.bind(this)),this.addAscent(Rt.SPOTLIGHT,this.disclose.bind(this)),this.register('[aria-controls="'+this.id+'"]',this.DisclosureButtonInstanceClass),this.ascend(Rt.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()},i.isEnabled.get=function(){return t.prototype.isEnabled},i.isEnabled.set=function(e){this.isEnabled!==e&&(t.prototype.isEnabled=e,e?this.ascend(Rt.ADDED):this.ascend(Rt.REMOVED))},i.isPristine.get=function(){return this._isPristine},i.proxy.get=function(){var e=this,i=Object.assign.call(this,t.prototype.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});return this.type.canConceal&&(i.conceal=e.conceal.bind(e)),lt(i,{get buttons(){return e.buttons.map((function(t){return t.proxy}))},get group(){var t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})},i.buttons.get=function(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)},e.prototype.update=function(){this.getGroup(),this.retrievePrimaries()},e.prototype.getGroup=function(){if(this.disclosuresGroupInstanceClassName){var t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}else this._group=null},i.group.get=function(){return this._group},e.prototype.disclose=function(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)},e.prototype.conceal=function(t,e){return void 0===e&&(e=!0),!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(Rt.RESET),!0))},i.isDisclosed.get=function(){return this._isDisclosed},i.isDisclosed.set=function(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?Tt.DISCLOSE:Tt.CONCEAL,this.type),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(var e=0;e0)},e.prototype.focus=function(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()},i.primaryButtons.get=function(){return this._primaryButtons},e.prototype.retrievePrimaries=function(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))},e.prototype._retrievePrimaries=function(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}},e.prototype.retrieved=function(){},e.prototype._spotlight=function(){var t=this;this.disclose(),this.request((function(){t.ascend(Rt.SPOTLIGHT)}))},e.prototype._electPrimaries=function(t){var e=this;return t.filter((function(t){return t.canDisclose&&!e.node.contains(t.node)}))},e.prototype.applyAbility=function(t){void 0===t&&(t=!1);var e=!this._primaryButtons.every((function(t){return t.isDisabled}));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(Rt.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(Rt.ADDED),this.hash===this.id&&this._spotlight())))},e.prototype.dispose=function(){this._group=null,this._primaryButtons=null,t.prototype.dispose.call(this),this.ascend(Rt.REMOVED)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt),xt=function(t){function e(e){t.call(this),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:E.attr(e.id),this._canDisclose=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isPrimary:{configurable:!0},canDisclose:{configurable:!0},isDisabled:{configurable:!0},proxy:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},dx:{configurable:!0},dy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"DisclosureButton"},i.isPrimary.get=function(){return this.registration.creator.primaryButtons.includes(this)},i.canDisclose.get=function(){return this._canDisclose},i.isDisabled.get=function(){return this.type.canDisable&&this.hasAttribute("disabled")},e.prototype.init=function(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()},i.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{focus:this.focus.bind(this)})},e.prototype.handleClick=function(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)},e.prototype.mutate=function(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())},e.prototype.apply=function(t){var e=this;this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((function(){e._isApplying=!1})))},i.isDisclosed.get=function(){return"true"===this.getAttribute(this.attributeName)},i.isInitiallyDisclosed.get=function(){return this._isInitiallyDisclosed},e.prototype.focus=function(){t.prototype.focus.call(this),this.scrollIntoView()},e.prototype.measure=function(t){var e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y},i.dx.get=function(){return this._dx},i.dy.get=function(){return this._dy},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt),Pt={PREVENT_CONCEAL:E.attr.selector("prevent-conceal"),GROUP:E.attr("group")},St=function(t){function e(e,i){t.call(this,i),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0},members:{configurable:!0},length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0},isGrouped:{configurable:!0},canUngroup:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"DisclosuresGroup"},e.prototype.init=function(){this.addAscent(Rt.ADDED,this.update.bind(this)),this.addAscent(Rt.RETRIEVE,this.retrieve.bind(this)),this.addAscent(Rt.REMOVED,this.update.bind(this)),this.descend(Rt.GROUP),this._isGrouped="false"!==this.getAttribute(Pt.GROUP),this.update()},i.proxy.get=function(){var e=this,i={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){var t=e.current;return t?t.proxy:null},get members(){return e.members.map((function(t){return t.proxy}))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return lt.call(this,t.prototype.proxy,i)},e.prototype.validate=function(t){return!0},e.prototype.getMembers=function(){var t=this,e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((function(t){return t.isEnabled})),e.filter((function(e){return!t._members.includes(e)})).forEach((function(t){return t.conceal()}))},e.prototype.retrieve=function(t){void 0===t&&(t=!1),this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))},e.prototype._retrieve=function(){var t=this;if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.hash)for(var e=0;e=this.length||t===this._index)){this._index=t;for(var e=0;e-1}));if(1===i.length)return i;if(1===(e=t.prototype._electPrimaries.call(this,e)).length)return e;var s=e.filter((function(t){return t.dy>=0}));if(s.length>0&&(e=s),1===e.length)return e;var n=Math.min.apply(Math,e.map((function(t){return t.dy}))),r=e.filter((function(t){return t.dy===n}));return r.length>0&&(e=r),1===e.length||e.sort((function(t,e){return Math.abs(e.dx)-Math.abs(t.dx)})),e},Object.defineProperties(e,i),e}(Dt),It=function(t){function e(){t.call(this,"Collapse")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={canUngroup:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"CollapsesGroup"},i.canUngroup.get=function(){return!0},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(St),Gt={CHANGE:E("equisized")},qt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Equisized"},e.prototype.init=function(){this.ascend(Gt.CHANGE)},e.prototype.measure=function(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width},e.prototype.adjust=function(t){this.isLegacy&&(this.style.width=t+"px")},e.prototype.dispose=function(){this.ascend(Gt.CHANGE)},Object.defineProperties(e,i),e}(bt),Ut=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"EquisizedsGroup"},e.prototype.init=function(){this.isResizing=!0,this.isLoading=!0,this.addAscent(Gt.CHANGE,this.resize.bind(this))},e.prototype.load=function(){this.resize()},e.prototype.resize=function(){var t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");var e=Math.max.apply(Math,t.map((function(t){return t.measure()})));this.isLegacy?t.forEach((function(t){return t.adjust(e)})):this.style.setProperty("--equisized-width",e+"px")},Object.defineProperties(e,i),e}(bt),Ft={TOGGLE:E.event("toggle")},Ht=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={pressed:{configurable:!0},proxy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Toggle"},e.prototype.init=function(){this.pressed="true"===this.pressed,this.listenClick()},e.prototype.handleClick=function(){this.toggle()},e.prototype.toggle=function(){this.pressed="true"!==this.pressed},i.pressed.get=function(){return this.getAttribute("aria-pressed")},i.pressed.set=function(t){this.setAttribute("aria-pressed",t?"true":"false"),this.dispatch(Ft.TOGGLE,t)},i.proxy.get=function(){var e=this,i=Object.assign.call(this,t.prototype.proxy,{toggle:e.toggle.bind(e)});return lt(i,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt),zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"InjectSvg"},e.prototype.init=function(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()},i.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})},e.prototype.fetch=function(){var t=this;this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((function(t){return t.text()})).then((function(e){var i=(new DOMParser).parseFromString(e,"text/html");t.svg=i.querySelector("svg"),t.svg&&t.replace()})))},e.prototype.replace=function(){if(this.svg){this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);var t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-','id="'+t+"-artwork-"),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-','"#'+t+"-artwork-"))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,i;e=this.svg,i={"aria-hidden":!0,focusable:!1},Object.keys(i).forEach((function(t){return e.setAttribute(t,i[t])})),this.node.replaceChild(this.svg,this.img)}else this.fetch()},e.prototype.restore=function(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt),Bt={INJECT_SVG:"["+E.attr("inject-svg")+"]"},Vt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Artwork"},e.prototype.init=function(){this.isLegacy&&this.replace()},i.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{replace:this.replace.bind(this)})},e.prototype.fetch=function(){var t=this;this.xlink=this.node.getAttribute("href");var e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];var i=new XMLHttpRequest;i.onload=function(){var e=(new DOMParser).parseFromString(i.responseText,"text/html");t.realSvgContent=e.getElementById(t.svgName),t.realSvgContent&&("symbol"===t.realSvgContent.tagName?(t.use=e.querySelector('use[href="#'+t.svgName+'"]'),t.use&&t.node.parentNode.insertBefore(t.use,t.node)):t.realSvgContent.classList.add(t.node.classList),t.replace())},i.open("GET",this.svgUrl),i.send()},e.prototype.replace=function(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt),Kt={ARTWORK_USE:E.selector("artwork")+" use"},Wt={ASSESS_FILE:""+E.attr.selector("assess-file"),DETAIL:E.attr.selector("assess-file")+' [class$="__detail"], '+E.attr.selector("assess-file")+' [class*="__detail "]'},Yt={UPDATE:E.emission("assess","update"),ADDED:E.emission("assess","added")},$t=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"AssessFile"},e.prototype.init=function(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Yt.ADDED,this.update.bind(this)),this.addDescent(Yt.ADDED,this.update.bind(this))},e.prototype.getFileLength=function(){var t=this;void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((function(e){t.length=e.headers.get("content-length")||-1,-1===t.length&&p.warn("File size unknown: "+t.href+'\nUnable to get HTTP header: "content-length"'),t.gather()})):this.length=-1},e.prototype.mutate=function(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())},e.prototype.gather=function(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){var t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()},e.prototype.update=function(){this.details&&(this.descend(Yt.UPDATE,this.details),this.ascend(Yt.UPDATE,this.details))},e.prototype.getLang=function(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)},e.prototype.parseExtension=function(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")},e.prototype.getLangDisplayName=function(t){if(this.isLegacy)return t;var e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)},e.prototype.bytesToSize=function(t){if(-1===t)return null;var e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(E.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);var i=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===i)return t+" "+e[i];var s=t/Math.pow(1e3,i),n=Math.round(100*(s+Number.EPSILON))/100;return String(n).replace(".",",")+" "+e[i]},Object.defineProperties(e,i),e}(bt),Xt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"AssessDetail"},e.prototype.init=function(){this.addDescent(Yt.UPDATE,this.update.bind(this)),this.ascend(Yt.ADDED)},e.prototype.update=function(t){this.node.innerHTML=t.join(" - ")},Object.defineProperties(e,i),e}(bt),Zt=["32x9","16x9","3x2","4x3","1x1","3x4","2x3"],Jt=function(t,e){return e.map((function(e){return E.selector(t+"--"+e)})).join(",")},Qt=E.selector("responsive-img")+", "+Jt("responsive-img",Zt)+", "+E.selector("responsive-vid")+", "+Jt("responsive-vid",["16x9","4x3","1x1"]),te={RATIO:E.selector("ratio")+", "+Jt("ratio",Zt)+", "+Qt},ee=window[n],ie=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Ratio"},e.prototype.init=function(){if(!ee.internals.support.supportAspectRatio()){for(var t in this.ratio=16/9,this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){var e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}},e.prototype.render=function(){this.getRect().width!==this.currentWidth&&this.update()},e.prototype.update=function(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"},Object.defineProperties(e,i),e}(bt),se={TOP:E.selector("placement--top"),RIGHT:E.selector("placement--right"),BOTTOM:E.selector("placement--bottom"),LEFT:E.selector("placement--left")},ne={START:E.selector("placement--start"),CENTER:E.selector("placement--center"),END:E.selector("placement--end")},re={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},oe={START:"align_start",CENTER:"align_center",END:"align_end"},ae={AUTO:"placement_auto",MANUAL:"placement_manual"},ce=function(t){function e(e,i,s,n){void 0===e&&(e=ae.AUTO),void 0===i&&(i=[re.BOTTOM,re.TOP,re.LEFT,re.RIGHT]),void 0===s&&(s=[oe.CENTER,oe.START,oe.END]),void 0===n&&(n=16),t.call(this),this._mode=e,this._places=i,this._aligns=s,this._safeAreaMargin=n,this._isShown=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0},mode:{configurable:!0},place:{configurable:!0},align:{configurable:!0},isShown:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Placement"},e.prototype.init=function(){this.isResizing=!0},i.proxy.get=function(){var e=this,i=Object.assign.call(this,t.prototype.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return lt(i,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})},i.mode.get=function(){return this._mode},i.mode.set=function(t){this._mode=t},i.place.get=function(){return this._place},i.place.set=function(t){if(this._place!==t){switch(this._place){case re.TOP:this.removeClass(se.TOP);break;case re.RIGHT:this.removeClass(se.RIGHT);break;case re.BOTTOM:this.removeClass(se.BOTTOM);break;case re.LEFT:this.removeClass(se.LEFT)}switch(this._place=t,this._place){case re.TOP:this.addClass(se.TOP);break;case re.RIGHT:this.addClass(se.RIGHT);break;case re.BOTTOM:this.addClass(se.BOTTOM);break;case re.LEFT:this.addClass(se.LEFT)}}},i.align.get=function(){return this._align},i.align.set=function(t){if(this._align!==t){switch(this._align){case oe.START:this.removeClass(ne.START);break;case oe.CENTER:this.removeClass(ne.CENTER);break;case oe.END:this.removeClass(ne.END)}switch(this._align=t,this._align){case oe.START:this.addClass(ne.START);break;case oe.CENTER:this.addClass(ne.CENTER);break;case oe.END:this.addClass(ne.END)}}},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},i.isShown.get=function(){return this._isShown},i.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)},e.prototype.setReferent=function(t){this._referent=t},e.prototype.resize=function(){this.safeArea={top:this._safeAreaMargin,right:window.innerWidth-this._safeAreaMargin,bottom:window.innerHeight-this._safeAreaMargin,left:this._safeAreaMargin,center:.5*window.innerWidth,middle:.5*window.innerHeight}},e.prototype.render=function(){if(this._referent){if(this.rect=this.getRect(),this.referentRect=this._referent.getRect(),this.mode===ae.AUTO)switch(this.place=this.getPlace(),this.place){case re.TOP:case re.BOTTOM:this.align=this.getHorizontalAlign();break;case re.LEFT:case re.RIGHT:this.align=this.getVerticalAlign()}var t,e;switch(this.place){case re.TOP:e=this.referentRect.top-this.rect.height;break;case re.RIGHT:t=this.referentRect.right;break;case re.BOTTOM:e=this.referentRect.bottom;break;case re.LEFT:t=this.referentRect.left-this.rect.width}switch(this.place){case re.TOP:case re.BOTTOM:switch(this.align){case oe.CENTER:t=this.referentRect.center-.5*this.rect.width;break;case oe.START:t=this.referentRect.left;break;case oe.END:t=this.referentRect.right-this.rect.width}break;case re.RIGHT:case re.LEFT:switch(this.align){case oe.CENTER:e=this.referentRect.middle-.5*this.rect.height;break;case oe.START:e=this.referentRect.top;break;case oe.END:e=this.referentRect.bottom-this.rect.height}}this._x===t&&this._y===e||(this._x=t+.5|0,this._y=e+.5|0,this.node.style.transform="translate("+this._x+"px,"+this._y+"px)")}},e.prototype.getPlace=function(){for(var t=0,e=this._places;tthis.safeArea.top)return re.TOP;break;case re.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return re.LEFT}}return this._places[0]},e.prototype.getHorizontalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return oe.END}}return this._aligns[0]},e.prototype.getVerticalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return oe.END}}return this._aligns[0]},e.prototype.dispose=function(){this._referent=null,t.prototype.dispose.call(this)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt),he=function(t){function e(){t.call(this),this._isShown=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={placement:{configurable:!0},isShown:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"PlacementReferent"},e.prototype.init=function(){this.registration.creator.setReferent(this),this._placement=this.registration.creator},i.placement.get=function(){return this._placement},i.isShown.get=function(){return this._isShown},i.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this._isShown=t,t?this.registration.creator.show():this.registration.creator.hide())},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(bt);gt.core={Instance:bt,Breakpoints:_t,KeyCodes:P,Disclosure:Dt,DisclosureButton:xt,DisclosuresGroup:St,DisclosureType:Lt,DisclosureEvent:Tt,DisclosureSelector:Pt,DisclosureEmission:Rt,Collapse:jt,CollapseButton:kt,CollapsesGroup:It,CollapseSelector:Mt,RootSelector:{ROOT:":root"},RootEmission:x,Equisized:qt,EquisizedEmission:Gt,Toggle:Ht,EquisizedsGroup:Ut,InjectSvg:zt,InjectSvgSelector:Bt,Artwork:Vt,ArtworkSelector:Kt,AssessFile:$t,AssessDetail:Xt,AssessEmission:Yt,AssessSelector:Wt,Ratio:ie,RatioSelector:te,Placement:ce,PlacementReferent:he,PlacementAlign:oe,PlacementPosition:re,PlacementMode:ae},gt.internals.register(gt.core.CollapseSelector.COLLAPSE,gt.core.Collapse),gt.internals.register(gt.core.InjectSvgSelector.INJECT_SVG,gt.core.InjectSvg),gt.internals.register(gt.core.RatioSelector.RATIO,gt.core.Ratio),gt.internals.register(gt.core.AssessSelector.ASSESS_FILE,gt.core.AssessFile),gt.internals.register(gt.core.AssessSelector.DETAIL,gt.core.AssessDetail),gt.internals.legacy.setLegacy(),gt.internals.register(gt.core.ArtworkSelector.ARTWORK_USE,gt.core.Artwork)}(); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +!function(){"use strict";var t=function(){this.modules={}},e={isActive:{configurable:!0},isLegacy:{configurable:!0}};t.prototype.create=function(t){var e=new t;this.modules[e.type]=e},t.prototype.getModule=function(t){return this.modules[t]},t.prototype.add=function(t,e){this.modules[t].add(e)},t.prototype.remove=function(t,e){this.modules[t].remove(e)},e.isActive.get=function(){return this._isActive},e.isActive.set=function(t){var e=this;if(t!==this._isActive){this._isActive=t;var i=Object.keys(this.modules).map((function(t){return e.modules[t]}));if(t)for(var s=0,n=i;s0){for(var n="",r=0;r-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)},C.prototype.remove=function(t){var e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()},C.prototype.execute=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];for(var i=0,s=this._collection;i-1},N.prototype.introduce=function(){this.isIntroduced||(this.isIntroduced=!0,i.getModule("stage").parse(document.documentElement,this))},N.prototype.parse=function(t,e){var i=[];return t.matches&&t.matches(this.selector)&&i.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&i.push.apply(i,A(t,this.selector)),i},N.prototype.create=function(t){if(t.node.matches(this.selector)){var e=new this.InstanceClass;return this.instances.add(e),e}},N.prototype.remove=function(t){this.instances.remove(t)},N.prototype.dispose=function(){for(var t=this.instances.collection,e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null},T.instanceClassName.get=function(){return this._instanceClassName},T.instanceClassNames.get=function(){return this._instanceClassNames},T.property.get=function(){return this._property},T.attribute.get=function(){return this._attribute},Object.defineProperties(N.prototype,T);var D=function(t){function e(){t.call(this,"register")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,s){var n=new N(t,e,s);return this.add(n),i.isActive&&n.introduce(),n},e.prototype.activate=function(){for(var t=0,e=this.collection;t");return this.node.outerHTML.substring(0,t+1)},P.prototype.project=function(t){-1===this._projects.indexOf(t)&&this._projects.push(t)},P.prototype.populate=function(){var t=this._projects.slice();this._projects.length=0;for(var e=0,i=t;e-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]},S.parent.get=function(){return this._parent},S.ascendants.get=function(){return[this.parent].concat(this.parent.ascendants)},S.children.get=function(){return this._children},S.descendants.get=function(){var t=[].concat(this._children);return this._children.forEach((function(e){return t.push.apply(t,e.descendants)})),t},P.prototype.addChild=function(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){var e=this.instances[t];e&&e._dispose()}this.instances.length=0,i.remove("stage",this),this.parent.removeChild(this),this._children.length=0,p.debug("remove element ["+this.id+"] "+this.html)},P.prototype.prepare=function(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)},P.prototype.examine=function(){var t=this.attributeNames.slice();this.attributeNames.length=0;for(var e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)},Object.defineProperties(P.prototype,S);var L={CLICK:m.emission("root","click"),KEYDOWN:m.emission("root","keydown"),KEYUP:m.emission("root","keyup")},k={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},I=function(t){return Object.values(k).filter((function(e){return e.value===t}))[0]},M=function(t){function e(){t.call(this,document.documentElement,"root"),this.node.setAttribute(m.attr("js"),!0),this.listen()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})},e.prototype.click=function(t){this.emit(L.CLICK,t.target)},e.prototype.keydown=function(t){this.emit(L.KEYDOWN,I(t.keyCode))},e.prototype.keyup=function(t){this.emit(L.KEYUP,I(t.keyCode))},e}(P),j=function(t){function e(){t.call(this,"stage"),this.root=new M,t.prototype.add.call(this,this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasElement=function(t){for(var e=0,i=this.collection;e-1;s--){var n=e.children[s],r=t.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(n),t.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){i=s+1;break}}e.addChild(t,i)},e.prototype.activate=function(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})},e.prototype.deactivate=function(){this.observer.disconnect()},e.prototype.mutate=function(t){var e=this,i=[];t.forEach((function(t){switch(t.type){case"childList":t.removedNodes.forEach((function(t){return e.dispose(t)})),t.addedNodes.forEach((function(t){return e.parse(t)}));break;case"attributes":if(e.hasElement(t.target)){var s=e.getElement(t.target);s.prepare(t.attributeName),-1===i.indexOf(s)&&i.push(s);for(var n=0,r=s.descendants;n0&&document.documentElement.style.setProperty("--scrollbar-width",t+"px"),y(v.SCROLL_LOCK)}},e.prototype.unlock=function(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(m.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"),y(v.SCROLL_UNLOCK))},e.prototype.move=function(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)},Object.defineProperties(e.prototype,i),e}(O),F=function(t){function e(){t.call(this,"load"),this.loading=this.load.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){window.addEventListener("load",this.loading)},e.prototype.load=function(){this.forEach((function(t){return t.load()}))},e}(O),z=["Marianne","Spectral"],H=function(t){function e(){t.call(this,"font-swap"),this.swapping=this.swap.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)},e.prototype.swap=function(){var t=z.filter((function(t){return document.fonts.check("16px "+t)}));this.forEach((function(e){return e.swapFont(t)}))},e}(O),B=function(t){function e(){t.call(this,"mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))},e.prototype.unlisten=function(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))},e.prototype.request=function(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))},e.prototype.move=function(){var t=this;this.requireMove&&(this.forEach((function(e){return e.mouseMove(t.point)})),this.requireMove=!1)},e}(O),K=function(t){function e(){t.call(this,"hash"),this.handling=this.handle.bind(this),this.getLocationHash()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={hash:{configurable:!0}};return e.prototype.activate=function(){window.addEventListener("hashchange",this.handling)},e.prototype.deactivate=function(){window.removeEventListener("hashchange",this.handling)},e.prototype._sanitize=function(t){return"#"===t.charAt(0)?t.substring(1):t},i.hash.set=function(t){var e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)},i.hash.get=function(){return this._hash},e.prototype.getLocationHash=function(){var t=window.location.hash;this._hash=this._sanitize(t)},e.prototype.handle=function(t){var e=this;this.getLocationHash(),this.forEach((function(i){return i.handleHash(e._hash,t)}))},Object.defineProperties(e.prototype,i),e}(O),V=function(){i.create(D),i.create(j),i.create(G),i.create(q),i.create(U),i.create(F),i.create(H),i.create(B),i.create(K);var t=i.getModule("register");this.register=t.register.bind(t)},Y={isActive:{configurable:!0}};Y.isActive.get=function(){return i.isActive},V.prototype.start=function(){p.debug("START"),i.isActive=!0,y(v.START)},V.prototype.stop=function(){p.debug("STOP"),i.isActive=!1,y(v.STOP)},Object.defineProperties(V.prototype,Y);var W=new V,$=function(){};$.prototype.getColor=function(t,e,i,s){void 0===s&&(s={});var n="--"+t+"-"+e+"-"+i+X(s);return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null};var X=function(t){switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},Z=new $,J=function(t){return"."===t.charAt(0)?t.substr(1):t},Q=function(t){switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},tt=function(t,e,i){e=J(e);var s=Q(t),n=s.indexOf(e);!0===i?n>-1&&s.splice(n,1):-1===n&&s.push(e),t.className=s.join(" ")},et=function(t,e){return tt(t,e)},it=function(t,e){return tt(t,e,!0)},st=function(t,e){return Q(t).indexOf(J(e))>-1},nt=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),rt=function(t){return t.querySelectorAll(nt)},ot=0,at=function(t){if(!document.getElementById(t))return t;for(var e=!0,i=t;e;)t=i+"-"+ ++ot,e=document.getElementById(t);return t},ct={addClass:et,hasClass:st,removeClass:it,queryParentSelector:R,querySelectorAllArray:A,queryActions:rt,uniqueId:at,dispatch:g},ht=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._width=t,this._height=e,this._content=""},ut={width:{configurable:!0},height:{configurable:!0},content:{configurable:!0}};ut.width.get=function(){return this._width},ut.width.set=function(t){this._width=t},ut.height.get=function(){return this._height},ut.height.set=function(t){this._height=t},ut.content.get=function(){return this._content},ut.content.set=function(t){this._content=t},ht.prototype.getDataURI=function(t){void 0===t&&(t=!1);var e=""+this._content+"";return e=e.replace(/#/gi,"%23"),t&&(e=(e=(e=(e=(e=e.replace(//gi,"%3E")).replace(/"/gi,"'")).replace(/{/gi,"%7B")).replace(/}/gi,"%7D")),"data:image/svg+xml;charset=utf8,"+e},Object.defineProperties(ht.prototype,ut);var lt={DataURISVG:ht},pt={supportLocalStorage:function(){try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:function(){return!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")}},dt={TransitionSelector:{NONE:m.selector("transition-none")}},ft=function(t){for(var e=[],i=arguments.length-1;i-- >0;)e[i]=arguments[i+1];return e.forEach((function(e){var i=Object.keys(e).reduce((function(t,i){return t[i]=Object.getOwnPropertyDescriptor(e,i),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var s=Object.getOwnPropertyDescriptor(e,t);s.enumerable&&(i[t]=s)})),Object.defineProperties(t,i)})),t},gt={completeAssign:ft},yt={},mt={};Object.defineProperty(mt,"isLegacy",{get:function(){return i.isLegacy}}),mt.setLegacy=function(){i.isLegacy=!0},yt.legacy=mt,yt.dom=ct,yt.image=lt,yt.support=pt,yt.motion=dt,yt.property=gt,yt.ns=m,yt.register=W.register,yt.state=i,yt.query=function(t){if(t&&t.search){var e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null}(window.location),Object.defineProperty(yt,"preventManipulation",{get:function(){return E.preventManipulation}}),Object.defineProperty(yt,"stage",{get:function(){return i.getModule("stage")}});var vt=function(t){return i.getModule("stage").getProxy(t)};vt.version=o,vt.prefix=s,vt.organisation=r,vt.Modes=f,Object.defineProperty(vt,"mode",{set:function(t){E.mode=t},get:function(){return E.mode}}),vt.internals=yt,vt.version=o,vt.start=W.start,vt.stop=W.stop,vt.inspector=p,vt.colors=Z;var _t=window[n];vt.internals.configuration=_t,E.configure(_t,vt.start,vt.internals.query),window[n]=vt;var bt=function(){this.emissions={}};bt.prototype.add=function(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)},bt.prototype.remove=function(t,e){if(this.emissions[t])if(e){var i=this.emissions[t].indexOf(e);i>-1&&this.emissions[t].splice(i)}else delete this.emissions[t]},bt.prototype.emit=function(t,e){if(!this.emissions[t])return[];for(var i=[],s=0,n=this.emissions[t];swindow.innerHeight&&e.move(t.bottom-window.innerHeight+50)},Ot.prototype.matches=function(t){return this.node.matches(t)},Ot.prototype.querySelector=function(t){return this.node.querySelector(t)},Ot.prototype.querySelectorAll=function(t){return A(this.node,t)},Ot.prototype.queryParentSelector=function(t){return R(this.node,t)},Ot.prototype.getRect=function(){var t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t},At.isLegacy.get=function(){return i.isLegacy},Object.defineProperties(Ot.prototype,At),Object.defineProperties(Ot,Rt);var Nt=function(t,e,i,s,n){this.type=t,this.eventType="key"+t,this.keyCode=e,this.closure=i,this.preventDefault=!0===s,this.stopPropagation=!0===n};Nt.prototype.handle=function(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())};var Tt=function(t,e,i,s){this._node=t,this._type=e,this._closure=i,this._options=s},Dt={closure:{configurable:!0}};Dt.closure.get=function(){return this._closure},Tt.prototype.listen=function(){this._node.addEventListener(this._type,this._closure,this._options)},Tt.prototype.matchOptions=function(t){var e=this;switch(void 0===t&&(t=null),!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((function(i){return e._options[i]===t[i]})):return!0}return!1},Tt.prototype.unlisten=function(){this._node.removeEventListener(this._type,this._closure,this._options)},Object.defineProperties(Tt.prototype,Dt);var xt=function(t,e){this.hash=t,this.add=e};xt.prototype.handle=function(t,e){this.hash===t&&this.add(e)};var Pt={DISCLOSE:m.event("disclose"),CONCEAL:m.event("conceal"),CURRENT:m.event("current")},St={RESET:m.emission("disclosure","reset"),ADDED:m.emission("disclosure","added"),RETRIEVE:m.emission("disclosure","retrieve"),REMOVED:m.emission("disclosure","removed"),GROUP:m.emission("disclosure","group"),UNGROUP:m.emission("disclosure","ungroup"),SPOTLIGHT:m.emission("disclosure","spotlight")},Lt=function(t){function e(e,i,s,n){t.call(this),this.type=e,this._selector=i,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=n,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isEnabled:{configurable:!0},isPristine:{configurable:!0},proxy:{configurable:!0},buttons:{configurable:!0},group:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0},primaryButtons:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Disclosure"},e.prototype.init=function(){this.addDescent(St.RESET,this.reset.bind(this)),this.addDescent(St.GROUP,this.update.bind(this)),this.addDescent(St.UNGROUP,this.update.bind(this)),this.addAscent(St.SPOTLIGHT,this.disclose.bind(this)),this.register('[aria-controls="'+this.id+'"]',this.DisclosureButtonInstanceClass),this.ascend(St.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()},i.isEnabled.get=function(){return t.prototype.isEnabled},i.isEnabled.set=function(e){this.isEnabled!==e&&(t.prototype.isEnabled=e,e?this.ascend(St.ADDED):this.ascend(St.REMOVED))},i.isPristine.get=function(){return this._isPristine},i.proxy.get=function(){var e=this,i=Object.assign.call(this,t.prototype.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});return this.type.canConceal&&(i.conceal=e.conceal.bind(e)),ft(i,{get buttons(){return e.buttons.map((function(t){return t.proxy}))},get group(){var t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})},i.buttons.get=function(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)},e.prototype.update=function(){this.getGroup(),this.retrievePrimaries()},e.prototype.getGroup=function(){if(this.disclosuresGroupInstanceClassName){var t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}else this._group=null},i.group.get=function(){return this._group},e.prototype.disclose=function(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)},e.prototype.conceal=function(t,e){return void 0===e&&(e=!0),!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(St.RESET),!0))},i.isDisclosed.get=function(){return this._isDisclosed},i.isDisclosed.set=function(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?Pt.DISCLOSE:Pt.CONCEAL,this),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(var e=0;e0)},e.prototype.focus=function(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()},i.primaryButtons.get=function(){return this._primaryButtons},e.prototype.retrievePrimaries=function(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))},e.prototype._retrievePrimaries=function(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}},e.prototype.retrieved=function(){},e.prototype._spotlight=function(){var t=this;this.disclose(),this.request((function(){t.ascend(St.SPOTLIGHT)}))},e.prototype._electPrimaries=function(t){var e=this;return t.filter((function(t){return t.canDisclose&&!e.node.contains(t.node)}))},e.prototype.applyAbility=function(t){void 0===t&&(t=!1);var e=!this._primaryButtons.every((function(t){return t.isDisabled}));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(St.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(St.ADDED),this.hash===this.id&&this._spotlight())))},e.prototype.dispose=function(){this._group=null,this._primaryButtons=null,t.prototype.dispose.call(this),this.ascend(St.REMOVED)},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(Ot),kt=function(t){function e(e){t.call(this),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:m.attr(e.id),this._canDisclose=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={isPrimary:{configurable:!0},canDisclose:{configurable:!0},isDisabled:{configurable:!0},proxy:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},dx:{configurable:!0},dy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"DisclosureButton"},i.isPrimary.get=function(){return this.registration.creator.primaryButtons.includes(this)},i.canDisclose.get=function(){return this._canDisclose},i.isDisabled.get=function(){return this.type.canDisable&&this.hasAttribute("disabled")},e.prototype.init=function(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()},i.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{focus:this.focus.bind(this)})},e.prototype.handleClick=function(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)},e.prototype.mutate=function(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())},e.prototype.apply=function(t){var e=this;this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((function(){e._isApplying=!1})))},i.isDisclosed.get=function(){return"true"===this.getAttribute(this.attributeName)},i.isInitiallyDisclosed.get=function(){return this._isInitiallyDisclosed},e.prototype.focus=function(){t.prototype.focus.call(this),this.scrollIntoView()},e.prototype.measure=function(t){var e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y},i.dx.get=function(){return this._dx},i.dy.get=function(){return this._dy},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(Ot),It={PREVENT_CONCEAL:m.attr.selector("prevent-conceal"),GROUP:m.attr("group")},Mt=function(t){function e(e,i){t.call(this,i),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0},members:{configurable:!0},length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0},isGrouped:{configurable:!0},canUngroup:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"DisclosuresGroup"},e.prototype.init=function(){this.addAscent(St.ADDED,this.update.bind(this)),this.addAscent(St.RETRIEVE,this.retrieve.bind(this)),this.addAscent(St.REMOVED,this.update.bind(this)),this.descend(St.GROUP),this._isGrouped="false"!==this.getAttribute(It.GROUP),this.update()},i.proxy.get=function(){var e=this,i={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){var t=e.current;return t?t.proxy:null},get members(){return e.members.map((function(t){return t.proxy}))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return ft.call(this,t.prototype.proxy,i)},e.prototype.validate=function(t){return!0},e.prototype.getMembers=function(){var t=this,e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((function(t){return t.isEnabled})),e.filter((function(e){return!t._members.includes(e)})).forEach((function(t){return t.conceal()}))},e.prototype.retrieve=function(t){void 0===t&&(t=!1),this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))},e.prototype._retrieve=function(){var t=this;if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.isGrouped){if(this.hash)for(var e=0;e=this.length||t===this._index)){this._index=t;for(var e=0;e-1}));if(1===i.length)return i;if(1===(e=t.prototype._electPrimaries.call(this,e)).length)return e;var s=e.filter((function(t){return t.dy>=0}));if(s.length>0&&(e=s),1===e.length)return e;var n=Math.min.apply(Math,e.map((function(t){return t.dy}))),r=e.filter((function(t){return t.dy===n}));return r.length>0&&(e=r),1===e.length||e.sort((function(t,e){return Math.abs(e.dx)-Math.abs(t.dx)})),e},Object.defineProperties(e,i),e}(Lt),Ft=function(t){function e(){t.call(this,"Collapse")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={canUngroup:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"CollapsesGroup"},i.canUngroup.get=function(){return!0},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(Mt),zt={CHANGE:m("equisized")},Ht=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Equisized"},e.prototype.init=function(){this.ascend(zt.CHANGE)},e.prototype.measure=function(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width},e.prototype.adjust=function(t){this.isLegacy&&(this.style.width=t+"px")},e.prototype.dispose=function(){this.ascend(zt.CHANGE)},Object.defineProperties(e,i),e}(Ot),Bt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"EquisizedsGroup"},e.prototype.init=function(){this.isResizing=!0,this.isLoading=!0,this.addAscent(zt.CHANGE,this.resize.bind(this))},e.prototype.load=function(){this.resize()},e.prototype.resize=function(){var t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");var e=Math.max.apply(Math,t.map((function(t){return t.measure()})));this.isLegacy?t.forEach((function(t){return t.adjust(e)})):this.style.setProperty("--equisized-width",e+"px")},Object.defineProperties(e,i),e}(Ot),Kt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={pressed:{configurable:!0},proxy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Toggle"},e.prototype.init=function(){this.pressed="true"===this.pressed,this.listenClick()},e.prototype.handleClick=function(){this.toggle()},e.prototype.toggle=function(){this.pressed="true"!==this.pressed},i.pressed.get=function(){return this.getAttribute("aria-pressed")},i.pressed.set=function(t){this.setAttribute("aria-pressed",t?"true":"false")},i.proxy.get=function(){var e=this,i=Object.assign.call(this,t.prototype.proxy,{toggle:e.toggle.bind(e)});return ft(i,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(Ot),Vt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"InjectSvg"},e.prototype.init=function(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()},i.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})},e.prototype.fetch=function(){var t=this;this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((function(t){return t.text()})).then((function(e){var i=(new DOMParser).parseFromString(e,"text/html");t.svg=i.querySelector("svg"),t.svg&&t.replace()})))},e.prototype.replace=function(){if(this.svg){this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);var t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-','id="'+t+"-artwork-"),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-','"#'+t+"-artwork-"))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,i;e=this.svg,i={"aria-hidden":!0,focusable:!1},Object.keys(i).forEach((function(t){return e.setAttribute(t,i[t])})),this.node.replaceChild(this.svg,this.img)}else this.fetch()},e.prototype.restore=function(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(Ot),Yt={INJECT_SVG:"["+m.attr("inject-svg")+"]"},Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Artwork"},e.prototype.init=function(){this.isLegacy&&this.replace()},i.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{replace:this.replace.bind(this)})},e.prototype.fetch=function(){var t=this;this.xlink=this.node.getAttribute("href");var e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];var i=new XMLHttpRequest;i.onload=function(){var e=(new DOMParser).parseFromString(i.responseText,"text/html");t.realSvgContent=e.getElementById(t.svgName),t.realSvgContent&&("symbol"===t.realSvgContent.tagName?(t.use=e.querySelector('use[href="#'+t.svgName+'"]'),t.use&&t.node.parentNode.insertBefore(t.use,t.node)):t.realSvgContent.classList.add(t.node.classList),t.replace())},i.open("GET",this.svgUrl),i.send()},e.prototype.replace=function(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()},Object.defineProperties(e.prototype,i),Object.defineProperties(e,s),e}(Ot),$t={ARTWORK_USE:m.selector("artwork")+" use"},Xt={ASSESS_FILE:""+m.attr.selector("assess-file"),DETAIL:m.attr.selector("assess-file")+' [class$="__detail"], '+m.attr.selector("assess-file")+' [class*="__detail "]'},Zt={UPDATE:m.emission("assess","update"),ADDED:m.emission("assess","added")},Jt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"AssessFile"},e.prototype.init=function(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Zt.ADDED,this.update.bind(this)),this.addDescent(Zt.ADDED,this.update.bind(this))},e.prototype.getFileLength=function(){var t=this;void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((function(e){t.length=e.headers.get("content-length")||-1,-1===t.length&&p.warn("File size unknown: "+t.href+'\nUnable to get HTTP header: "content-length"'),t.gather()})):this.length=-1},e.prototype.mutate=function(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())},e.prototype.gather=function(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){var t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()},e.prototype.update=function(){this.details&&(this.descend(Zt.UPDATE,this.details),this.ascend(Zt.UPDATE,this.details))},e.prototype.getLang=function(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)},e.prototype.parseExtension=function(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")},e.prototype.getLangDisplayName=function(t){if(this.isLegacy)return t;var e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)},e.prototype.bytesToSize=function(t){if(-1===t)return null;var e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(m.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);var i=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===i)return t+" "+e[i];var s=t/Math.pow(1e3,i),n=Math.round(100*(s+Number.EPSILON))/100;return String(n).replace(".",",")+" "+e[i]},Object.defineProperties(e,i),e}(Ot),Qt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"AssessDetail"},e.prototype.init=function(){this.addDescent(Zt.UPDATE,this.update.bind(this)),this.ascend(Zt.ADDED)},e.prototype.update=function(t){this.node.innerHTML=t.join(" - ")},Object.defineProperties(e,i),e}(Ot),te=["32x9","16x9","3x2","4x3","1x1","3x4","2x3"],ee=function(t,e){return e.map((function(e){return m.selector(t+"--"+e)})).join(",")},ie=m.selector("responsive-img")+", "+ee("responsive-img",te)+", "+m.selector("responsive-vid")+", "+ee("responsive-vid",["16x9","4x3","1x1"]),se={RATIO:m.selector("ratio")+", "+ee("ratio",te)+", "+ie},ne=window[n],re=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={instanceClassName:{configurable:!0}};return i.instanceClassName.get=function(){return"Ratio"},e.prototype.init=function(){if(!ne.internals.support.supportAspectRatio()){for(var t in this.ratio=16/9,this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){var e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}},e.prototype.render=function(){this.getRect().width!==this.currentWidth&&this.update()},e.prototype.update=function(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"},Object.defineProperties(e,i),e}(Ot),oe={TOP:m.selector("placement--top"),RIGHT:m.selector("placement--right"),BOTTOM:m.selector("placement--bottom"),LEFT:m.selector("placement--left")},ae={START:m.selector("placement--start"),CENTER:m.selector("placement--center"),END:m.selector("placement--end")},ce={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},he={START:"align_start",CENTER:"align_center",END:"align_end"},ue={AUTO:"placement_auto",MANUAL:"placement_manual"},le=function(t){function e(e,i,s,n){void 0===e&&(e=ue.AUTO),void 0===i&&(i=[ce.BOTTOM,ce.TOP,ce.LEFT,ce.RIGHT]),void 0===s&&(s=[he.CENTER,he.START,he.END]),void 0===n&&(n=16),t.call(this),this._mode=e,this._places=i,this._aligns=s,this._safeAreaMargin=n,this._isShown=!1,this._x=this._y=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={proxy:{configurable:!0},mode:{configurable:!0},place:{configurable:!0},align:{configurable:!0},isShown:{configurable:!0}},s={instanceClassName:{configurable:!0}};return s.instanceClassName.get=function(){return"Placement"},e.prototype.init=function(){this.isResizing=!0},i.proxy.get=function(){var e=this,i=Object.assign.call(this,t.prototype.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return ft(i,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})},i.mode.get=function(){return this._mode},i.mode.set=function(t){this._mode=t},i.place.get=function(){return this._place},i.place.set=function(t){if(this._place!==t){switch(this._place){case ce.TOP:this.removeClass(oe.TOP);break;case ce.RIGHT:this.removeClass(oe.RIGHT);break;case ce.BOTTOM:this.removeClass(oe.BOTTOM);break;case ce.LEFT:this.removeClass(oe.LEFT)}switch(this._place=t,this._place){case ce.TOP:this.addClass(oe.TOP);break;case ce.RIGHT:this.addClass(oe.RIGHT);break;case ce.BOTTOM:this.addClass(oe.BOTTOM);break;case ce.LEFT:this.addClass(oe.LEFT)}}},i.align.get=function(){return this._align},i.align.set=function(t){if(this._align!==t){switch(this._align){case he.START:this.removeClass(ae.START);break;case he.CENTER:this.removeClass(ae.CENTER);break;case he.END:this.removeClass(ae.END)}switch(this._align=t,this._align){case he.START:this.addClass(ae.START);break;case he.CENTER:this.addClass(ae.CENTER);break;case he.END:this.addClass(ae.END)}}},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},i.isShown.get=function(){return this._isShown},i.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)},e.prototype.setReferent=function(t){this._referent=t},e.prototype.render=function(){if(this._referent){if(this.referentRect=this._referent.getRect(),this.rect=this.getRect(),this.safeArea=this.getSafeArea(),this.mode===ue.AUTO)switch(this.place=this.getPlace(),this.place){case ce.TOP:case ce.BOTTOM:this.align=this.getHorizontalAlign();break;case ce.LEFT:case ce.RIGHT:this.align=this.getVerticalAlign()}var t,e;switch(this.place){case ce.TOP:e=this.referentRect.top-this.rect.top-this.rect.height;break;case ce.RIGHT:t=this.referentRect.left-this.rect.left+this.referentRect.width;break;case ce.BOTTOM:e=this.referentRect.top-this.rect.top+this.referentRect.height;break;case ce.LEFT:t=this.referentRect.left-this.rect.left-this.rect.width}switch(this.place){case ce.TOP:case ce.BOTTOM:switch(this.align){case he.CENTER:t=this.referentRect.left-this.rect.left+.5*this.referentRect.width-.5*this.rect.width;break;case he.START:t=this.referentRect.left-this.rect.left;break;case he.END:t=this.referentRect.left-this.rect.left+this.referentRect.width-this.rect.width}break;case ce.RIGHT:case ce.LEFT:switch(this.align){case he.CENTER:e=this.referentRect.top-this.rect.top+.5*this.referentRect.height-.5*this.rect.height;break;case he.START:e=this.referentRect.top-this.rect.top;break;case he.END:e=this.referentRect.top-this.rect.top-this.rect.height}}this._x+=t+.5|0,this._y+=e+.5|0,this.node.style.transform="translate("+this._x+"px,"+this._y+"px)"}},e.prototype.getPlace=function(){for(var t=0,e=this._places;tthis.safeArea.top)return ce.TOP;break;case ce.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return ce.LEFT}}return this._places[0]},e.prototype.getHorizontalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return he.END}}return this._aligns[0]},e.prototype.getVerticalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return he.END}}return this._aligns[0]},e.prototype.getSafeArea=function(){for(var t,e,i=this.node,s=this._safeAreaMargin,n=window.innerWidth-this._safeAreaMargin,r=window.innerHeight-this._safeAreaMargin,o=this._safeAreaMargin;i&&i!==document.body;){i=i.parentElement;var a=window.getComputedStyle(i),c=/(visible|(\w+))(\s(visible|(\w+)))?/.exec(a.overflow);if(t=void 0!==c[2],e=void 0!==c[3]?void 0!==c[5]:void 0!==c[2],t||e){var h=i.getBoundingClientRect();t&&(h.left>o&&(o=h.left),h.rights&&(s=h.top),h.bottomtable tbody tr:last-child{background-image:none}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle--error:before,.fr-toggle--valid:before{content:""}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ @@ -188,4 +188,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}.fr-input:-ms-input-placeholder{color:#666}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr.main.min.css b/dsfr/static/dsfr/dist/dsfr.main.min.css index 5dfc18881..fdf1767ce 100644 --- a/dsfr/static/dsfr/dist/dsfr.main.min.css +++ b/dsfr/static/dsfr/dist/dsfr.main.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(fonts/Marianne-Light.woff2) format("woff2"),url(fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(fonts/Marianne-Light_Italic.woff2) format("woff2"),url(fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(fonts/Marianne-Regular.woff2) format("woff2"),url(fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(fonts/Marianne-Medium.woff2) format("woff2"),url(fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(fonts/Marianne-Bold.woff2) format("woff2"),url(fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(fonts/Spectral-Regular.woff2) format("woff2"),url(fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(fonts/Spectral-ExtraBold.woff2) format("woff2"),url(fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{left:0;position:fixed;top:0}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(icons/weather/flashlight-fill.svg);mask-image:url(icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/question-line.svg);mask-image:url(icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/media/fullscreen-line.svg);mask-image:url(icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--theme-fill.svg);mask-image:url(icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/account-circle-fill.svg);mask-image:url(icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/team-line.svg);mask-image:url(icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/business/briefcase-fill.svg);mask-image:url(icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-down-line.svg);mask-image:url(icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-line.svg);mask-image:url(icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/editor/fr--quote-line.svg);mask-image:url(icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(icons/system/checkbox-circle-line.svg);mask-image:url(icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/error-warning-fill.svg);mask-image:url(icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/heavy-showers-fill.svg);mask-image:url(icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/tornado-fill.svg);mask-image:url(icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/typhoon-fill.svg);mask-image:url(icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-fill.svg);mask-image:url(icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-2-fill.svg);mask-image:url(icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-line.svg);mask-image:url(icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-line.svg);mask-image:url(icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-line.svg);mask-image:url(icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/editor/translate-2.svg);mask-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(icons/media/align-left.svg);mask-image:url(icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(icons/logo/fr--dailymotion-fill.svg);mask-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(icons/logo/github-fill.svg);mask-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-fill.svg);mask-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(icons/logo/snapchat-fill.svg);mask-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(icons/logo/telegram-fill.svg);mask-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-fill.svg);mask-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(icons/logo/fr--tiktok-fill.svg);mask-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(icons/logo/twitch-fill.svg);mask-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(icons/logo/vimeo-fill.svg);mask-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(icons/system/menu-fill.svg);mask-image:url(icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(fonts/Marianne-Light.woff2) format("woff2"),url(fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(fonts/Marianne-Light_Italic.woff2) format("woff2"),url(fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(fonts/Marianne-Regular.woff2) format("woff2"),url(fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(fonts/Marianne-Medium.woff2) format("woff2"),url(fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(fonts/Marianne-Bold.woff2) format("woff2"),url(fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(fonts/Spectral-Regular.woff2) format("woff2"),url(fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(fonts/Spectral-ExtraBold.woff2) format("woff2"),url(fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse--expanded{overflow-x:hidden;overflow-y:auto}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{position:fixed;width:max-content}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(icons/weather/flashlight-fill.svg);mask-image:url(icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/question-line.svg);mask-image:url(icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/media/fullscreen-line.svg);mask-image:url(icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--theme-fill.svg);mask-image:url(icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/account-circle-fill.svg);mask-image:url(icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/team-line.svg);mask-image:url(icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/business/briefcase-fill.svg);mask-image:url(icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-down-line.svg);mask-image:url(icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-line.svg);mask-image:url(icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/editor/fr--quote-line.svg);mask-image:url(icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(icons/system/checkbox-circle-line.svg);mask-image:url(icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/error-warning-fill.svg);mask-image:url(icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/heavy-showers-fill.svg);mask-image:url(icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/typhoon-fill.svg);mask-image:url(icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-fill.svg);mask-image:url(icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-2-fill.svg);mask-image:url(icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-line.svg);mask-image:url(icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-line.svg);mask-image:url(icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-line.svg);mask-image:url(icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/editor/translate-2.svg);mask-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(icons/media/align-left.svg);mask-image:url(icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(icons/logo/fr--dailymotion-fill.svg);mask-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(icons/logo/github-fill.svg);mask-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-fill.svg);mask-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(icons/logo/snapchat-fill.svg);mask-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(icons/logo/telegram-fill.svg);mask-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-fill.svg);mask-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(icons/logo/fr--tiktok-fill.svg);mask-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(icons/logo/twitch-fill.svg);mask-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(icons/logo/vimeo-fill.svg);mask-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(icons/system/menu-fill.svg);mask-image:url(icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */.fr-hidden-sm{display:none!important}.fr-unhidden-sm{display:inherit!important}.fr-sr-only-sm{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-sm-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-sm-2--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-sm-3--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-sm-4--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-sm-5--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-sm-6--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-sm-7--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-sm-8--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-sm-9--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-sm-10--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-sm-11--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-sm-12--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%} /*! media sm */ @@ -70,7 +70,7 @@ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem} /*! media md */ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem} /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)} /*! media md */ @@ -80,7 +80,7 @@ /*! media md */ /*! media md */.fr-download--card{padding:2rem 2rem 5rem}.fr-download--card .fr-download__link{font-size:1.375rem;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1.5rem;bottom:2rem;right:2rem}.fr-download--card .fr-download__desc{margin-top:.75rem}.fr-download--card .fr-download__detail{bottom:2rem;left:2rem}.fr-downloads-group__title{font-size:1.5rem;line-height:2rem}.fr-downloads-group--bordered{padding:2rem 2rem .5rem}.fr-downloads-group .fr-download{margin-bottom:1.5rem} /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem} - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover} /*! media md */ @@ -141,11 +141,11 @@ /*! media lg */ /*! media lg */ /*! media lg */ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0} - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */ /*! media lg */ /*! media lg */ @@ -154,7 +154,7 @@ /*! media lg */.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-end;position:absolute;width:56%} /*! media lg */ /*! media lg */ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ /*! media xl */ /*! media xl */.fr-hidden-xl{display:none!important}.fr-unhidden-xl{display:inherit!important}.fr-sr-only-xl{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{max-width:78rem}.fr-container-xl{max-width:78rem;padding-left:1.5rem;padding-right:1.5rem}.fr-container-xl--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-xl--gutters{margin:-.75rem}.fr-grid-row-xl--gutters>.fr-col,.fr-grid-row-xl--gutters>[class*=" fr-col-"],.fr-grid-row-xl--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-xl--no-gutters{margin:0}.fr-grid-row-xl--no-gutters>.fr-col,.fr-grid-row-xl--no-gutters>[class*=" fr-col-"],.fr-grid-row-xl--no-gutters>[class^=fr-col-]{padding:0}.fr-col-xl{flex:1}.fr-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-xl-1:not(.fr-col-offset-xl-1--right){margin-left:8.33333%}.fr-col-offset-xl-1--right{margin-right:8.33333%}.fr-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-xl-2:not(.fr-col-offset-xl-2--right){margin-left:16.66667%}.fr-col-offset-xl-2--right{margin-right:16.66667%}.fr-col-xl-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-xl-3:not(.fr-col-offset-xl-3--right){margin-left:25%}.fr-col-offset-xl-3--right{margin-right:25%}.fr-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-xl-4:not(.fr-col-offset-xl-4--right){margin-left:33.33333%}.fr-col-offset-xl-4--right{margin-right:33.33333%}.fr-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-xl-5:not(.fr-col-offset-xl-5--right){margin-left:41.66667%}.fr-col-offset-xl-5--right{margin-right:41.66667%}.fr-col-xl-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-xl-6:not(.fr-col-offset-xl-6--right){margin-left:50%}.fr-col-offset-xl-6--right{margin-right:50%}.fr-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-xl-7:not(.fr-col-offset-xl-7--right){margin-left:58.33333%}.fr-col-offset-xl-7--right{margin-right:58.33333%}.fr-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-xl-8:not(.fr-col-offset-xl-8--right){margin-left:66.66667%}.fr-col-offset-xl-8--right{margin-right:66.66667%}.fr-col-xl-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-xl-9:not(.fr-col-offset-xl-9--right){margin-left:75%}.fr-col-offset-xl-9--right{margin-right:75%}.fr-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-xl-10:not(.fr-col-offset-xl-10--right){margin-left:83.33333%}.fr-col-offset-xl-10--right{margin-right:83.33333%}.fr-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-xl-11:not(.fr-col-offset-xl-11--right){margin-left:91.66667%}.fr-col-offset-xl-11--right{margin-right:91.66667%}.fr-col-xl-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-xl-12:not(.fr-col-offset-xl-12--right){margin-left:100%}.fr-col-offset-xl-12--right{margin-right:100%} /*! media xl */ @@ -205,4 +205,4 @@ /*! media xl */.fr-consent-manager__header .fr-consent-service__radios,.fr-consent-manager__header .fr-consent-service__title{width:50%} /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,select[class*=" fr-fi-"]:disabled:after,select[class*=" fr-fi-"]:disabled:before,select[class*=" fr-icon-"]:disabled:after,select[class*=" fr-icon-"]:disabled:before,select[class^=fr-fi-]:disabled:after,select[class^=fr-fi-]:disabled:before,select[class^=fr-icon-]:disabled:after,select[class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr.min.css b/dsfr/static/dsfr/dist/dsfr.min.css index 0525576f3..2062c2c79 100644 --- a/dsfr/static/dsfr/dist/dsfr.min.css +++ b/dsfr/static/dsfr/dist/dsfr.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(fonts/Marianne-Light.woff2) format("woff2"),url(fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(fonts/Marianne-Light_Italic.woff2) format("woff2"),url(fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(fonts/Marianne-Regular.woff2) format("woff2"),url(fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(fonts/Marianne-Medium.woff2) format("woff2"),url(fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(fonts/Marianne-Bold.woff2) format("woff2"),url(fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(fonts/Spectral-Regular.woff2) format("woff2"),url(fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(fonts/Spectral-ExtraBold.woff2) format("woff2"),url(fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{left:0;position:fixed;top:0}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(icons/weather/flashlight-fill.svg);mask-image:url(icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/question-line.svg);mask-image:url(icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/media/fullscreen-line.svg);mask-image:url(icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--theme-fill.svg);mask-image:url(icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/account-circle-fill.svg);mask-image:url(icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/team-line.svg);mask-image:url(icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/business/briefcase-fill.svg);mask-image:url(icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-down-line.svg);mask-image:url(icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-line.svg);mask-image:url(icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/editor/fr--quote-line.svg);mask-image:url(icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(icons/system/checkbox-circle-line.svg);mask-image:url(icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/error-warning-fill.svg);mask-image:url(icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/heavy-showers-fill.svg);mask-image:url(icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/tornado-fill.svg);mask-image:url(icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/typhoon-fill.svg);mask-image:url(icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-fill.svg);mask-image:url(icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-2-fill.svg);mask-image:url(icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-line.svg);mask-image:url(icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-line.svg);mask-image:url(icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-line.svg);mask-image:url(icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/editor/translate-2.svg);mask-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(icons/media/align-left.svg);mask-image:url(icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(icons/logo/fr--dailymotion-fill.svg);mask-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(icons/logo/github-fill.svg);mask-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-fill.svg);mask-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(icons/logo/snapchat-fill.svg);mask-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(icons/logo/telegram-fill.svg);mask-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-fill.svg);mask-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(icons/logo/fr--tiktok-fill.svg);mask-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(icons/logo/twitch-fill.svg);mask-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(icons/logo/vimeo-fill.svg);mask-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(icons/system/menu-fill.svg);mask-image:url(icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(fonts/Marianne-Light.woff2) format("woff2"),url(fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(fonts/Marianne-Light_Italic.woff2) format("woff2"),url(fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(fonts/Marianne-Regular.woff2) format("woff2"),url(fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(fonts/Marianne-Medium.woff2) format("woff2"),url(fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(fonts/Marianne-Bold.woff2) format("woff2"),url(fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(fonts/Spectral-Regular.woff2) format("woff2"),url(fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(fonts/Spectral-ExtraBold.woff2) format("woff2"),url(fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse--expanded{overflow-x:hidden;overflow-y:auto}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{position:fixed;width:max-content}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(icons/weather/flashlight-fill.svg);mask-image:url(icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/question-line.svg);mask-image:url(icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/media/fullscreen-line.svg);mask-image:url(icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--theme-fill.svg);mask-image:url(icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/account-circle-fill.svg);mask-image:url(icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/user/team-line.svg);mask-image:url(icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/business/briefcase-fill.svg);mask-image:url(icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-down-line.svg);mask-image:url(icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-up-line.svg);mask-image:url(icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/editor/fr--quote-line.svg);mask-image:url(icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-left-s-line.svg);mask-image:url(icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-right-s-line.svg);mask-image:url(icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(icons/system/checkbox-circle-line.svg);mask-image:url(icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(icons/system/fr--success-fill.svg);mask-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(icons/system/fr--error-fill.svg);mask-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/close-line.svg);mask-image:url(icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--info-fill.svg);mask-image:url(icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/system/error-warning-fill.svg);mask-image:url(icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/heavy-showers-fill.svg);mask-image:url(icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(icons/weather/typhoon-fill.svg);mask-image:url(icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--warning-fill.svg);mask-image:url(icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-fill.svg);mask-image:url(icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(icons/system/fr--alert-warning-2-fill.svg);mask-image:url(icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-line.svg);mask-image:url(icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-line.svg);mask-image:url(icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-line.svg);mask-image:url(icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/facebook-circle-line.svg);mask-image:url(icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/twitter-line.svg);mask-image:url(icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/logo/linkedin-box-line.svg);mask-image:url(icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/mail-line.svg);mask-image:url(icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/business/links-fill.svg);mask-image:url(icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(icons/system/arrow-right-line.svg);mask-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(icons/system/external-link-line.svg);mask-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(icons/system/download-line.svg);mask-image:url(icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(icons/editor/translate-2.svg);mask-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(icons/media/align-left.svg);mask-image:url(icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/menu-2-fill.svg);mask-image:url(icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(icons/system/arrow-down-s-line.svg);mask-image:url(icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(icons/logo/fr--dailymotion-fill.svg);mask-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(icons/logo/github-fill.svg);mask-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(icons/logo/mastodon-fill.svg);mask-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(icons/logo/snapchat-fill.svg);mask-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(icons/logo/telegram-fill.svg);mask-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(icons/logo/threads-fill.svg);mask-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(icons/logo/fr--tiktok-fill.svg);mask-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(icons/logo/twitch-fill.svg);mask-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(icons/logo/vimeo-fill.svg);mask-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(icons/logo/facebook-circle-fill.svg);mask-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(icons/logo/twitter-fill.svg);mask-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(icons/logo/twitter-x-fill.svg);mask-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(icons/logo/instagram-fill.svg);mask-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(icons/logo/linkedin-box-fill.svg);mask-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(icons/logo/youtube-fill.svg);mask-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(icons/system/menu-fill.svg);mask-image:url(icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(icons/system/search-line.svg);mask-image:url(icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */.fr-hidden-sm{display:none!important}.fr-unhidden-sm{display:inherit!important}.fr-sr-only-sm{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-sm-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-sm-2--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-sm-3--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-sm-4--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-sm-5--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-sm-6--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-sm-7--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-sm-8--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-sm-9--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-sm-10--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-sm-11--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-sm-12--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%} /*! media sm */ @@ -117,7 +117,7 @@ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem} /*! media md */ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem} /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)} /*! media md */ @@ -127,7 +127,7 @@ /*! media md */ /*! media md */.fr-download--card{padding:2rem 2rem 5rem}.fr-download--card .fr-download__link{font-size:1.375rem;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1.5rem;bottom:2rem;right:2rem}.fr-download--card .fr-download__desc{margin-top:.75rem}.fr-download--card .fr-download__detail{bottom:2rem;left:2rem}.fr-downloads-group__title{font-size:1.5rem;line-height:2rem}.fr-downloads-group--bordered{padding:2rem 2rem .5rem}.fr-downloads-group .fr-download{margin-bottom:1.5rem} /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem} - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover} /*! media md */ @@ -235,11 +235,11 @@ /*! media lg */ /*! media lg */ /*! media lg */ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0} - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */ /*! media lg */ /*! media lg */ @@ -248,7 +248,7 @@ /*! media lg */.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-end;position:absolute;width:56%} /*! media lg */ /*! media lg */ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} /*! media lg */ /*! media lg */ /*! media lg */ @@ -393,4 +393,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}}@media print{body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-no-print{display:none}h1,h2,h3,h4{break-after:avoid;page-break-after:avoid}p{orphans:3;widows:3}.fr-text--sm,.fr-text--xs{font-size:1rem!important;line-height:1.5rem!important;margin:var(--text-spacing)}.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,select[class*=" fr-fi-"]:disabled:after,select[class*=" fr-fi-"]:disabled:before,select[class*=" fr-icon-"]:disabled:after,select[class*=" fr-icon-"]:disabled:before,select[class^=fr-fi-]:disabled:after,select[class^=fr-fi-]:disabled:before,select[class^=fr-icon-]:disabled:after,select[class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}.fr-input:-ms-input-placeholder{color:#666}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}}@media print{body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-no-print{display:none}h1,h2,h3,h4{break-after:avoid;page-break-after:avoid}p{orphans:3;widows:3}.fr-text--sm,.fr-text--xs{font-size:1rem!important;line-height:1.5rem!important;margin:var(--text-spacing)}.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr.module.min.js b/dsfr/static/dsfr/dist/dsfr.module.min.js index 75210fb2e..1c13133d3 100644 --- a/dsfr/static/dsfr/dist/dsfr.module.min.js +++ b/dsfr/static/dsfr/dist/dsfr.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const e=new class{constructor(){this.modules={}}create(e){const t=new e;this.modules[t.type]=t}getModule(e){return this.modules[e]}add(e,t){this.modules[e].add(t)}remove(e,t){this.modules[e].remove(t)}get isActive(){return this._isActive}set isActive(e){if(e===this._isActive)return;this._isActive=e;const t=Object.keys(this.modules).map((e=>this.modules[e]));if(e)for(const e of t)e.activate();else for(const e of t)e.deactivate()}get isLegacy(){return this._isLegacy}set isLegacy(e){e!==this._isLegacy&&(this._isLegacy=e)}},t="fr",s="dsfr",i="@gouvfr",n="1.12.1";class r{constructor(e,t,s,i){switch(this.level=e,this.light=t,this.dark=s,i){case"warn":this.logger=console.warn;break;case"error":this.logger=console.error;break;default:this.logger=console.log}}log(...e){const t=new a(s);for(const s of e)t.add(s);this.print(t)}print(e){e.setColor(this.color),this.logger.apply(console,e.getMessage())}get color(){return window.matchMedia("(prefers-color-scheme: dark)").matches?this.dark:this.light}}class a{constructor(e){this.inputs=["%c"],this.styles=["font-family:Marianne","line-height: 1.5"],this.objects=[],e&&this.add(`${e} :`)}add(e){switch(typeof e){case"object":case"function":this.inputs.push("%o "),this.objects.push(e);break;default:this.inputs.push(`${e} `)}}setColor(e){this.styles.push(`color:${e}`)}getMessage(){return[this.inputs.join(""),this.styles.join(";"),...this.objects]}}const o={log:new r(0,"#616161","#989898"),debug:new r(1,"#000091","#8B8BFF"),info:new r(2,"#007c3b","#00ed70"),warn:new r(3,"#ba4500","#fa5c00","warn"),error:new r(4,"#D80600","#FF4641","error")};const h=new class{constructor(){this.level=2;for(const e in o){const t=o[e];this[e]=(...e)=>{this.level<=t.level&&t.log.apply(t,e)},this[e].print=t.print.bind(t)}}state(){const t=new a;t.add(e),this.log.print(t)}tree(){const t=e.getModule("stage");if(!t)return;const s=new a;this._branch(t.root,0,s),this.log.print(s)}_branch(e,t,s){let i="";if(t>0){let e="";for(let s=0;s{"loading"!==document.readyState?window.requestAnimationFrame(e):document.addEventListener("DOMContentLoaded",e)},l={AUTO:"auto",MANUAL:"manual",RUNTIME:"runtime",LOADED:"loaded",VUE:"vue",ANGULAR:"angular",REACT:"react"};const d=new class{constructor(){this._mode=l.AUTO,this.isStarted=!1,this.starting=this.start.bind(this),this.preventManipulation=!1}configure(e={},t,s){this.startCallback=t;const i=e.production&&(!s||"false"!==s.production);switch(!0){case s&&!isNaN(s.level):h.level=Number(s.level);break;case s&&s.verbose&&("true"===s.verbose||1===s.verbose):h.level=0;break;case i:h.level=999;break;case e.verbose:h.level=0}h.info(`version ${n}`),this.mode=e.mode||l.AUTO}set mode(e){switch(e){case l.AUTO:this.preventManipulation=!1,t=this.starting,c(t);break;case l.LOADED:this.preventManipulation=!1,c(this.starting);break;case l.RUNTIME:this.preventManipulation=!1,this.start();break;case l.MANUAL:this.preventManipulation=!1;break;case l.VUE:case l.ANGULAR:case l.REACT:this.preventManipulation=!0;break;default:return void h.error("Illegal mode")}var t;this._mode=e,h.info(`mode set to ${e}`)}get mode(){return this._mode}start(){h.info("start"),this.startCallback()}};class u{constructor(){this._collection=[]}forEach(e){this._collection.forEach(e)}map(e){return this._collection.map(e)}get length(){return this._collection.length}add(e){return!(this._collection.indexOf(e)>-1)&&(this._collection.push(e),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)}remove(e){const t=this._collection.indexOf(e);if(-1===t)return!1;this._collection.splice(t,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()}execute(...e){for(const t of this._collection)t&&t.apply(null,e)}clear(){this._collection.length=0}clone(){const e=new u;return e._collection=this._collection.slice(),e}get collection(){return this._collection}}class g extends u{constructor(e){super(),this.type=e,this.isActive=!1}activate(){}deactivate(){}}const p=e=>`${t}-${e}`;p.selector=(e,t)=>(void 0===t&&(t="."),`${t}${p(e)}`),(p.attr=e=>`data-${p(e)}`).selector=(e,t)=>{let s=p.attr(e);return void 0!==t&&(s+=`="${t}"`),`[${s}]`},p.event=e=>`${s}.${e}`,p.emission=(e,t)=>`emission:${e}.${t}`;const m=(e,t)=>Array.prototype.slice.call(e.querySelectorAll(t)),_=(e,t)=>{const s=e.parentElement;return s.matches(t)?s:s===document.documentElement?null:_(s,t)};class b{constructor(e,t,s){this.selector=e,this.InstanceClass=t,this.creator=s,this.instances=new u,this.isIntroduced=!1,this._instanceClassName=this.InstanceClass.instanceClassName,this._instanceClassNames=this.getInstanceClassNames(this.InstanceClass),this._property=this._instanceClassName.substring(0,1).toLowerCase()+this._instanceClassName.substring(1);const i=this._instanceClassName.replace(/[^a-zA-Z0-9]+/g,"-").replace(/([A-Z]+)([A-Z][a-z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([0-9])([^0-9])/g,"$1-$2").replace(/([^0-9])([0-9])/g,"$1-$2").toLowerCase();this._attribute=p.attr(`js-${i}`)}getInstanceClassNames(e){const t=Object.getPrototypeOf(e);return t&&"Instance"!==t.instanceClassName?[...this.getInstanceClassNames(t),e.instanceClassName]:[e.instanceClassName]}hasInstanceClassName(e){return this._instanceClassNames.indexOf(e)>-1}introduce(){this.isIntroduced||(this.isIntroduced=!0,e.getModule("stage").parse(document.documentElement,this))}parse(e,t){const s=[];return e.matches&&e.matches(this.selector)&&s.push(e),!t&&e.querySelectorAll&&e.querySelector(this.selector)&&s.push.apply(s,m(e,this.selector)),s}create(e){if(!e.node.matches(this.selector))return;const t=new this.InstanceClass;return this.instances.add(t),t}remove(e){this.instances.remove(e)}dispose(){const e=this.instances.collection;for(let t=e.length-1;t>-1;t--)e[t]._dispose();this.creator=null}get instanceClassName(){return this._instanceClassName}get instanceClassNames(){return this._instanceClassNames}get property(){return this._property}get attribute(){return this._attribute}}class E extends g{constructor(){super("register")}register(t,s,i){const n=new b(t,s,i);return this.add(n),e.isActive&&n.introduce(),n}activate(){for(const e of this.collection)e.introduce()}remove(e){e.dispose(),super.remove(e)}}let f=0;class T{constructor(e,t){t?this.id=t:(f++,this.id=f),this.node=e,this.attributeNames=[],this.instances=[],this._children=[],this._parent=null,this._projects=[]}get proxy(){const e=this;if(!this._proxy){this._proxy={id:this.id,get parent(){return e.parent?e.parent.proxy:null},get children(){return e.children.map((e=>e.proxy))}};for(const e of this.instances)this._proxy[e.registration.property]=e.proxy}return this._proxy}get html(){if(!this.node||!this.node.outerHTML)return"";const e=this.node.outerHTML.indexOf(">");return this.node.outerHTML.substring(0,e+1)}project(e){-1===this._projects.indexOf(e)&&this._projects.push(e)}populate(){const e=this._projects.slice();this._projects.length=0;for(const t of e)this.create(t)}create(e){if(this.hasInstance(e.instanceClassName))return;h.debug(`create instance of ${e.instanceClassName} on element [${this.id}]`);const t=e.create(this);this.instances.push(t),t._config(this,e),this._proxy&&(this._proxy[e.property]=t.proxy)}remove(e){const t=this.instances.indexOf(e);t>-1&&this.instances.splice(t,1),this._proxy&&delete this._proxy[e.registration.property]}get parent(){return this._parent}get ascendants(){return[this.parent,...this.parent.ascendants]}get children(){return this._children}get descendants(){const e=[...this._children];return this._children.forEach((t=>e.push(...t.descendants))),e}addChild(e,t){return this._children.indexOf(e)>-1?null:(e._parent=this,!isNaN(t)&&t>-1&&t=0;e--){const t=this.instances[e];t&&t._dispose()}this.instances.length=0,e.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug(`remove element [${this.id}] ${this.html}`)}prepare(e){-1===this.attributeNames.indexOf(e)&&this.attributeNames.push(e)}examine(){const e=this.attributeNames.slice();this.attributeNames.length=0;for(let t=this.instances.length-1;t>-1;t--)this.instances[t].examine(e)}}const A={CLICK:p.emission("root","click"),KEYDOWN:p.emission("root","keydown"),KEYUP:p.emission("root","keyup")},S={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},v=e=>Object.values(S).filter((t=>t.value===e))[0];class y extends T{constructor(){super(document.documentElement,"root"),this.node.setAttribute(p.attr("js"),!0),this.listen()}listen(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})}click(e){this.emit(A.CLICK,e.target)}keydown(e){this.emit(A.KEYDOWN,v(e.keyCode))}keyup(e){this.emit(A.KEYUP,v(e.keyCode))}}class C extends g{constructor(){super("stage"),this.root=new y,super.add(this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}hasElement(e){for(const t of this.collection)if(t.node===e)return!0;return!1}getElement(e){for(const t of this.collection)if(t.node===e)return t;const t=new T(e);return this.add(t),h.debug(`add element [${t.id}] ${t.html}`),t}getProxy(e){if(!this.hasElement(e))return null;return this.getElement(e).proxy}add(e){super.add(e),this.put(e,this.root)}put(e,t){let s=0;for(let i=t.children.length-1;i>-1;i--){const n=t.children[i],r=e.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(e,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)t.removeChild(n),e.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){s=i+1;break}}t.addChild(e,s)}activate(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})}deactivate(){this.observer.disconnect()}mutate(e){const t=[];e.forEach((e=>{switch(e.type){case"childList":e.removedNodes.forEach((e=>this.dispose(e))),e.addedNodes.forEach((e=>this.parse(e)));break;case"attributes":if(this.hasElement(e.target)){const s=this.getElement(e.target);s.prepare(e.attributeName),-1===t.indexOf(s)&&t.push(s);for(const e of s.descendants)-1===t.indexOf(e)&&t.push(e)}-1===this.modifications.indexOf(e.target)&&this.modifications.push(e.target)}})),t.forEach((e=>e.examine())),this.modifications.length&&!this.willModify&&(this.willModify=!0,window.requestAnimationFrame(this.modifying))}modify(){this.willModify=!1;const e=this.modifications.slice();this.modifications.length=0;for(const t of e)document.documentElement.contains(t)&&this.parse(t)}dispose(e){const t=[];this.forEach((s=>{e.contains(s.node)&&t.push(s)}));for(const e of t)e.dispose(),this.remove(e)}parse(t,s,i){const n=s?[s]:e.getModule("register").collection,r=[];for(const e of n){const s=e.parse(t,i);for(const t of s){const s=this.getElement(t);s.project(e),-1===r.indexOf(s)&&r.push(s)}}for(const e of r)e.populate()}}class N extends g{constructor(){super("render"),this.rendering=this.render.bind(this),this.nexts=new u}activate(){window.requestAnimationFrame(this.rendering)}request(e){this.nexts.add(e)}render(){if(!e.isActive)return;if(window.requestAnimationFrame(this.rendering),this.forEach((e=>e.render())),!this.nexts.length)return;const t=this.nexts.clone();this.nexts.clear(),t.forEach((e=>e.next()))}}class w extends g{constructor(){super("resize"),this.requireResize=!1,this.resizing=this.resize.bind(this);const e=this.request.bind(this);document.fonts&&document.fonts.ready.then(e),window.addEventListener("resize",e),window.addEventListener("orientationchange",e)}activate(){this.request()}request(){this.requireResize||(this.requireResize=!0,window.requestAnimationFrame(this.resizing))}resize(){this.requireResize&&(this.forEach((e=>e.resize())),this.requireResize=!1)}}class D extends g{constructor(){super("lock"),this._isLocked=!1,this._scrollY=0,this.onPopulate=this.lock.bind(this),this.onEmpty=this.unlock.bind(this)}get isLocked(){return this._isLocked}lock(){if(!this._isLocked){this._isLocked=!0,this._scrollY=window.scrollY;const e=window.innerWidth-document.documentElement.clientWidth;document.documentElement.setAttribute(p.attr("scrolling"),"false"),document.body.style.top=-this._scrollY+"px",this.behavior=getComputedStyle(document.documentElement).getPropertyValue("scroll-behavior"),"smooth"===this.behavior&&(document.documentElement.style.scrollBehavior="auto"),e>0&&document.documentElement.style.setProperty("--scrollbar-width",`${e}px`)}}unlock(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(p.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"))}move(e){this._isLocked?(this._scrollY+=e,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+e)}}class R extends g{constructor(){super("load"),this.loading=this.load.bind(this)}activate(){window.addEventListener("load",this.loading)}load(){this.forEach((e=>e.load()))}}const L=["Marianne","Spectral"];class I extends g{constructor(){super("font-swap"),this.swapping=this.swap.bind(this)}activate(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)}swap(){const e=L.filter((e=>document.fonts.check(`16px ${e}`)));this.forEach((t=>t.swapFont(e)))}}class x extends g{constructor(){super("mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}listen(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))}unlisten(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))}request(e){this._isMoving&&(this.point={x:e.clientX,y:e.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))}move(){this.requireMove&&(this.forEach((e=>e.mouseMove(this.point))),this.requireMove=!1)}}class O extends g{constructor(){super("hash"),this.handling=this.handle.bind(this),this.getLocationHash()}activate(){window.addEventListener("hashchange",this.handling)}deactivate(){window.removeEventListener("hashchange",this.handling)}_sanitize(e){return"#"===e.charAt(0)?e.substring(1):e}set hash(e){const t=this._sanitize(e);this._hash!==t&&(window.location.hash=t)}get hash(){return this._hash}getLocationHash(){const e=window.location.hash;this._hash=this._sanitize(e)}handle(e){this.getLocationHash(),this.forEach((t=>t.handleHash(this._hash,e)))}}const P=new class{constructor(){e.create(E),e.create(C),e.create(N),e.create(w),e.create(D),e.create(R),e.create(I),e.create(x),e.create(O);const t=e.getModule("register");this.register=t.register.bind(t)}get isActive(){return e.isActive}start(){h.debug("START"),e.isActive=!0}stop(){h.debug("STOP"),e.isActive=!1}};const k=e=>{switch(!0){case e.hover:return"-hover";case e.active:return"-active";default:return""}},M=new class{getColor(e,t,s,i={}){const n=`--${e}-${t}-${s}${k(i)}`;return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null}},G=e=>"."===e.charAt(0)?e.substr(1):e,$=e=>{switch(!0){case!e.className:return[];case"string"==typeof e.className:return e.className.split(" ");case"string"==typeof e.className.baseVal:return e.className.baseVal.split(" ")}return[]},H=(e,t,s)=>{t=G(t);const i=$(e),n=i.indexOf(t);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(t),e.className=i.join(" ")},U=(e,t)=>H(e,t),B=(e,t)=>H(e,t,!0),F=(e,t)=>$(e).indexOf(G(t))>-1,W=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),q=e=>e.querySelectorAll(W);let z=0;const j=e=>{if(!document.getElementById(e))return e;let t=!0;const s=e;for(;t;)z++,e=`${s}-${z}`,t=document.getElementById(e);return e},V={addClass:U,hasClass:F,removeClass:B,queryParentSelector:_,querySelectorAllArray:m,queryActions:q,uniqueId:j};const K={DataURISVG:class{constructor(e=0,t=0){this._width=e,this._height=t,this._content=""}get width(){return this._width}set width(e){this._width=e}get height(){return this._height}set height(e){this._height=e}get content(){return this._content}set content(e){this._content=e}getDataURI(e=!1){let t=`${this._content}`;return t=t.replace(/#/gi,"%23"),e&&(t=t.replace(//gi,"%3E"),t=t.replace(/"/gi,"'"),t=t.replace(/{/gi,"%7B"),t=t.replace(/}/gi,"%7D")),`data:image/svg+xml;charset=utf8,${t}`}}},Y={supportLocalStorage:()=>{try{return"localStorage"in window&&null!==window.localStorage}catch(e){return!1}},supportAspectRatio:()=>!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")},X={TransitionSelector:{NONE:p.selector("transition-none")}},Q=(e,...t)=>(t.forEach((t=>{const s=Object.keys(t).reduce(((e,s)=>(e[s]=Object.getOwnPropertyDescriptor(t,s),e)),{});Object.getOwnPropertySymbols(t).forEach((e=>{const i=Object.getOwnPropertyDescriptor(t,e);i.enumerable&&(s[e]=i)})),Object.defineProperties(e,s)})),e),J={completeAssign:Q},Z={},ee={};Object.defineProperty(ee,"isLegacy",{get:()=>e.isLegacy}),ee.setLegacy=()=>{e.isLegacy=!0},Z.legacy=ee,Z.dom=V,Z.image=K,Z.support=Y,Z.motion=X,Z.property=J,Z.ns=p,Z.register=P.register,Z.state=e,Z.query=(e=>{if(e&&e.search){const e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null})(window.location),Object.defineProperty(Z,"preventManipulation",{get:()=>d.preventManipulation}),Object.defineProperty(Z,"stage",{get:()=>e.getModule("stage")});const te=t=>e.getModule("stage").getProxy(t);te.version=n,te.prefix=t,te.organisation=i,te.Modes=l,Object.defineProperty(te,"mode",{set:e=>{d.mode=e},get:()=>d.mode}),te.internals=Z,te.version=n,te.start=P.start,te.stop=P.stop,te.inspector=h,te.colors=M;const se=window[s];te.internals.configuration=se,d.configure(se,te.start,te.internals.query),window[s]=te;class ie{constructor(){this.emissions={}}add(e,t){if("function"!=typeof t)throw new Error("closure must be a function");this.emissions[e]||(this.emissions[e]=[]),this.emissions[e].push(t)}remove(e,t){if(this.emissions[e])if(t){const s=this.emissions[e].indexOf(t);s>-1&&this.emissions[e].splice(s)}else delete this.emissions[e]}emit(e,t){if(!this.emissions[e])return[];const s=[];for(const i of this.emissions[e])i&&s.push(i(t));return s}dispose(){this.emissions=null}}class ne{constructor(e,t){this.id=e,this.minWidth=t}test(){return window.matchMedia(`(min-width: ${this.minWidth}em)`).matches}}const re={XS:new ne("xs",0),SM:new ne("sm",36),MD:new ne("md",48),LG:new ne("lg",62),XL:new ne("xl",78)};class ae{constructor(e=!0){this.jsAttribute=e,this._isRendering=!1,this._isResizing=!1,this._isScrollLocked=!1,this._isLoading=!1,this._isSwappingFont=!1,this._isEnabled=!0,this._isDisposed=!1,this._listeners={},this._handlingClick=this.handleClick.bind(this),this._hashes=[],this._hash="",this._keyListenerTypes=[],this._keys=[],this.handlingKey=this.handleKey.bind(this),this._emitter=new ie,this._ascent=new ie,this._descent=new ie,this._registrations=[],this._nexts=[]}static get instanceClassName(){return"Instance"}_config(e,t){this.element=e,this.registration=t,this.node=e.node,this.id=e.node.id,this.jsAttribute&&this.setAttribute(t.attribute,!0),this.init()}init(){}get proxy(){const e=this;return Q({render:()=>e.render(),resize:()=>e.resize()},{get node(){return this.node},get isEnabled(){return e.isEnabled},set isEnabled(t){e.isEnabled=t}})}log(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.log.apply(h,e)}debug(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.debug.apply(h,e)}info(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.info.apply(h,e)}warn(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.warn.apply(h,e)}error(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.error.apply(h,e)}register(t,s){const i=e.getModule("register").register(t,s,this);this._registrations.push(i)}getRegisteredInstances(e){for(const t of this._registrations)if(t.hasInstanceClassName(e))return t.instances.collection;return[]}dispatch(e,t,s,i){const n=new CustomEvent(e,{detail:t,bubble:!0===s,cancelable:!0===i});this.node.dispatchEvent(n)}listen(e,t,s){this._listeners[e]||(this._listeners[e]=[]);const i=this._listeners[e],n=new he(this.node,e,t,s);i.push(n),n.listen()}unlisten(e,t,s){if(!e){for(const e in this._listeners)this.unlisten(e);return}const i=this._listeners[e];if(!i)return;if(!t)return void i.forEach((t=>this.unlisten(e,t.closure)));const n=i.filter((e=>e.closure===t&&e.matchOptions(s)));n.forEach((e=>e.unlisten())),this._listeners[e]=i.filter((e=>-1===n.indexOf(e)))}listenClick(e){this.listen("click",this._handlingClick,e)}unlistenClick(e){this.unlisten("click",this._handlingClick,e)}handleClick(e){}set hash(t){e.getModule("hash").hash=t}get hash(){return e.getModule("hash").hash}listenHash(t,s){if(!this._hashes)return;0===this._hashes.length&&e.add("hash",this);const i=new ce(t,s);this._hashes=this._hashes.filter((e=>e.hash!==t)),this._hashes.push(i)}unlistenHash(t){this._hashes&&(this._hashes=this._hashes.filter((e=>e.hash!==t)),0===this._hashes.length&&e.remove("hash",this))}handleHash(e,t){if(this._hashes)for(const s of this._hashes)s.handle(e,t)}listenKey(e,t,s=!1,i=!1,n="down"){-1===this._keyListenerTypes.indexOf(n)&&(this.listen(`key${n}`,this.handlingKey),this._keyListenerTypes.push(n)),this._keys.push(new oe(n,e,t,s,i))}unlistenKey(e,t){this._keys=this._keys.filter((s=>s.code!==e||s.closure!==t)),this._keyListenerTypes.forEach((e=>{this._keys.some((t=>t.type===e))||this.unlisten(`key${e}`,this.handlingKey)}))}handleKey(e){for(const t of this._keys)t.handle(e)}get isEnabled(){return this._isEnabled}set isEnabled(e){this._isEnabled=e}get isRendering(){return this._isRendering}set isRendering(t){this._isRendering!==t&&(t?e.add("render",this):e.remove("render",this),this._isRendering=t)}render(){}request(t){this._nexts.push(t),e.getModule("render").request(this)}next(){const e=this._nexts.slice();this._nexts.length=0;for(const t of e)t&&t()}get isResizing(){return this._isResizing}set isResizing(t){this._isResizing!==t&&(t?(e.add("resize",this),this.resize()):e.remove("resize",this),this._isResizing=t)}resize(){}isBreakpoint(e){return!0==("string"==typeof e)?re[e.toUpperCase()].test():e.test()}get isScrollLocked(){return this._isScrollLocked}set isScrollLocked(t){this._isScrollLocked!==t&&(t?e.add("lock",this):e.remove("lock",this),this._isScrollLocked=t)}get isLoading(){return this._isLoading}set isLoading(t){this._isLoading!==t&&(t?e.add("load",this):e.remove("load",this),this._isLoading=t)}load(){}get isSwappingFont(){return this._isSwappingFont}set isSwappingFont(t){this._isSwappingFont!==t&&(t?e.add("font-swap",this):e.remove("font-swap",this),this._isSwappingFont=t)}swapFont(){}get isMouseMoving(){return this._isMouseMoving}set isMouseMoving(t){this._isMouseMoving!==t&&(t?e.add("mouse-move",this):e.remove("mouse-move",this),this._isMouseMoving=t)}mouseMove(e){}examine(e){this.node.matches(this.registration.selector)?this.mutate(e):this._dispose()}mutate(e){}retrieveNodeId(e,t){if(e.id)return e.id;const s=j(`${this.id}-${t}`);return this.warn(`add id '${s}' to ${t}`),e.setAttribute("id",s),s}get isDisposed(){return this._isDisposed}_dispose(){this.debug(`dispose instance of ${this.registration.instanceClassName} on element [${this.element.id}]`),this.removeAttribute(this.registration.attribute),this.unlisten(),e.remove("hash",this),this._hashes=null,this._keys=null,this.isRendering=!1,this.isResizing=!1,this._nexts=null,e.getModule("render").nexts.remove(this),this.isScrollLocked=!1,this.isLoading=!1,this.isSwappingFont=!1,this.isMouseMoving=!1,this._emitter.dispose(),this._emitter=null,this._ascent.dispose(),this._ascent=null,this._descent.dispose(),this._descent=null,this.element.remove(this);for(const t of this._registrations)e.remove("register",t);this._registrations=null,this.registration.remove(this),this._isDisposed=!0,this.dispose()}dispose(){}emit(e,t){return this.element.emit(e,t)}addEmission(e,t){this._emitter.add(e,t)}removeEmission(e,t){this._emitter.remove(e,t)}ascend(e,t){return this.element.ascend(e,t)}addAscent(e,t){this._ascent.add(e,t)}removeAscent(e,t){this._ascent.remove(e,t)}descend(e,t){return this.element.descend(e,t)}addDescent(e,t){this._descent.add(e,t)}removeDescent(e,t){this._descent.remove(e,t)}get style(){return this.node.style}addClass(e){U(this.node,e)}removeClass(e){B(this.node,e)}hasClass(e){return F(this.node,e)}get classNames(){return $(this.node)}remove(){this.node.parentNode.removeChild(this.node)}setAttribute(e,t){this.node.setAttribute(e,t)}getAttribute(e){return this.node.getAttribute(e)}hasAttribute(e){return this.node.hasAttribute(e)}removeAttribute(e){this.node.removeAttribute(e)}setProperty(e,t){this.node.style.setProperty(e,t)}removeProperty(e){this.node.style.removeProperty(e)}focus(){this.node.focus()}blur(){this.node.blur()}focusClosest(){const e=this._focusClosest(this.node.parentNode);e&&e.focus()}_focusClosest(e){if(!e)return null;const t=[...q(e)];if(t.length<=1)return this._focusClosest(e.parentNode);{const e=t.indexOf(this.node);return t[e+(ewindow.innerHeight&&s.move(t.bottom-window.innerHeight+50)}matches(e){return this.node.matches(e)}querySelector(e){return this.node.querySelector(e)}querySelectorAll(e){return m(this.node,e)}queryParentSelector(e){return _(this.node,e)}getRect(){const e=this.node.getBoundingClientRect();return e.center=e.left+.5*e.width,e.middle=e.top+.5*e.height,e}get isLegacy(){return e.isLegacy}}class oe{constructor(e,t,s,i,n){this.type=e,this.eventType=`key${e}`,this.keyCode=t,this.closure=s,this.preventDefault=!0===i,this.stopPropagation=!0===n}handle(e){e.type===this.eventType&&e.keyCode===this.keyCode.value&&(this.closure(e),this.preventDefault&&e.preventDefault(),this.stopPropagation&&e.stopPropagation())}}class he{constructor(e,t,s,i){this._node=e,this._type=t,this._closure=s,this._options=i}get closure(){return this._closure}listen(){this._node.addEventListener(this._type,this._closure,this._options)}matchOptions(e=null){switch(!0){case null===e:case"boolean"==typeof this._options&&"boolean"==typeof e&&this._options===e:return!0;case Object.keys(this._options).length!==Object.keys(e).length:return!1;case Object.keys(e).every((t=>this._options[t]===e[t])):return!0}return!1}unlisten(){this._node.removeEventListener(this._type,this._closure,this._options)}}class ce{constructor(e,t){this.hash=e,this.add=t}handle(e,t){this.hash===e&&this.add(t)}}const le={DISCLOSE:p.event("disclose"),CONCEAL:p.event("conceal")},de={RESET:p.emission("disclosure","reset"),ADDED:p.emission("disclosure","added"),RETRIEVE:p.emission("disclosure","retrieve"),REMOVED:p.emission("disclosure","removed"),GROUP:p.emission("disclosure","group"),UNGROUP:p.emission("disclosure","ungroup"),SPOTLIGHT:p.emission("disclosure","spotlight")};class ue extends ae{constructor(e,t,s,i){super(),this.type=e,this._selector=t,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}static get instanceClassName(){return"Disclosure"}init(){this.addDescent(de.RESET,this.reset.bind(this)),this.addDescent(de.GROUP,this.update.bind(this)),this.addDescent(de.UNGROUP,this.update.bind(this)),this.addAscent(de.SPOTLIGHT,this.disclose.bind(this)),this.register(`[aria-controls="${this.id}"]`,this.DisclosureButtonInstanceClass),this.ascend(de.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()}get isEnabled(){return super.isEnabled}set isEnabled(e){this.isEnabled!==e&&(super.isEnabled=e,e?this.ascend(de.ADDED):this.ascend(de.REMOVED))}get isPristine(){return this._isPristine}get proxy(){const e=this,t=Object.assign(super.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});this.type.canConceal&&(t.conceal=e.conceal.bind(e));return Q(t,{get buttons(){return e.buttons.map((e=>e.proxy))},get group(){const t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})}get buttons(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)}update(){this.getGroup(),this.retrievePrimaries()}getGroup(){if(!this.disclosuresGroupInstanceClassName)return void(this._group=null);const e=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);e&&e.validate(this)?this._group=e:this._group=null}get group(){return this._group}disclose(e){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!e&&this.group&&(this.group.current=this),!0)}conceal(e,t=!0){return!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!e&&this.group&&this.group.current===this&&(this.group.current=null),t||this.focus(),this._isPristine||this.descend(de.RESET),!0))}get isDisclosed(){return this._isDisclosed}set isDisclosed(e){if(this._isDisclosed!==e&&(this.isEnabled||!0!==e)){this.dispatch(e?le.DISCLOSE:le.CONCEAL,this.type),this._isDisclosed=e,e?this.addClass(this.modifier):this.removeClass(this.modifier);for(let t=0;te.isInitiallyDisclosed))}hasRetrieved(){return this._hasRetrieved}reset(){}toggle(e){if(this.type.canConceal)switch(!0){case!e:case this.isDisclosed:this.conceal(!1,!1);break;default:this.disclose()}else this.disclose()}get buttonHasFocus(){return this.buttons.some((e=>e.hasFocus))}get hasFocus(){return!!super.hasFocus||(!!this.buttonHasFocus||this.querySelectorAll(":focus").length>0)}focus(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()}get primaryButtons(){return this._primaryButtons}retrievePrimaries(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))}_retrievePrimaries(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}}retrieved(){}_spotlight(){this.disclose(),this.request((()=>{this.ascend(de.SPOTLIGHT)}))}_electPrimaries(e){return e.filter((e=>e.canDisclose&&!this.node.contains(e.node)))}applyAbility(e=!1){const t=!this._primaryButtons.every((e=>e.isDisabled));this.isEnabled!==t&&(this.isEnabled=t,e||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(de.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(de.ADDED),this.hash===this.id&&this._spotlight())))}dispose(){this._group=null,this._primaryButtons=null,super.dispose(),this.ascend(de.REMOVED)}}class ge extends ae{constructor(e){super(),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:p.attr(e.id),this._canDisclose=!1}static get instanceClassName(){return"DisclosureButton"}get isPrimary(){return this.registration.creator.primaryButtons.includes(this)}get canDisclose(){return this._canDisclose}get isDisabled(){return this.type.canDisable&&this.hasAttribute("disabled")}init(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()}get proxy(){return Object.assign(super.proxy,{focus:this.focus.bind(this)})}handleClick(e){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)}mutate(e){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&e.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())}apply(e){this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,e),this.request((()=>{this._isApplying=!1})))}get isDisclosed(){return"true"===this.getAttribute(this.attributeName)}get isInitiallyDisclosed(){return this._isInitiallyDisclosed}focus(){super.focus(),this.scrollIntoView()}measure(e){const t=this.rect;this._dx=e.x-t.x,this._dy=e.y-t.y}get dx(){return this._dx}get dy(){return this._dy}}const pe={PREVENT_CONCEAL:p.attr.selector("prevent-conceal"),GROUP:p.attr("group")};class me extends ae{constructor(e,t){super(t),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}static get instanceClassName(){return"DisclosuresGroup"}init(){this.addAscent(de.ADDED,this.update.bind(this)),this.addAscent(de.RETRIEVE,this.retrieve.bind(this)),this.addAscent(de.REMOVED,this.update.bind(this)),this.descend(de.GROUP),this._isGrouped="false"!==this.getAttribute(pe.GROUP),this.update()}get proxy(){const e=this,t={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){const t=e.current;return t?t.proxy:null},get members(){return e.members.map((e=>e.proxy))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return Q(super.proxy,t)}validate(e){return!0}getMembers(){const e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((e=>e.isEnabled));e.filter((e=>!this._members.includes(e))).forEach((e=>e.conceal()))}retrieve(e=!1){this._isRetrieving||this._hasRetrieved&&!e||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))}_retrieve(){if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.hash)for(let e=0;e{this.ascend(de.SPOTLIGHT)})),e}for(let e=0;e=this.length||e===this._index)){this._index=e;for(let t=0;tt.map((t=>p.selector(`${e}--${t}`))).join(","),we=`${p.selector("responsive-img")}, ${Ne("responsive-img",Ce)}, ${p.selector("responsive-vid")}, ${Ne("responsive-vid",["16x9","4x3","1x1"])}`,De={RATIO:`${p.selector("ratio")}, ${Ne("ratio",Ce)}, ${we}`},Re=window[s];const Le={TOP:p.selector("placement--top"),RIGHT:p.selector("placement--right"),BOTTOM:p.selector("placement--bottom"),LEFT:p.selector("placement--left")},Ie={START:p.selector("placement--start"),CENTER:p.selector("placement--center"),END:p.selector("placement--end")},xe={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},Oe={START:"align_start",CENTER:"align_center",END:"align_end"},Pe={AUTO:"placement_auto",MANUAL:"placement_manual"};te.core={Instance:ae,Breakpoints:re,KeyCodes:S,Disclosure:ue,DisclosureButton:ge,DisclosuresGroup:me,DisclosureType:_e,DisclosureEvent:le,DisclosureSelector:pe,DisclosureEmission:de,Collapse:class extends ue{constructor(){super(_e.EXPAND,Ee.COLLAPSE,be,"CollapsesGroup")}static get instanceClassName(){return"Collapse"}init(){super.init(),this.listen("transitionend",this.endCollapsing.bind(this))}endCollapsing(e){this._isCollpasing&&(this._timeout&&clearTimeout(this._timeout),this._timeout=null,this._isCollpasing=!1,this.removeClass(Ee.COLLAPSING),this.isDisclosed||this.isLegacy&&(this.style.maxHeight=""))}unbound(){this.isLegacy&&(this.style.maxHeight="none")}disclose(e){if(!0===this.isDisclosed||!this.isEnabled)return!1;this.unbound(),this.collapsing((()=>super.disclose(e)))}conceal(e,t){if(!1===this.isDisclosed)return!1;this.collapsing((()=>super.conceal(e,t)))}collapsing(e){this._isCollpasing=!0,this._timeout&&clearTimeout(this._timeout),this.addClass(Ee.COLLAPSING),this.adjust(),this.request((()=>{e(),this._timeout=setTimeout(this.endCollapsing.bind(this),500)}))}adjust(){this.setProperty("--collapser","none");const e=this.node.offsetHeight;this.setProperty("--collapse",-e+"px"),this.setProperty("--collapser","")}reset(){this.isPristine||(this.isDisclosed=!1)}_electPrimaries(e){const t=this.element.parent.instances.map((e=>e.collapsePrimary)).filter((t=>void 0!==t&&e.indexOf(t)>-1));if(1===t.length)return t;if(1===(e=super._electPrimaries(e)).length)return e;const s=e.filter((e=>e.dy>=0));if(s.length>0&&(e=s),1===e.length)return e;const i=Math.min(...e.map((e=>e.dy))),n=e.filter((e=>e.dy===i));return n.length>0&&(e=n),1===e.length||e.sort(((e,t)=>Math.abs(t.dx)-Math.abs(e.dx))),e}},CollapseButton:be,CollapsesGroup:class extends me{constructor(){super("Collapse")}static get instanceClassName(){return"CollapsesGroup"}get canUngroup(){return!0}},CollapseSelector:Ee,RootSelector:{ROOT:":root"},RootEmission:A,Equisized:class extends ae{static get instanceClassName(){return"Equisized"}init(){this.ascend(fe.CHANGE)}measure(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width}adjust(e){this.isLegacy&&(this.style.width=`${e}px`)}dispose(){this.ascend(fe.CHANGE)}},EquisizedEmission:fe,Toggle:class extends ae{static get instanceClassName(){return"Toggle"}init(){this.pressed="true"===this.pressed,this.listenClick()}handleClick(){this.toggle()}toggle(){this.pressed="true"!==this.pressed}get pressed(){return this.getAttribute("aria-pressed")}set pressed(e){this.setAttribute("aria-pressed",e?"true":"false"),this.dispatch(Te.TOGGLE,e)}get proxy(){const e=this,t=Object.assign(super.proxy,{toggle:e.toggle.bind(e)});return Q(t,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})}},EquisizedsGroup:class extends ae{static get instanceClassName(){return"EquisizedsGroup"}init(){this.isResizing=!0,this.isLoading=!0,this.addAscent(fe.CHANGE,this.resize.bind(this))}load(){this.resize()}resize(){const e=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");const t=Math.max(...e.map((e=>e.measure())));this.isLegacy?e.forEach((e=>e.adjust(t))):this.style.setProperty("--equisized-width",`${t}px`)}},InjectSvg:class extends ae{static get instanceClassName(){return"InjectSvg"}init(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()}get proxy(){const e=this;return Object.assign(super.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})}fetch(){this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((e=>e.text())).then((e=>{const t=(new DOMParser).parseFromString(e,"text/html");this.svg=t.querySelector("svg"),this.svg&&this.replace()})))}replace(){if(!this.svg)return void this.fetch();this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);let e=this.imgURL.match(/[ \w-]+\./)[0];e&&(e=e.slice(0,-1),["dark","light","system"].includes(e)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-',`id="${e}-artwork-`),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-',`"#${e}-artwork-`))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var t,s;t=this.svg,s={"aria-hidden":!0,focusable:!1},Object.keys(s).forEach((e=>t.setAttribute(e,s[e]))),this.node.replaceChild(this.svg,this.img)}restore(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))}},InjectSvgSelector:Ae,Artwork:class extends ae{static get instanceClassName(){return"Artwork"}init(){this.isLegacy&&this.replace()}get proxy(){return Object.assign(super.proxy,{replace:this.replace.bind(this)})}fetch(){this.xlink=this.node.getAttribute("href");const e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];const t=new XMLHttpRequest;t.onload=()=>{const e=(new DOMParser).parseFromString(t.responseText,"text/html");this.realSvgContent=e.getElementById(this.svgName),this.realSvgContent&&("symbol"===this.realSvgContent.tagName?(this.use=e.querySelector('use[href="#'+this.svgName+'"]'),this.use&&this.node.parentNode.insertBefore(this.use,this.node)):this.realSvgContent.classList.add(this.node.classList),this.replace())},t.open("GET",this.svgUrl),t.send()}replace(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()}},ArtworkSelector:Se,AssessFile:class extends ae{static get instanceClassName(){return"AssessFile"}init(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(ye.ADDED,this.update.bind(this)),this.addDescent(ye.ADDED,this.update.bind(this))}getFileLength(){void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((e=>{this.length=e.headers.get("content-length")||-1,-1===this.length&&h.warn("File size unknown: "+this.href+'\nUnable to get HTTP header: "content-length"'),this.gather()})):this.length=-1}mutate(e){-1!==e.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==e.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())}gather(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){const e=this.parseExtension(this.href);e&&this.details.push(e.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()}update(){this.details&&(this.descend(ye.UPDATE,this.details),this.ascend(ye.UPDATE,this.details))}getLang(e){return e.lang?e.lang:document.documentElement===e?window.navigator.language:this.getLang(e.parentElement)}parseExtension(e){return e.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")}getLangDisplayName(e){if(this.isLegacy)return e;const t=new Intl.DisplayNames([this.lang],{type:"language"}).of(e);return t.charAt(0).toUpperCase()+t.slice(1)}bytesToSize(e){if(-1===e)return null;let t=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(p.attr("assess-file"))&&(t=["bytes","KB","MB","GB","TB"]);const s=parseInt(Math.floor(Math.log(e)/Math.log(1e3)),10);if(0===s)return`${e} ${t[s]}`;const i=e/1e3**s,n=Math.round(100*(i+Number.EPSILON))/100;return`${String(n).replace(".",",")} ${t[s]}`}},AssessDetail:class extends ae{static get instanceClassName(){return"AssessDetail"}init(){this.addDescent(ye.UPDATE,this.update.bind(this)),this.ascend(ye.ADDED)}update(e){this.node.innerHTML=e.join(" - ")}},AssessEmission:ye,AssessSelector:ve,Ratio:class extends ae{static get instanceClassName(){return"Ratio"}init(){if(!Re.internals.support.supportAspectRatio()){this.ratio=16/9;for(const e in this.classNames)if(this.registration.selector.indexOf(this.classNames[e])>0){const t=this.classNames[e].split("ratio-");t[1]&&(this.ratio=t[1].split("x")[0]/t[1].split("x")[1])}this.isRendering=!0,this.update()}}render(){this.getRect().width!==this.currentWidth&&this.update()}update(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"}},RatioSelector:De,Placement:class extends ae{constructor(e=Pe.AUTO,t=[xe.BOTTOM,xe.TOP,xe.LEFT,xe.RIGHT],s=[Oe.CENTER,Oe.START,Oe.END],i=16){super(),this._mode=e,this._places=t,this._aligns=s,this._safeAreaMargin=i,this._isShown=!1}static get instanceClassName(){return"Placement"}init(){this.isResizing=!0}get proxy(){const e=this,t=Object.assign(super.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return Q(t,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})}get mode(){return this._mode}set mode(e){this._mode=e}get place(){return this._place}set place(e){if(this._place!==e){switch(this._place){case xe.TOP:this.removeClass(Le.TOP);break;case xe.RIGHT:this.removeClass(Le.RIGHT);break;case xe.BOTTOM:this.removeClass(Le.BOTTOM);break;case xe.LEFT:this.removeClass(Le.LEFT)}switch(this._place=e,this._place){case xe.TOP:this.addClass(Le.TOP);break;case xe.RIGHT:this.addClass(Le.RIGHT);break;case xe.BOTTOM:this.addClass(Le.BOTTOM);break;case xe.LEFT:this.addClass(Le.LEFT)}}}get align(){return this._align}set align(e){if(this._align!==e){switch(this._align){case Oe.START:this.removeClass(Ie.START);break;case Oe.CENTER:this.removeClass(Ie.CENTER);break;case Oe.END:this.removeClass(Ie.END)}switch(this._align=e,this._align){case Oe.START:this.addClass(Ie.START);break;case Oe.CENTER:this.addClass(Ie.CENTER);break;case Oe.END:this.addClass(Ie.END)}}}show(){this.isShown=!0}hide(){this.isShown=!1}get isShown(){return this._isShown}set isShown(e){this._isShown!==e&&this.isEnabled&&(this.isRendering=e,this._isShown=e)}setReferent(e){this._referent=e}resize(){this.safeArea={top:this._safeAreaMargin,right:window.innerWidth-this._safeAreaMargin,bottom:window.innerHeight-this._safeAreaMargin,left:this._safeAreaMargin,center:.5*window.innerWidth,middle:.5*window.innerHeight}}render(){if(!this._referent)return;if(this.rect=this.getRect(),this.referentRect=this._referent.getRect(),this.mode===Pe.AUTO)switch(this.place=this.getPlace(),this.place){case xe.TOP:case xe.BOTTOM:this.align=this.getHorizontalAlign();break;case xe.LEFT:case xe.RIGHT:this.align=this.getVerticalAlign()}let e,t;switch(this.place){case xe.TOP:t=this.referentRect.top-this.rect.height;break;case xe.RIGHT:e=this.referentRect.right;break;case xe.BOTTOM:t=this.referentRect.bottom;break;case xe.LEFT:e=this.referentRect.left-this.rect.width}switch(this.place){case xe.TOP:case xe.BOTTOM:switch(this.align){case Oe.CENTER:e=this.referentRect.center-.5*this.rect.width;break;case Oe.START:e=this.referentRect.left;break;case Oe.END:e=this.referentRect.right-this.rect.width}break;case xe.RIGHT:case xe.LEFT:switch(this.align){case Oe.CENTER:t=this.referentRect.middle-.5*this.rect.height;break;case Oe.START:t=this.referentRect.top;break;case Oe.END:t=this.referentRect.bottom-this.rect.height}}this._x===e&&this._y===t||(this._x=e+.5|0,this._y=t+.5|0,this.node.style.transform=`translate(${this._x}px,${this._y}px)`)}getPlace(){for(const e of this._places)switch(e){case xe.TOP:if(this.referentRect.top-this.rect.height>this.safeArea.top)return xe.TOP;break;case xe.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return xe.LEFT}return this._places[0]}getHorizontalAlign(){for(const e of this._aligns)switch(e){case Oe.CENTER:if(this.referentRect.center-.5*this.rect.width>this.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return Oe.END}return this._aligns[0]}getVerticalAlign(){for(const e of this._aligns)switch(e){case Oe.CENTER:if(this.referentRect.middle-.5*this.rect.height>this.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return Oe.END}return this._aligns[0]}dispose(){this._referent=null,super.dispose()}},PlacementReferent:class extends ae{constructor(){super(),this._isShown=!1}static get instanceClassName(){return"PlacementReferent"}init(){this.registration.creator.setReferent(this),this._placement=this.registration.creator}get placement(){return this._placement}get isShown(){return this._isShown}set isShown(e){this._isShown!==e&&this.isEnabled&&(this._isShown=e,e?this.registration.creator.show():this.registration.creator.hide())}show(){this.isShown=!0}hide(){this.isShown=!1}},PlacementAlign:Oe,PlacementPosition:xe,PlacementMode:Pe},te.internals.register(te.core.CollapseSelector.COLLAPSE,te.core.Collapse),te.internals.register(te.core.InjectSvgSelector.INJECT_SVG,te.core.InjectSvg),te.internals.register(te.core.RatioSelector.RATIO,te.core.Ratio),te.internals.register(te.core.AssessSelector.ASSESS_FILE,te.core.AssessFile),te.internals.register(te.core.AssessSelector.DETAIL,te.core.AssessDetail);const ke={SYSTEM:"system",LIGHT:"light",DARK:"dark"},Me={THEME:Re.internals.ns.attr("theme"),SCHEME:Re.internals.ns.attr("scheme"),TRANSITION:Re.internals.ns.attr("transition")},Ge={LIGHT:"light",DARK:"dark"},$e={SCHEME:Re.internals.ns.emission("scheme","scheme"),THEME:Re.internals.ns.emission("scheme","theme"),ASK:Re.internals.ns.emission("scheme","ask")},He={SCHEME:Re.internals.ns.event("scheme"),THEME:Re.internals.ns.event("theme")};class Ue extends Re.core.Instance{constructor(){super(!1)}static get instanceClassName(){return"Scheme"}init(){this.changing=this.change.bind(this),this.hasAttribute(Me.TRANSITION)&&(this.removeAttribute(Me.TRANSITION),this.request(this.restoreTransition.bind(this)));const e=Re.internals.support.supportLocalStorage()?localStorage.getItem("scheme"):"",t=this.getAttribute(Me.SCHEME);switch(e){case ke.DARK:case ke.LIGHT:case ke.SYSTEM:this.scheme=e;break;default:switch(t){case ke.DARK:this.scheme=ke.DARK;break;case ke.LIGHT:this.scheme=ke.LIGHT;break;default:this.scheme=ke.SYSTEM}}this.addAscent($e.ASK,this.ask.bind(this)),this.addAscent($e.SCHEME,this.apply.bind(this))}get proxy(){const e=this,t={get scheme(){return e.scheme},set scheme(t){e.scheme=t}};return Re.internals.property.completeAssign(super.proxy,t)}restoreTransition(){this.setAttribute(Me.TRANSITION,"")}ask(){this.descend($e.SCHEME,this.scheme)}apply(e){this.scheme=e}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e){switch(this._scheme=e,e){case ke.SYSTEM:this.listenPreferences();break;case ke.DARK:this.unlistenPreferences(),this.theme=Ge.DARK;break;case ke.LIGHT:this.unlistenPreferences(),this.theme=Ge.LIGHT;break;default:return void(this.scheme=ke.SYSTEM)}this.descend($e.SCHEME,e),Re.internals.support.supportLocalStorage()&&localStorage.setItem("scheme",e),this.setAttribute(Me.SCHEME,e),this.dispatch(He.SCHEME,{scheme:this._scheme})}}get theme(){return this._theme}set theme(e){if(this._theme!==e)switch(e){case Ge.LIGHT:case Ge.DARK:this._theme=e,this.setAttribute(Me.THEME,e),this.descend($e.THEME,e),this.dispatch(He.THEME,{theme:this._theme}),document.documentElement.style.colorScheme=e===Ge.DARK?"dark":""}}listenPreferences(){this.isListening||(this.isListening=!0,this.mediaQuery=window.matchMedia("(prefers-color-scheme: dark)"),this.mediaQuery.addEventListener&&this.mediaQuery.addEventListener("change",this.changing),this.change())}unlistenPreferences(){this.isListening&&(this.isListening=!1,this.mediaQuery.removeEventListener("change",this.changing),this.mediaQuery=null)}change(){this.isListening&&(this.theme=this.mediaQuery.matches?Ge.DARK:Ge.LIGHT)}mutate(e){e.indexOf(Me.SCHEME)>-1&&(this.scheme=this.getAttribute(Me.SCHEME)),e.indexOf(Me.THEME)>-1&&(this.theme=this.getAttribute(Me.THEME))}dispose(){this.unlistenPreferences()}}const Be={SCHEME:`:root${Re.internals.ns.attr.selector("theme")}, :root${Re.internals.ns.attr.selector("scheme")}`,SWITCH_THEME:Re.internals.ns.selector("switch-theme"),RADIO_BUTTONS:`input[name="${Re.internals.ns("radios-theme")}"]`};Re.scheme={Scheme:Ue,SchemeValue:ke,SchemeSelector:Be,SchemeEmission:$e,SchemeTheme:Ge,SchemeEvent:He},Re.internals.register(Re.scheme.SchemeSelector.SCHEME,Re.scheme.Scheme);const Fe=Re.internals.ns.selector("accordion"),We=Re.internals.ns.selector("collapse"),qe={GROUP:Re.internals.ns.selector("accordions-group"),ACCORDION:Fe,COLLAPSE:`${Fe} > ${We}, ${Fe} > *:not(${Fe}):not(${We}) > ${We}, ${Fe} > *:not(${Fe}):not(${We}) > *:not(${Fe}):not(${We}) > ${We}`,COLLAPSE_LEGACY:`${Fe} ${We}`,BUTTON:`${Fe}__btn`};class ze extends Re.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(qe.BUTTON)))[0]}}class je extends Re.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(e){const t=e.node.matches(Re.internals.legacy.isLegacy?qe.COLLAPSE_LEGACY:qe.COLLAPSE);return super.validate(e)&&t}}Re.accordion={Accordion:ze,AccordionSelector:qe,AccordionsGroup:je},Re.internals.register(Re.accordion.AccordionSelector.GROUP,Re.accordion.AccordionsGroup),Re.internals.register(Re.accordion.AccordionSelector.ACCORDION,Re.accordion.Accordion);const Ve={EQUISIZED_BUTTON:`${Re.internals.ns.selector("btns-group--equisized")} ${Re.internals.ns.selector("btn")}`,EQUISIZED_GROUP:Re.internals.ns.selector("btns-group--equisized")};Re.button={ButtonSelector:Ve},Re.internals.register(Re.button.ButtonSelector.EQUISIZED_BUTTON,Re.core.Equisized),Re.internals.register(Re.button.ButtonSelector.EQUISIZED_GROUP,Re.core.EquisizedsGroup);class Ke extends Re.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(Re.core.AssessEmission.UPDATE,(e=>{this.descend(Re.core.AssessEmission.UPDATE,e)})),this.addAscent(Re.core.AssessEmission.ADDED,(()=>{this.descend(Re.core.AssessEmission.ADDED)}))}}const Ye={DOWNLOAD:Re.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${Re.internals.ns.selector("card--download")} ${Re.internals.ns.selector("card__end")} ${Re.internals.ns.selector("card__detail")}`};Re.card={CardSelector:Ye,CardDownload:Ke},Re.internals.register(Re.card.CardSelector.DOWNLOAD,Re.card.CardDownload),Re.internals.register(Re.card.CardSelector.DOWNLOAD_DETAIL,Re.core.AssessDetail);const Xe={INPUT:`${Re.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},Qe={CHANGE:Re.internals.ns.emission("checkbox","change"),RETRIEVE:Re.internals.ns.emission("checkbox","retrieve")};class Je extends Re.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(Qe.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(Qe.CHANGE,this.node)}}Re.checkbox={CheckboxSelector:Xe,CheckboxEmission:Qe,CheckboxInput:Je},Re.internals.register(Re.checkbox.CheckboxSelector.INPUT,Re.checkbox.CheckboxInput);const Ze={SEGMENTED:Re.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:Re.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:Re.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:Re.internals.ns.selector("segmented__legend")},et={ADDED:Re.internals.ns.emission("segmented","added"),REMOVED:Re.internals.ns.emission("segmented","removed")};class tt extends Re.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(Ze.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(Ze.SEGMENTED_LEGEND),this.addAscent(et.ADDED,this.resize.bind(this)),this.addAscent(et.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${Re.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const e=`${Re.prefix}-segmented--vertical`,t=`${Re.prefix}-segmented__legend--inline`;this.removeClass(e),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(e):this.removeClass(e)}}class st extends Re.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(et.ADDED)}dispose(){this.ascend(et.REMOVED)}}Re.segmented={SegmentedSelector:Ze,SegmentedEmission:et,SegmentedElement:st,Segmented:tt},Re.internals.register(Re.segmented.SegmentedSelector.SEGMENTED,Re.segmented.Segmented),Re.internals.register(Re.segmented.SegmentedSelector.SEGMENTED_ELEMENT,Re.segmented.SegmentedElement);const it={BREADCRUMB:Re.internals.ns.selector("breadcrumb"),BUTTON:Re.internals.ns.selector("breadcrumb__button")};class nt extends Re.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const e=this;return Object.assign(super.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(Re.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(Re.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(Re.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(Re.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const e=this.links[0];e&&(e.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const e=this.links[0];e&&document.activeElement!==e&&this._focus()}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(it.BUTTON)))[0]}}Re.breadcrumb={BreadcrumbSelector:it,Breadcrumb:nt},Re.internals.register(Re.breadcrumb.BreadcrumbSelector.BREADCRUMB,Re.breadcrumb.Breadcrumb);const rt={TOOLTIP:Re.internals.ns.selector("tooltip"),SHOWN:Re.internals.ns.selector("tooltip--shown"),BUTTON:Re.internals.ns.selector("btn--tooltip")},at=1,ot=2;class ht extends Re.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(rt.BUTTON)){const e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);const t=this.mouseout.bind(this);this.listen("mouseout",t),this.placement.listen("mouseout",t)}this.addEmission(Re.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(Re.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(e){this.node.contains(e)||this.blur()}_keydown(e){if(e===Re.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(e){this._state!==e&&(this.isShown=e>0,this._state=e)}focusIn(){this.state|=at}focusOut(){this.state&=~at}mouseover(){this.state|=ot}mouseout(){this.state&=~ot}}const ct={SHOW:p.event("show"),HIDE:p.event("hide")},lt="hidden",dt="shown",ut="hiding";class gt extends Re.core.Placement{constructor(){super(Re.core.PlacementMode.AUTO,[Re.core.PlacementPosition.TOP,Re.core.PlacementPosition.BOTTOM],[Re.core.PlacementAlign.CENTER,Re.core.PlacementAlign.START,Re.core.PlacementAlign.END]),this.modifier="",this._state=lt}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,ht),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===ut&&(this._state=lt,this.isShown=!1)}get isShown(){return super.isShown}set isShown(e){if(this.isEnabled)switch(!0){case e:this._state=dt,this.addClass(rt.SHOWN),this.dispatch(ct.SHOW),super.isShown=!0;break;case this.isShown&&!e&&this._state===dt:this._state=ut,this.removeClass(rt.SHOWN);break;case this.isShown&&!e&&this._state===lt:this.dispatch(ct.HIDE),super.isShown=!1}}render(){super.render();let e=this.referentRect.center-this.rect.center;const t=.5*this.rect.width-8;e<-t&&(e=-t),e>t&&(e=t),this.setProperty("--arrow-x",`${e.toFixed(2)}px`)}}Re.tooltip={Tooltip:gt,TooltipSelector:rt,TooltipEvent:ct},Re.internals.register(Re.tooltip.TooltipSelector.TOOLTIP,Re.tooltip.Tooltip);class pt extends Re.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class mt extends Re.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,pt),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const i=getComputedStyle(this.node,":before"),n=parseFloat(i.width);n>s&&(s=n),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const _t={STATUS_LABEL:`${Re.internals.ns.selector("toggle__label")}${Re.internals.ns.attr.selector("checked-label")}${Re.internals.ns.attr.selector("unchecked-label")}`};Re.toggle={ToggleStatusLabel:mt,ToggleSelector:_t},Re.internals.register(Re.toggle.ToggleSelector.STATUS_LABEL,Re.toggle.ToggleStatusLabel);const bt=Re.internals.ns.selector("sidemenu__item"),Et=Re.internals.ns.selector("collapse"),ft={LIST:Re.internals.ns.selector("sidemenu__list"),COLLAPSE:`${bt} > ${Et}, ${bt} > *:not(${bt}):not(${Et}) > ${Et}, ${bt} > *:not(${bt}):not(${Et}) > *:not(${bt}):not(${Et}) > ${Et}`,COLLAPSE_LEGACY:`${bt} ${Et}`,ITEM:Re.internals.ns.selector("sidemenu__item"),BUTTON:Re.internals.ns.selector("sidemenu__btn")};class Tt extends Re.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(e){return super.validate(e)&&e.node.matches(Re.internals.legacy.isLegacy?ft.COLLAPSE_LEGACY:ft.COLLAPSE)}}class At extends Re.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(ft.BUTTON)))[0]}}Re.sidemenu={SidemenuList:Tt,SidemenuItem:At,SidemenuSelector:ft},Re.internals.register(Re.sidemenu.SidemenuSelector.LIST,Re.sidemenu.SidemenuList),Re.internals.register(Re.sidemenu.SidemenuSelector.ITEM,Re.sidemenu.SidemenuItem);const St={MODAL:Re.internals.ns.selector("modal"),SCROLL_DIVIDER:Re.internals.ns.selector("scroll-divider"),BODY:Re.internals.ns.selector("modal__body"),TITLE:Re.internals.ns.selector("modal__title")};class vt extends Re.core.DisclosureButton{constructor(){super(Re.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const yt={CONCEALING_BACKDROP:Re.internals.ns.attr("concealing-backdrop")};class Ct extends Re.core.Disclosure{constructor(){super(Re.core.DisclosureType.OPENED,St.MODAL,vt,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(Re.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===Re.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(e){e.target===this.node&&"false"!==this.getAttribute(yt.CONCEALING_BACKDROP)&&this.conceal()}disclose(e){return!!super.disclose(e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(e,t){return!!super.conceal(e,t)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(e){this._isDialog=e}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(e,t){const s=this.retrieveNodeId(e,t);this.warn(`add reference to ${t} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",s)}_ensureAccessibleName(){if(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label"))return;this.warn("missing accessible name");const e=this.node.querySelector(St.TITLE),t=this.primaryButtons[0];switch(!0){case null!==e:this._setAccessibleName(e,"title");break;case void 0!==t:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(t,"primary")}}}const Nt=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),wt=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),Dt=(e,t)=>{if(!(e instanceof Element))return!1;const s=window.getComputedStyle(e);if(!s)return!1;if("hidden"===s.visibility)return!1;for(void 0===t&&(t=e);t.contains(e);){if("none"===s.display)return!1;e=e.parentElement}return!0};class Rt{constructor(e,t){this.element=null,this.activeElement=null,this.onTrap=e,this.onUntrap=t,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(e){this.trapped&&this.untrap(),this.element=e,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){Dt(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const e=this.focusables;e.length&&-1===e.indexOf(document.activeElement)&&e[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(e){for(const t of e.children)t!==this.element&&(t.contains(this.element)?this.stun(t):this.stunneds.push(new Lt(t)))}maintainFocus(e){if(!this.element.contains(e.target)){const t=this.focusables;if(0===t.length)return;const s=t[0];e.preventDefault(),s.focus()}}handle(e){if(9!==e.keyCode)return;const t=this.focusables;if(0===t.length)return;const s=t[0],i=t[t.length-1],n=t.indexOf(document.activeElement);e.shiftKey?!this.element.contains(document.activeElement)||n<1?(e.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||t[n-1].tabIndex>0)&&(e.preventDefault(),t[n-1].focus()):this.element.contains(document.activeElement)&&n!==t.length-1&&-1!==n?document.activeElement.tabIndex>0&&(e.preventDefault(),t[n+1].focus()):(e.preventDefault(),s.focus())}get focusables(){let e=Re.internals.dom.querySelectorAllArray(this.element,Nt);const t=Re.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(t.length){const s={};for(const e of t){const t=e.getAttribute("name");void 0===s[t]&&(s[t]=new It(t)),s[t].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||"radio"!==e.getAttribute("type").toLowerCase())return!0;const t=e.getAttribute("name");return s[t].keep(e)}))}const s=Re.internals.dom.querySelectorAllArray(this.element,wt);s.sort(((e,t)=>e.tabIndex-t.tabIndex));const i=e.filter((e=>-1===s.indexOf(e)));return s.concat(i).filter((e=>"-1"!==e.tabIndex&&Dt(e,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class Lt{constructor(e){this.element=e,this.inert=e.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class It{constructor(e){this.name=e,this.buttons=[]}push(e){this.buttons.push(e),(e===document.activeElement||e.checked||void 0===this.selected)&&(this.selected=e)}keep(e){return this.selected===e}}class xt extends Re.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new Rt}static get instanceClassName(){return"ModalsGroup"}apply(e,t){super.apply(e,t),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class Ot extends Re.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(St.SCROLL_DIVIDER):this.addClass(St.SCROLL_DIVIDER):this.removeClass(St.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(Re.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}Re.modal={Modal:Ct,ModalButton:vt,ModalBody:Ot,ModalsGroup:xt,ModalSelector:St},Re.internals.register(Re.modal.ModalSelector.MODAL,Re.modal.Modal),Re.internals.register(Re.modal.ModalSelector.BODY,Re.modal.ModalBody),Re.internals.register(Re.core.RootSelector.ROOT,Re.modal.ModalsGroup);const Pt={TOGGLE:Re.internals.ns.emission("password","toggle"),ADJUST:Re.internals.ns.emission("password","adjust")};class kt extends Re.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(Pt.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const e=getComputedStyle(this.node.parentNode);return parseInt(e.width)}get isChecked(){return this.node.checked}set isChecked(e){this._isChecked=e,this.ascend(Pt.TOGGLE,e)}handleClick(){this.isChecked=!this._isChecked}swapFont(e){this.ascend(Pt.ADJUST,this.width)}}class Mt extends Re.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(Pt.TOGGLE,this.toggle.bind(this)),this.addAscent(Pt.ADJUST,this.adjust.bind(this))}toggle(e){this.descend(Pt.TOGGLE,e)}adjust(e){this.descend(Pt.ADJUST,e)}}const Gt={PASSWORD:Re.internals.ns.selector("password"),INPUT:Re.internals.ns.selector("password__input"),LABEL:Re.internals.ns.selector("password__label"),TOOGLE:`${Re.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class $t extends Re.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(Pt.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(e){this.isRevealed=e,this.setAttribute("type",e?"text":"password")}get isRevealed(){return this._isRevealed}capslock(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(Re.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(Re.internals.ns.attr("capslock")))}set isRevealed(e){this._isRevealed=e,this.setAttribute("type",e?"text":"password")}}class Ht extends Re.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(Pt.ADJUST,this.adjust.bind(this))}adjust(e){const t=Math.ceil(e/16);this.node.style.paddingRight=t+"rem"}}Re.password={Password:Mt,PasswordToggle:kt,PasswordSelector:Gt,PasswordInput:$t,PasswordLabel:Ht},Re.internals.register(Re.password.PasswordSelector.INPUT,Re.password.PasswordInput),Re.internals.register(Re.password.PasswordSelector.PASSWORD,Re.password.Password),Re.internals.register(Re.password.PasswordSelector.TOOGLE,Re.password.PasswordToggle),Re.internals.register(Re.password.PasswordSelector.LABEL,Re.password.PasswordLabel);const Ut=Re.internals.ns.selector("nav__item"),Bt=Re.internals.ns.selector("collapse"),Ft={NAVIGATION:Re.internals.ns.selector("nav"),COLLAPSE:`${Ut} > ${Bt}, ${Ut} > *:not(${Ut}):not(${Bt}) > ${Bt}, ${Ut} > *:not(${Ut}):not(${Bt}) > *:not(${Ut}):not(${Bt}) > ${Bt}`,COLLAPSE_LEGACY:`${Ut} ${Bt}`,ITEM:Ut,ITEM_RIGHT:`${Ut}--align-right`,MENU:Re.internals.ns.selector("menu"),BUTTON:Re.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:Re.internals.ns.selector("translate__btn")};class Wt extends Re.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(Re.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(Re.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(Re.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(Re.core.Breakpoints.LG)&&e.element.node.matches(Ft.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,i=this.element.node.getBoundingClientRect().left;this.isRightAligned=i+s>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?Re.internals.dom.addClass(this.element.node,Ft.ITEM_RIGHT):Re.internals.dom.removeClass(this.element.node,Ft.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&(e.hasClass(Ft.BUTTON)||e.hasClass(Ft.TRANSLATE_BUTTON))))[0]}}const qt={NONE:-1,INSIDE:0,OUTSIDE:1};class zt extends Re.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(Re.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(Re.internals.legacy.isLegacy?Ft.COLLAPSE_LEGACY:Ft.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(Re.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?qt.INSIDE:qt.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(Re.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(Re.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case qt.OUTSIDE:this.index=-1;break;case qt.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=qt.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=e}get canUngroup(){return!this.isBreakpoint(Re.core.Breakpoints.LG)}resize(){this.update()}}Re.navigation={Navigation:zt,NavigationItem:Wt,NavigationMousePosition:qt,NavigationSelector:Ft},Re.internals.register(Re.navigation.NavigationSelector.NAVIGATION,Re.navigation.Navigation),Re.internals.register(Re.navigation.NavigationSelector.ITEM,Re.navigation.NavigationItem);class jt extends Re.core.DisclosureButton{constructor(){super(Re.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(e){super.handleClick(e),this.focus()}apply(e){super.apply(e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const Vt={TAB:Re.internals.ns.selector("tabs__tab"),GROUP:Re.internals.ns.selector("tabs"),PANEL:Re.internals.ns.selector("tabs__panel"),LIST:Re.internals.ns.selector("tabs__list"),SHADOW:Re.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:Re.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:Re.internals.ns.selector("tabs__shadow--right"),PANEL_START:Re.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:Re.internals.ns.selector("tabs__panel--direction-end")},Kt="direction-start",Yt="direction-end",Xt="none";class Qt extends Re.core.Disclosure{constructor(){super(Re.core.DisclosureType.SELECT,Vt.PANEL,jt,"TabsGroup"),this._direction=Xt,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(e){if(e!==this._direction){switch(this._direction){case Kt:this.removeClass(Vt.PANEL_START);break;case Yt:this.removeClass(Vt.PANEL_END);break;case Xt:break;default:return}switch(this._direction=e,this._direction){case Kt:this.addClass(Vt.PANEL_START);break;case Yt:this.addClass(Vt.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(e){this._isPreventingTransition!==e&&(e?this.addClass(Re.internals.motion.TransitionSelector.NONE):this.removeClass(Re.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)}translate(e,t){this.isPreventingTransition=t,this.direction=e}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(e){return this.group&&this.group.list?super._electPrimaries(e).filter((e=>this.group.list.node.contains(e.node))):[]}}const Jt="tab_keys_left",Zt="tab_keys_right",es="tab_keys_home",ts="tab_keys_end",ss={PRESS_KEY:Re.internals.ns.emission("tab","press_key"),LIST_HEIGHT:Re.internals.ns.emission("tab","list_height")};class is extends Re.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(ss.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(ss.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(e=0){super.getIndex(e)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(e){this.listHeight=e}transitionend(e){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((e=>e.buttonHasFocus))}pressKey(e){switch(e){case Jt:this.pressLeft();break;case Zt:this.pressRight();break;case es:this.pressHome();break;case ts:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let e=0;es.right&&this.node.scrollTo(i-s.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.apply())}apply(){this._isScrolling?(this.addClass(Vt.SHADOW),this.scroll()):(this.removeClass(Vt.SHADOW_RIGHT),this.removeClass(Vt.SHADOW_LEFT),this.removeClass(Vt.SHADOW))}scroll(){const e=this.node.scrollLeft,t=e<=16,s=this.node.scrollWidth-this.node.clientWidth-16,i=Math.abs(e)>=s,n="rtl"===document.documentElement.getAttribute("dir"),r=n?Vt.SHADOW_RIGHT:Vt.SHADOW_LEFT,a=n?Vt.SHADOW_LEFT:Vt.SHADOW_RIGHT;t?this.removeClass(r):this.addClass(r),i?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const e=this.getRect().height;this.setProperty("--tabs-list-height",`${e}px`),this.ascend(ss.LIST_HEIGHT,e)}dispose(){this.isScrolling=!1}}Re.tab={TabPanel:Qt,TabButton:jt,TabsGroup:is,TabsList:ns,TabSelector:Vt,TabEmission:ss},Re.internals.register(Re.tab.TabSelector.PANEL,Re.tab.TabPanel),Re.internals.register(Re.tab.TabSelector.GROUP,Re.tab.TabsGroup),Re.internals.register(Re.tab.TabSelector.LIST,Re.tab.TabsList);const rs={DISMISS:Re.internals.ns.event("dismiss")};class as extends Re.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),Re.mode){case Re.Modes.ANGULAR:case Re.Modes.REACT:case Re.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(rs.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${Re.mode} mode, the api doesn't handle dom modification. An event ${rs.DISMISS} is dispatched by the element to trigger the removal`)}}const os={PRESSABLE:`${Re.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${Re.internals.ns.selector("tag--dismiss")}`};Re.tag={TagDismissible:as,TagSelector:os,TagEvent:rs},Re.internals.register(Re.tag.TagSelector.PRESSABLE,Re.core.Toggle),Re.internals.register(Re.tag.TagSelector.DISMISSIBLE,Re.tag.TagDismissible);const hs=Re.internals.ns.selector("transcription"),cs={TRANSCRIPTION:hs,BUTTON:`${hs}__btn`};class ls extends Re.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(cs.BUTTON)))[0]}}Re.transcription={Transcription:ls,TranscriptionSelector:cs},Re.internals.register(Re.transcription.TranscriptionSelector.TRANSCRIPTION,Re.transcription.Transcription);class ds extends Re.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(Re.core.AssessEmission.UPDATE,(e=>{this.descend(Re.core.AssessEmission.UPDATE,e)})),this.addAscent(Re.core.AssessEmission.ADDED,(()=>{this.descend(Re.core.AssessEmission.ADDED)}))}}const us={DOWNLOAD:Re.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${Re.internals.ns.selector("tile--download")} ${Re.internals.ns.selector("tile__detail")}`};Re.tile={TileSelector:us,TileDownload:ds},Re.internals.register(Re.tile.TileSelector.DOWNLOAD,Re.tile.TileDownload),Re.internals.register(Re.tile.TileSelector.DOWNLOAD_DETAIL,Re.core.AssessDetail);const gs={RANGE:Re.internals.ns.selector("range"),RANGE_SM:Re.internals.ns.selector("range--sm"),RANGE_STEP:Re.internals.ns.selector("range--step"),RANGE_DOUBLE:Re.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:Re.internals.ns.selector("range--double")+Re.internals.ns.selector("range--step"),RANGE_INPUT:Re.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${Re.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:Re.internals.ns.selector("range__output"),RANGE_MIN:Re.internals.ns.selector("range__min"),RANGE_MAX:Re.internals.ns.selector("range__max"),RANGE_PREFIX:Re.internals.ns.attr("prefix"),RANGE_SUFFIX:Re.internals.ns.attr("suffix")},ps={VALUE:Re.internals.ns.emission("range","value"),VALUE2:Re.internals.ns.emission("range","value2"),OUTPUT:Re.internals.ns.emission("range","output"),CONSTRAINTS:Re.internals.ns.emission("range","constraints"),MIN:Re.internals.ns.emission("range","min"),MAX:Re.internals.ns.emission("range","max"),STEP:Re.internals.ns.emission("range","step"),PREFIX:Re.internals.ns.emission("range","prefix"),SUFFIX:Re.internals.ns.emission("range","suffix"),DISABLED:Re.internals.ns.emission("range","disabled"),ENABLE_POINTER:Re.internals.ns.emission("range","enable_pointer")};class ms{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(e){e&&(this._prefix=e._prefix,this._suffix=e._suffix,this._width=e.width,this.setConstraints(e._constraints),this.value=e.value,this.update())}setPrefix(e){this._prefix=null!==e?e:""}setSuffix(e){this._suffix=null!==e?e:""}_decorate(e){return`${this._prefix}${e}${this._suffix}`}get width(){return this._width}set width(e){this._width=e}get isSm(){return this._isSm}set isSm(e){this._isSm!==e&&(this._isSm=e,this.setThumbSize(e?16:24),this.update())}setThumbSize(e,t=1){this._thumbSize=e,this._innerPadding=e*t}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(e){this._value=e}get outputX(){return this._outputX}setConstraints(e){this._constraints=e,this._min=e.min,this._max=e.max,this._step=e.step,this._rangeWidth=e.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(e){return(e-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const e=this._getRatio(this._value);this._translateX=e*this._width,this._centerPercent=100*e,this._progress={right:`${(this._innerWidth*e+.5*this._innerPadding).toFixed(2)}px`}}}class _s extends ms{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class bs extends ms{get value2(){return this._value}set value2(e){this._value2!==e&&(this._value2=e,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(e){super.setThumbSize(e,2)}_update(){super._update();const e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;const t=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*t+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class Es extends bs{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const fs="step",Ts="double",As="double-step",Ss="default";class vs extends Re.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(ps.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(ps.VALUE,this.setValue.bind(this)),this.addAscent(ps.VALUE2,this.setValue2.bind(this)),this.getAttribute(gs.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(gs.RANGE_PREFIX)),this.getAttribute(gs.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(gs.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(gs.RANGE_DOUBLE_STEP):case this.matches(gs.RANGE_DOUBLE):this.type=Ts;break;case this.matches(gs.RANGE_STEP):this.type=fs;break;default:this.type=Ss}}set type(e){if(this._type===e)return;this._type=e;const t=this._model;switch(this._type){case As:this._model=new Es;break;case Ts:this._model=new bs;break;case fs:this._model=new _s;break;default:this._model=new ms}this._model.configure(t)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(gs.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(e){switch(this._model.value=e,this._type){case As:case Ts:this.descend(ps.VALUE,e)}this.update()}setValue2(e){this._model.value2=e,this.descend(ps.VALUE2,e),this.update()}setConstraints(e){this._model.setConstraints(e),this.update(),this.descend(ps.CONSTRAINTS,e)}setPrefix(e){this._model.setPrefix(e),this.update()}setSuffix(e){this._model.setSuffix(e),this.update()}mutate(e){switch(!0){case e.includes("class"):this._retrieveType(),this._retrieveSize();break;case e.includes(gs.RANGE_PREFIX):case e.includes(gs.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(gs.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(gs.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(ps.OUTPUT,this._model.output),this.descend(ps.MIN,this._model.textMin),this.descend(ps.MAX,this._model.textMax);const e=this._model.progress;e.left?this.style.setProperty("--progress-left",e.left):this.style.removeProperty("--progress-left"),e.right?(this.style.setProperty("--progress-right",e.right),this.isLegacy&&e.left&&(this.style.setProperty("background-position-x",e.left),this.style.setProperty("background-size",`${parseFloat(e.right)-parseFloat(e.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(e){if(this._type!==Ts&&this._type!==As)return;const t=e.x-this.getRect().left;this.descend(ps.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(ps.CONSTRAINTS,new ys(this.node)),this.ascend(ps.DISABLED,this.node.disabled)})),this.addDescent(ps.VALUE2,this.setValue.bind(this))}_enablePointer(e){const t=e===this._pointerId;this._isPointerEnabled!==t&&(this._isPointerEnabled=t,t?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}setValue(e){parseFloat(this.node.value)>e&&(this.node.value=e,this.dispatch("change",void 0,!0),this.change())}change(){this.ascend(ps.VALUE,parseFloat(this.node.value))}mutate(e){e.includes("disabled")&&this.ascend(ps.DISABLED,this.node.disabled),(e.includes("min")||e.includes("max")||e.includes("step"))&&(this.ascend(ps.CONSTRAINTS,new ys(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class Ns extends Re.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(ps.OUTPUT,this.change.bind(this))}change(e){this.node.innerText=e.text,this.node.style.transform=e.transform}}class ws extends Re.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(gs.RANGE_MIN):this.addDescent(ps.MIN,this.change.bind(this));break;case this.matches(gs.RANGE_MAX):this.addDescent(ps.MAX,this.change.bind(this))}}change(e){this.node.innerText=e}}Re.range={Range:vs,RangeInput:Cs,RangeInput2:class extends Cs{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(ps.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(ps.VALUE,this.setValue.bind(this))}setValue(e){parseFloat(this.node.value)e.replace('id="',"").replace('"',"")));const r=s.match(/aria-controls="(.*?)"/gm);let a=s.replace(/id="(.*?)"/gm,'id="$1'+t+'"');if(r)for(const e of r){const s=e.replace('aria-controls="',"").replace('"',"");n.includes(s)&&(a=a.replace(`aria-controls="${s}"`,`aria-controls="${s+t}"`))}if(a!==i)switch(Re.mode){case Re.Modes.ANGULAR:case Re.Modes.REACT:case Re.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${Re.header.doc}`);break;default:this.menuLinks.innerHTML=a}}}class Ls extends Re.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.isResizing=!0}resize(){this.isBreakpoint(Re.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.unlistenClick({capture:!0}))}handleClick(e){if(e.target.matches("a, button")&&!e.target.matches("[aria-controls]")&&!e.target.matches(Re.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}Re.header={HeaderLinks:Rs,HeaderModal:Ls,HeaderSelector:Ds,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},Re.internals.register(Re.header.HeaderSelector.TOOLS_LINKS,Re.header.HeaderLinks),Re.internals.register(Re.header.HeaderSelector.MODALS,Re.header.HeaderModal);const Is={DISPLAY:Re.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${Re.internals.ns("radios-theme")}"]`,FIELDSET:Re.internals.ns.selector("fieldset")};class xs extends Re.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(Is.RADIO_BUTTONS),Re.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(Re.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(Re.scheme.SchemeEmission.ASK)}else this.querySelector(Is.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e&&Re.scheme)switch(e){case Re.scheme.SchemeValue.SYSTEM:case Re.scheme.SchemeValue.LIGHT:case Re.scheme.SchemeValue.DARK:this._scheme=e;for(const t of this.radios)t.checked=t.value===e;this.ascend(Re.scheme.SchemeEmission.SCHEME,e)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}Re.display={Display:xs,DisplaySelector:Is},Re.internals.register(Re.display.DisplaySelector.DISPLAY,Re.display.Display);const Os={SCROLLABLE:Re.internals.ns.emission("table","scrollable"),CHANGE:Re.internals.ns.emission("table","change"),CAPTION_HEIGHT:Re.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:Re.internals.ns.emission("table","captionwidth")};class Ps extends Re.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(Os.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class ks extends Re.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(Os.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(Os.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const Ms={TABLE:Re.internals.ns.selector("table"),TABLE_WRAPPER:[`${Re.internals.ns.selector("table")} ${Re.internals.ns.selector("table__wrapper")}`],SHADOW:Re.internals.ns.selector("table__shadow"),SHADOW_LEFT:Re.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:Re.internals.ns.selector("table__shadow--right"),ELEMENT:[`${Re.internals.ns.selector("table")}:not(${Re.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${Re.internals.ns.selector("table")} table caption`,ROW:`${Re.internals.ns.selector("table")} tbody tr`,COL:`${Re.internals.ns.selector("table")} thead th`};class Gs extends Re.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(Ms.SHADOW),this.scroll()):(this.removeClass(Ms.SHADOW),this.removeClass(Ms.SHADOW_LEFT),this.removeClass(Ms.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),n=i?Ms.SHADOW_RIGHT:Ms.SHADOW_LEFT,r=i?Ms.SHADOW_LEFT:Ms.SHADOW_RIGHT;e?this.removeClass(n):this.addClass(n),s?this.removeClass(r):this.addClass(r)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class $s extends Re.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(Os.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}class Hs extends Re.core.Instance{static get instanceClassName(){return"TableRow"}init(){Re.checkbox&&(this.addAscent(Qe.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(Qe.RETRIEVE))}_handleCheckboxChange(e){"row-select"===e.name&&(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}Re.table={Table:Ps,TableWrapper:ks,TableElement:Gs,TableCaption:$s,TableSelector:Ms,TableRow:Hs},Re.internals.register(Re.table.TableSelector.TABLE,Re.table.Table),Re.internals.register(Re.table.TableSelector.TABLE_WRAPPER,Re.table.TableWrapper),Re.internals.register(Re.table.TableSelector.ELEMENT,Re.table.TableElement),Re.internals.register(Re.table.TableSelector.CAPTION,Re.table.TableCaption),Re.internals.register(Re.table.TableSelector.ROW,Re.table.TableRow); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const e=new class{constructor(){this.modules={}}create(e){const t=new e;this.modules[t.type]=t}getModule(e){return this.modules[e]}add(e,t){this.modules[e].add(t)}remove(e,t){this.modules[e].remove(t)}get isActive(){return this._isActive}set isActive(e){if(e===this._isActive)return;this._isActive=e;const t=Object.keys(this.modules).map((e=>this.modules[e]));if(e)for(const e of t)e.activate();else for(const e of t)e.deactivate()}get isLegacy(){return this._isLegacy}set isLegacy(e){e!==this._isLegacy&&(this._isLegacy=e)}},t="fr",s="dsfr",i="@gouvfr",n="1.13.0";class r{constructor(e,t,s,i){switch(this.level=e,this.light=t,this.dark=s,i){case"warn":this.logger=console.warn;break;case"error":this.logger=console.error;break;default:this.logger=console.log}}log(...e){const t=new a(s);for(const s of e)t.add(s);this.print(t)}print(e){e.setColor(this.color),this.logger.apply(console,e.getMessage())}get color(){return window.matchMedia("(prefers-color-scheme: dark)").matches?this.dark:this.light}}class a{constructor(e){this.inputs=["%c"],this.styles=["font-family:Marianne","line-height: 1.5"],this.objects=[],e&&this.add(`${e} :`)}add(e){switch(typeof e){case"object":case"function":this.inputs.push("%o "),this.objects.push(e);break;default:this.inputs.push(`${e} `)}}setColor(e){this.styles.push(`color:${e}`)}getMessage(){return[this.inputs.join(""),this.styles.join(";"),...this.objects]}}const o={log:new r(0,"#616161","#989898"),debug:new r(1,"#000091","#8B8BFF"),info:new r(2,"#007c3b","#00ed70"),warn:new r(3,"#ba4500","#fa5c00","warn"),error:new r(4,"#D80600","#FF4641","error")};const h=new class{constructor(){this.level=2;for(const e in o){const t=o[e];this[e]=(...e)=>{this.level<=t.level&&t.log.apply(t,e)},this[e].print=t.print.bind(t)}}state(){const t=new a;t.add(e),this.log.print(t)}tree(){const t=e.getModule("stage");if(!t)return;const s=new a;this._branch(t.root,0,s),this.log.print(s)}_branch(e,t,s){let i="";if(t>0){let e="";for(let s=0;s{"loading"!==document.readyState?window.requestAnimationFrame(e):document.addEventListener("DOMContentLoaded",e)},c={AUTO:"auto",MANUAL:"manual",RUNTIME:"runtime",LOADED:"loaded",VUE:"vue",ANGULAR:"angular",REACT:"react"},d=(e,t,s=null,i=!0,n=!1)=>{const r={bubbles:!0===i,cancelable:!0===n};s&&(r.detail=s);const a=new CustomEvent(t,r);e.dispatchEvent(a)},u=(e,t=null,s=!1,i=!1)=>d(document.documentElement,e,t,s,i),g=e=>`${t}-${e}`;g.selector=(e,t)=>(void 0===t&&(t="."),`${t}${g(e)}`),(g.attr=e=>`data-${g(e)}`).selector=(e,t)=>{let s=g.attr(e);return void 0!==t&&(s+=`="${t}"`),`[${s}]`},g.event=e=>`${s}.${e}`,g.emission=(e,t)=>`emission:${e}.${t}`;const p={READY:g.event("ready"),START:g.event("start"),STOP:g.event("stop"),RENDER:g.event("render"),RESIZE:g.event("resize"),BREAKPOINT:g.event("breakpoint"),SCROLL_LOCK:g.event("scroll-lock"),SCROLL_UNLOCK:g.event("scroll-unlock")};const m=new class{constructor(){this._mode=c.AUTO,this.isStarted=!1,this.starting=this.start.bind(this),this.preventManipulation=!1}configure(e={},t,s){this.startCallback=t;const i=e.production&&(!s||"false"!==s.production);switch(!0){case s&&!isNaN(s.level):h.level=Number(s.level);break;case s&&s.verbose&&("true"===s.verbose||1===s.verbose):h.level=0;break;case i:h.level=999;break;case e.verbose:h.level=0}h.info(`version ${n}`),u(p.READY),this.mode=e.mode||c.AUTO}set mode(e){switch(e){case c.AUTO:this.preventManipulation=!1,t=this.starting,l(t);break;case c.LOADED:this.preventManipulation=!1,l(this.starting);break;case c.RUNTIME:this.preventManipulation=!1,this.start();break;case c.MANUAL:this.preventManipulation=!1;break;case c.VUE:case c.ANGULAR:case c.REACT:this.preventManipulation=!0;break;default:return void h.error("Illegal mode")}var t;this._mode=e,h.info(`mode set to ${e}`)}get mode(){return this._mode}start(){h.info("start"),this.startCallback()}};class _{constructor(){this._collection=[]}forEach(e){this._collection.forEach(e)}map(e){return this._collection.map(e)}get length(){return this._collection.length}add(e){return!(this._collection.indexOf(e)>-1)&&(this._collection.push(e),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)}remove(e){const t=this._collection.indexOf(e);if(-1===t)return!1;this._collection.splice(t,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()}execute(...e){for(const t of this._collection)t&&t.apply(null,e)}clear(){this._collection.length=0}clone(){const e=new _;return e._collection=this._collection.slice(),e}get collection(){return this._collection}}class b extends _{constructor(e){super(),this.type=e,this.isActive=!1}activate(){}deactivate(){}}const E=(e,t)=>Array.prototype.slice.call(e.querySelectorAll(t)),f=(e,t)=>{const s=e.parentElement;return s.matches(t)?s:s===document.documentElement?null:f(s,t)};class A{constructor(e,t,s){this.selector=e,this.InstanceClass=t,this.creator=s,this.instances=new _,this.isIntroduced=!1,this._instanceClassName=this.InstanceClass.instanceClassName,this._instanceClassNames=this.getInstanceClassNames(this.InstanceClass),this._property=this._instanceClassName.substring(0,1).toLowerCase()+this._instanceClassName.substring(1);const i=this._instanceClassName.replace(/[^a-zA-Z0-9]+/g,"-").replace(/([A-Z]+)([A-Z][a-z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([0-9])([^0-9])/g,"$1-$2").replace(/([^0-9])([0-9])/g,"$1-$2").toLowerCase();this._attribute=g.attr(`js-${i}`)}getInstanceClassNames(e){const t=Object.getPrototypeOf(e);return t&&"Instance"!==t.instanceClassName?[...this.getInstanceClassNames(t),e.instanceClassName]:[e.instanceClassName]}hasInstanceClassName(e){return this._instanceClassNames.indexOf(e)>-1}introduce(){this.isIntroduced||(this.isIntroduced=!0,e.getModule("stage").parse(document.documentElement,this))}parse(e,t){const s=[];return e.matches&&e.matches(this.selector)&&s.push(e),!t&&e.querySelectorAll&&e.querySelector(this.selector)&&s.push.apply(s,E(e,this.selector)),s}create(e){if(!e.node.matches(this.selector))return;const t=new this.InstanceClass;return this.instances.add(t),t}remove(e){this.instances.remove(e)}dispose(){const e=this.instances.collection;for(let t=e.length-1;t>-1;t--)e[t]._dispose();this.creator=null}get instanceClassName(){return this._instanceClassName}get instanceClassNames(){return this._instanceClassNames}get property(){return this._property}get attribute(){return this._attribute}}class T extends b{constructor(){super("register")}register(t,s,i){const n=new A(t,s,i);return this.add(n),e.isActive&&n.introduce(),n}activate(){for(const e of this.collection)e.introduce()}remove(e){e.dispose(),super.remove(e)}}let S=0;class v{constructor(e,t){t?this.id=t:(S++,this.id=S),this.node=e,this.attributeNames=[],this.instances=[],this._children=[],this._parent=null,this._projects=[]}get proxy(){const e=this;if(!this._proxy){this._proxy={id:this.id,get parent(){return e.parent?e.parent.proxy:null},get children(){return e.children.map((e=>e.proxy))}};for(const e of this.instances)this._proxy[e.registration.property]=e.proxy}return this._proxy}get html(){if(!this.node||!this.node.outerHTML)return"";const e=this.node.outerHTML.indexOf(">");return this.node.outerHTML.substring(0,e+1)}project(e){-1===this._projects.indexOf(e)&&this._projects.push(e)}populate(){const e=this._projects.slice();this._projects.length=0;for(const t of e)this.create(t)}create(e){if(this.hasInstance(e.instanceClassName))return;h.debug(`create instance of ${e.instanceClassName} on element [${this.id}]`);const t=e.create(this);this.instances.push(t),t._config(this,e),this._proxy&&(this._proxy[e.property]=t.proxy)}remove(e){const t=this.instances.indexOf(e);t>-1&&this.instances.splice(t,1),this._proxy&&delete this._proxy[e.registration.property]}get parent(){return this._parent}get ascendants(){return[this.parent,...this.parent.ascendants]}get children(){return this._children}get descendants(){const e=[...this._children];return this._children.forEach((t=>e.push(...t.descendants))),e}addChild(e,t){return this._children.indexOf(e)>-1?null:(e._parent=this,!isNaN(t)&&t>-1&&t=0;e--){const t=this.instances[e];t&&t._dispose()}this.instances.length=0,e.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug(`remove element [${this.id}] ${this.html}`)}prepare(e){-1===this.attributeNames.indexOf(e)&&this.attributeNames.push(e)}examine(){const e=this.attributeNames.slice();this.attributeNames.length=0;for(let t=this.instances.length-1;t>-1;t--)this.instances[t].examine(e)}}const y={CLICK:g.emission("root","click"),KEYDOWN:g.emission("root","keydown"),KEYUP:g.emission("root","keyup")},C={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},N=e=>Object.values(C).filter((t=>t.value===e))[0];class R extends v{constructor(){super(document.documentElement,"root"),this.node.setAttribute(g.attr("js"),!0),this.listen()}listen(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})}click(e){this.emit(y.CLICK,e.target)}keydown(e){this.emit(y.KEYDOWN,N(e.keyCode))}keyup(e){this.emit(y.KEYUP,N(e.keyCode))}}class D extends b{constructor(){super("stage"),this.root=new R,super.add(this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}hasElement(e){for(const t of this.collection)if(t.node===e)return!0;return!1}getElement(e){for(const t of this.collection)if(t.node===e)return t;const t=new v(e);return this.add(t),h.debug(`add element [${t.id}] ${t.html}`),t}getProxy(e){if(!this.hasElement(e))return null;return this.getElement(e).proxy}add(e){super.add(e),this.put(e,this.root)}put(e,t){let s=0;for(let i=t.children.length-1;i>-1;i--){const n=t.children[i],r=e.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(e,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)t.removeChild(n),e.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){s=i+1;break}}t.addChild(e,s)}activate(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})}deactivate(){this.observer.disconnect()}mutate(e){const t=[];e.forEach((e=>{switch(e.type){case"childList":e.removedNodes.forEach((e=>this.dispose(e))),e.addedNodes.forEach((e=>this.parse(e)));break;case"attributes":if(this.hasElement(e.target)){const s=this.getElement(e.target);s.prepare(e.attributeName),-1===t.indexOf(s)&&t.push(s);for(const e of s.descendants)-1===t.indexOf(e)&&t.push(e)}-1===this.modifications.indexOf(e.target)&&this.modifications.push(e.target)}})),t.forEach((e=>e.examine())),this.modifications.length&&!this.willModify&&(this.willModify=!0,window.requestAnimationFrame(this.modifying))}modify(){this.willModify=!1;const e=this.modifications.slice();this.modifications.length=0;for(const t of e)document.documentElement.contains(t)&&this.parse(t)}dispose(e){const t=[];this.forEach((s=>{e.contains(s.node)&&t.push(s)}));for(const e of t)e.dispose(),this.remove(e)}parse(t,s,i){const n=s?[s]:e.getModule("register").collection,r=[];for(const e of n){const s=e.parse(t,i);for(const t of s){const s=this.getElement(t);s.project(e),-1===r.indexOf(s)&&r.push(s)}}for(const e of r)e.populate()}}class L extends b{constructor(){super("render"),this.rendering=this.render.bind(this),this.nexts=new _}activate(){window.requestAnimationFrame(this.rendering)}request(e){this.nexts.add(e)}render(){if(!e.isActive)return;if(window.requestAnimationFrame(this.rendering),this.forEach((e=>e.render())),!this.nexts.length)return;const t=this.nexts.clone();this.nexts.clear(),t.forEach((e=>e.next())),u(p.RENDER)}}class w extends b{constructor(){super("resize"),this.requireResize=!1,this.resizing=this.resize.bind(this);const e=this.request.bind(this);document.fonts&&document.fonts.ready.then(e),window.addEventListener("resize",e),window.addEventListener("orientationchange",e)}activate(){this.request()}request(){this.requireResize||(this.requireResize=!0,window.requestAnimationFrame(this.resizing))}resize(){this.requireResize&&(this.forEach((e=>e.resize())),this.requireResize=!1,u(p.RESIZE))}}class I extends b{constructor(){super("lock"),this._isLocked=!1,this._scrollY=0,this.onPopulate=this.lock.bind(this),this.onEmpty=this.unlock.bind(this)}get isLocked(){return this._isLocked}lock(){if(!this._isLocked){this._isLocked=!0,this._scrollY=window.scrollY;const e=window.innerWidth-document.documentElement.clientWidth;document.documentElement.setAttribute(g.attr("scrolling"),"false"),document.body.style.top=-this._scrollY+"px",this.behavior=getComputedStyle(document.documentElement).getPropertyValue("scroll-behavior"),"smooth"===this.behavior&&(document.documentElement.style.scrollBehavior="auto"),e>0&&document.documentElement.style.setProperty("--scrollbar-width",`${e}px`),u(p.SCROLL_LOCK)}}unlock(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(g.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"),u(p.SCROLL_UNLOCK))}move(e){this._isLocked?(this._scrollY+=e,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+e)}}class x extends b{constructor(){super("load"),this.loading=this.load.bind(this)}activate(){window.addEventListener("load",this.loading)}load(){this.forEach((e=>e.load()))}}const O=["Marianne","Spectral"];class P extends b{constructor(){super("font-swap"),this.swapping=this.swap.bind(this)}activate(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)}swap(){const e=O.filter((e=>document.fonts.check(`16px ${e}`)));this.forEach((t=>t.swapFont(e)))}}class k extends b{constructor(){super("mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}listen(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))}unlisten(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))}request(e){this._isMoving&&(this.point={x:e.clientX,y:e.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))}move(){this.requireMove&&(this.forEach((e=>e.mouseMove(this.point))),this.requireMove=!1)}}class M extends b{constructor(){super("hash"),this.handling=this.handle.bind(this),this.getLocationHash()}activate(){window.addEventListener("hashchange",this.handling)}deactivate(){window.removeEventListener("hashchange",this.handling)}_sanitize(e){return"#"===e.charAt(0)?e.substring(1):e}set hash(e){const t=this._sanitize(e);this._hash!==t&&(window.location.hash=t)}get hash(){return this._hash}getLocationHash(){const e=window.location.hash;this._hash=this._sanitize(e)}handle(e){this.getLocationHash(),this.forEach((t=>t.handleHash(this._hash,e)))}}const G=new class{constructor(){e.create(T),e.create(D),e.create(L),e.create(w),e.create(I),e.create(x),e.create(P),e.create(k),e.create(M);const t=e.getModule("register");this.register=t.register.bind(t)}get isActive(){return e.isActive}start(){h.debug("START"),e.isActive=!0,u(p.START)}stop(){h.debug("STOP"),e.isActive=!1,u(p.STOP)}};const $=e=>{switch(!0){case e.hover:return"-hover";case e.active:return"-active";default:return""}},H=new class{getColor(e,t,s,i={}){const n=`--${e}-${t}-${s}${$(i)}`;return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null}},U=e=>"."===e.charAt(0)?e.substr(1):e,B=e=>{switch(!0){case!e.className:return[];case"string"==typeof e.className:return e.className.split(" ");case"string"==typeof e.className.baseVal:return e.className.baseVal.split(" ")}return[]},F=(e,t,s)=>{t=U(t);const i=B(e),n=i.indexOf(t);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(t),e.className=i.join(" ")},W=(e,t)=>F(e,t),q=(e,t)=>F(e,t,!0),z=(e,t)=>B(e).indexOf(U(t))>-1,j=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),K=e=>e.querySelectorAll(j);let V=0;const Y=e=>{if(!document.getElementById(e))return e;let t=!0;const s=e;for(;t;)V++,e=`${s}-${V}`,t=document.getElementById(e);return e},X={addClass:W,hasClass:z,removeClass:q,queryParentSelector:f,querySelectorAllArray:E,queryActions:K,uniqueId:Y,dispatch:d};const Q={DataURISVG:class{constructor(e=0,t=0){this._width=e,this._height=t,this._content=""}get width(){return this._width}set width(e){this._width=e}get height(){return this._height}set height(e){this._height=e}get content(){return this._content}set content(e){this._content=e}getDataURI(e=!1){let t=`${this._content}`;return t=t.replace(/#/gi,"%23"),e&&(t=t.replace(//gi,"%3E"),t=t.replace(/"/gi,"'"),t=t.replace(/{/gi,"%7B"),t=t.replace(/}/gi,"%7D")),`data:image/svg+xml;charset=utf8,${t}`}}},Z={supportLocalStorage:()=>{try{return"localStorage"in window&&null!==window.localStorage}catch(e){return!1}},supportAspectRatio:()=>!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")},J={TransitionSelector:{NONE:g.selector("transition-none")}},ee=(e,...t)=>(t.forEach((t=>{const s=Object.keys(t).reduce(((e,s)=>(e[s]=Object.getOwnPropertyDescriptor(t,s),e)),{});Object.getOwnPropertySymbols(t).forEach((e=>{const i=Object.getOwnPropertyDescriptor(t,e);i.enumerable&&(s[e]=i)})),Object.defineProperties(e,s)})),e),te={completeAssign:ee},se={},ie={};Object.defineProperty(ie,"isLegacy",{get:()=>e.isLegacy}),ie.setLegacy=()=>{e.isLegacy=!0},se.legacy=ie,se.dom=X,se.image=Q,se.support=Z,se.motion=J,se.property=te,se.ns=g,se.register=G.register,se.state=e,se.query=(e=>{if(e&&e.search){const e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null})(window.location),Object.defineProperty(se,"preventManipulation",{get:()=>m.preventManipulation}),Object.defineProperty(se,"stage",{get:()=>e.getModule("stage")});const ne=t=>e.getModule("stage").getProxy(t);ne.version=n,ne.prefix=t,ne.organisation=i,ne.Modes=c,Object.defineProperty(ne,"mode",{set:e=>{m.mode=e},get:()=>m.mode}),ne.internals=se,ne.version=n,ne.start=G.start,ne.stop=G.stop,ne.inspector=h,ne.colors=H;const re=window[s];ne.internals.configuration=re,m.configure(re,ne.start,ne.internals.query),window[s]=ne;class ae{constructor(){this.emissions={}}add(e,t){if("function"!=typeof t)throw new Error("closure must be a function");this.emissions[e]||(this.emissions[e]=[]),this.emissions[e].push(t)}remove(e,t){if(this.emissions[e])if(t){const s=this.emissions[e].indexOf(t);s>-1&&this.emissions[e].splice(s)}else delete this.emissions[e]}emit(e,t){if(!this.emissions[e])return[];const s=[];for(const i of this.emissions[e])i&&s.push(i(t));return s}dispose(){this.emissions=null}}class oe{constructor(e,t){this.id=e,this.minWidth=t}test(){return window.matchMedia(`(min-width: ${this.minWidth}em)`).matches}}const he={XS:new oe("xs",0),SM:new oe("sm",36),MD:new oe("md",48),LG:new oe("lg",62),XL:new oe("xl",78)},le={CLICK:g.event("click")};class ce{constructor(e=!0){this.jsAttribute=e,this._isRendering=!1,this._isResizing=!1,this._isScrollLocked=!1,this._isLoading=!1,this._isSwappingFont=!1,this._isEnabled=!0,this._isDisposed=!1,this._listeners={},this._handlingClick=this._handleClick.bind(this),this._hashes=[],this._hash="",this._keyListenerTypes=[],this._keys=[],this.handlingKey=this.handleKey.bind(this),this._emitter=new ae,this._ascent=new ae,this._descent=new ae,this._registrations=[],this._nexts=[]}static get instanceClassName(){return"Instance"}_config(e,t){this.element=e,this.registration=t,this.node=e.node,this.id=e.node.id,this.jsAttribute&&this.setAttribute(t.attribute,!0),this.init()}init(){}get proxy(){const e=this;return ee({render:()=>e.render(),resize:()=>e.resize()},{get node(){return e.node},get isEnabled(){return e.isEnabled},set isEnabled(t){e.isEnabled=t}})}log(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.log.apply(h,e)}debug(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.debug.apply(h,e)}info(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.info.apply(h,e)}warn(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.warn.apply(h,e)}error(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.error.apply(h,e)}register(t,s){const i=e.getModule("register").register(t,s,this);this._registrations.push(i)}getRegisteredInstances(e){for(const t of this._registrations)if(t.hasInstanceClassName(e))return t.instances.collection;return[]}dispatch(e,t=null,s=!0,i=!1){d(this.node,e,t,s,i)}listen(e,t,s){this._listeners[e]||(this._listeners[e]=[]);const i=this._listeners[e],n=new ue(this.node,e,t,s);i.push(n),n.listen()}unlisten(e,t,s){if(!e){for(const e in this._listeners)this.unlisten(e);return}const i=this._listeners[e];if(!i)return;if(!t)return void i.forEach((t=>this.unlisten(e,t.closure)));const n=i.filter((e=>e.closure===t&&e.matchOptions(s)));n.forEach((e=>e.unlisten())),this._listeners[e]=i.filter((e=>-1===n.indexOf(e)))}listenClick(e){this.listen("click",this._handlingClick,e)}unlistenClick(e){this.unlisten("click",this._handlingClick,e)}_handleClick(e){this.handleClick(e),this.dispatch(le.CLICK,this)}handleClick(e){}set hash(t){e.getModule("hash").hash=t}get hash(){return e.getModule("hash").hash}listenHash(t,s){if(!this._hashes)return;0===this._hashes.length&&e.add("hash",this);const i=new ge(t,s);this._hashes=this._hashes.filter((e=>e.hash!==t)),this._hashes.push(i)}unlistenHash(t){this._hashes&&(this._hashes=this._hashes.filter((e=>e.hash!==t)),0===this._hashes.length&&e.remove("hash",this))}handleHash(e,t){if(this._hashes)for(const s of this._hashes)s.handle(e,t)}listenKey(e,t,s=!1,i=!1,n="down"){-1===this._keyListenerTypes.indexOf(n)&&(this.listen(`key${n}`,this.handlingKey),this._keyListenerTypes.push(n)),this._keys.push(new de(n,e,t,s,i))}unlistenKey(e,t){this._keys=this._keys.filter((s=>s.code!==e||s.closure!==t)),this._keyListenerTypes.forEach((e=>{this._keys.some((t=>t.type===e))||this.unlisten(`key${e}`,this.handlingKey)}))}handleKey(e){for(const t of this._keys)t.handle(e)}get isEnabled(){return this._isEnabled}set isEnabled(e){this._isEnabled=e}get isRendering(){return this._isRendering}set isRendering(t){this._isRendering!==t&&(t?e.add("render",this):e.remove("render",this),this._isRendering=t)}render(){}request(t){this._nexts.push(t),e.getModule("render").request(this)}next(){const e=this._nexts.slice();this._nexts.length=0;for(const t of e)t&&t()}get isResizing(){return this._isResizing}set isResizing(t){this._isResizing!==t&&(t?(e.add("resize",this),this.resize()):e.remove("resize",this),this._isResizing=t)}resize(){}isBreakpoint(e){return!0==("string"==typeof e)?he[e.toUpperCase()].test():e.test()}get isScrollLocked(){return this._isScrollLocked}set isScrollLocked(t){this._isScrollLocked!==t&&(t?e.add("lock",this):e.remove("lock",this),this._isScrollLocked=t)}get isLoading(){return this._isLoading}set isLoading(t){this._isLoading!==t&&(t?e.add("load",this):e.remove("load",this),this._isLoading=t)}load(){}get isSwappingFont(){return this._isSwappingFont}set isSwappingFont(t){this._isSwappingFont!==t&&(t?e.add("font-swap",this):e.remove("font-swap",this),this._isSwappingFont=t)}swapFont(){}get isMouseMoving(){return this._isMouseMoving}set isMouseMoving(t){this._isMouseMoving!==t&&(t?e.add("mouse-move",this):e.remove("mouse-move",this),this._isMouseMoving=t)}mouseMove(e){}examine(e){this.node.matches(this.registration.selector)?this.mutate(e):this._dispose()}mutate(e){}retrieveNodeId(e,t){if(e.id)return e.id;const s=Y(`${this.id}-${t}`);return this.warn(`add id '${s}' to ${t}`),e.setAttribute("id",s),s}get isDisposed(){return this._isDisposed}_dispose(){this.debug(`dispose instance of ${this.registration.instanceClassName} on element [${this.element.id}]`),this.removeAttribute(this.registration.attribute),this.unlisten(),e.remove("hash",this),this._hashes=null,this._keys=null,this.isRendering=!1,this.isResizing=!1,this._nexts=null,e.getModule("render").nexts.remove(this),this.isScrollLocked=!1,this.isLoading=!1,this.isSwappingFont=!1,this.isMouseMoving=!1,this._emitter.dispose(),this._emitter=null,this._ascent.dispose(),this._ascent=null,this._descent.dispose(),this._descent=null,this.element.remove(this);for(const t of this._registrations)e.remove("register",t);this._registrations=null,this.registration.remove(this),this._isDisposed=!0,this.dispose()}dispose(){}emit(e,t){return this.element.emit(e,t)}addEmission(e,t){this._emitter.add(e,t)}removeEmission(e,t){this._emitter.remove(e,t)}ascend(e,t){return this.element.ascend(e,t)}addAscent(e,t){this._ascent.add(e,t)}removeAscent(e,t){this._ascent.remove(e,t)}descend(e,t){return this.element.descend(e,t)}addDescent(e,t){this._descent.add(e,t)}removeDescent(e,t){this._descent.remove(e,t)}get style(){return this.node.style}addClass(e){W(this.node,e)}removeClass(e){q(this.node,e)}hasClass(e){return z(this.node,e)}get classNames(){return B(this.node)}remove(){this.node.parentNode.removeChild(this.node)}setAttribute(e,t){this.node.setAttribute(e,t)}getAttribute(e){return this.node.getAttribute(e)}hasAttribute(e){return this.node.hasAttribute(e)}removeAttribute(e){this.node.removeAttribute(e)}setProperty(e,t){this.node.style.setProperty(e,t)}removeProperty(e){this.node.style.removeProperty(e)}focus(){this.node.focus()}blur(){this.node.blur()}focusClosest(){const e=this._focusClosest(this.node.parentNode);e&&e.focus()}_focusClosest(e){if(!e)return null;const t=[...K(e)];if(t.length<=1)return this._focusClosest(e.parentNode);{const e=t.indexOf(this.node);return t[e+(ewindow.innerHeight&&s.move(t.bottom-window.innerHeight+50)}matches(e){return this.node.matches(e)}querySelector(e){return this.node.querySelector(e)}querySelectorAll(e){return E(this.node,e)}queryParentSelector(e){return f(this.node,e)}getRect(){const e=this.node.getBoundingClientRect();return e.center=e.left+.5*e.width,e.middle=e.top+.5*e.height,e}get isLegacy(){return e.isLegacy}}class de{constructor(e,t,s,i,n){this.type=e,this.eventType=`key${e}`,this.keyCode=t,this.closure=s,this.preventDefault=!0===i,this.stopPropagation=!0===n}handle(e){e.type===this.eventType&&e.keyCode===this.keyCode.value&&(this.closure(e),this.preventDefault&&e.preventDefault(),this.stopPropagation&&e.stopPropagation())}}class ue{constructor(e,t,s,i){this._node=e,this._type=t,this._closure=s,this._options=i}get closure(){return this._closure}listen(){this._node.addEventListener(this._type,this._closure,this._options)}matchOptions(e=null){switch(!0){case null===e:case"boolean"==typeof this._options&&"boolean"==typeof e&&this._options===e:return!0;case Object.keys(this._options).length!==Object.keys(e).length:return!1;case Object.keys(e).every((t=>this._options[t]===e[t])):return!0}return!1}unlisten(){this._node.removeEventListener(this._type,this._closure,this._options)}}class ge{constructor(e,t){this.hash=e,this.add=t}handle(e,t){this.hash===e&&this.add(t)}}const pe={DISCLOSE:g.event("disclose"),CONCEAL:g.event("conceal"),CURRENT:g.event("current")},me={RESET:g.emission("disclosure","reset"),ADDED:g.emission("disclosure","added"),RETRIEVE:g.emission("disclosure","retrieve"),REMOVED:g.emission("disclosure","removed"),GROUP:g.emission("disclosure","group"),UNGROUP:g.emission("disclosure","ungroup"),SPOTLIGHT:g.emission("disclosure","spotlight")};class _e extends ce{constructor(e,t,s,i){super(),this.type=e,this._selector=t,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}static get instanceClassName(){return"Disclosure"}init(){this.addDescent(me.RESET,this.reset.bind(this)),this.addDescent(me.GROUP,this.update.bind(this)),this.addDescent(me.UNGROUP,this.update.bind(this)),this.addAscent(me.SPOTLIGHT,this.disclose.bind(this)),this.register(`[aria-controls="${this.id}"]`,this.DisclosureButtonInstanceClass),this.ascend(me.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()}get isEnabled(){return super.isEnabled}set isEnabled(e){this.isEnabled!==e&&(super.isEnabled=e,e?this.ascend(me.ADDED):this.ascend(me.REMOVED))}get isPristine(){return this._isPristine}get proxy(){const e=this,t=Object.assign(super.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});this.type.canConceal&&(t.conceal=e.conceal.bind(e));return ee(t,{get buttons(){return e.buttons.map((e=>e.proxy))},get group(){const t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})}get buttons(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)}update(){this.getGroup(),this.retrievePrimaries()}getGroup(){if(!this.disclosuresGroupInstanceClassName)return void(this._group=null);const e=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);e&&e.validate(this)?this._group=e:this._group=null}get group(){return this._group}disclose(e){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!e&&this.group&&(this.group.current=this),!0)}conceal(e,t=!0){return!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!e&&this.group&&this.group.current===this&&(this.group.current=null),t||this.focus(),this._isPristine||this.descend(me.RESET),!0))}get isDisclosed(){return this._isDisclosed}set isDisclosed(e){if(this._isDisclosed!==e&&(this.isEnabled||!0!==e)){this.dispatch(e?pe.DISCLOSE:pe.CONCEAL,this),this._isDisclosed=e,e?this.addClass(this.modifier):this.removeClass(this.modifier);for(let t=0;te.isInitiallyDisclosed))}hasRetrieved(){return this._hasRetrieved}reset(){}toggle(e){if(this.type.canConceal)switch(!0){case!e:case this.isDisclosed:this.conceal(!1,!1);break;default:this.disclose()}else this.disclose()}get buttonHasFocus(){return this.buttons.some((e=>e.hasFocus))}get hasFocus(){return!!super.hasFocus||(!!this.buttonHasFocus||this.querySelectorAll(":focus").length>0)}focus(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()}get primaryButtons(){return this._primaryButtons}retrievePrimaries(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))}_retrievePrimaries(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}}retrieved(){}_spotlight(){this.disclose(),this.request((()=>{this.ascend(me.SPOTLIGHT)}))}_electPrimaries(e){return e.filter((e=>e.canDisclose&&!this.node.contains(e.node)))}applyAbility(e=!1){const t=!this._primaryButtons.every((e=>e.isDisabled));this.isEnabled!==t&&(this.isEnabled=t,e||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(me.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(me.ADDED),this.hash===this.id&&this._spotlight())))}dispose(){this._group=null,this._primaryButtons=null,super.dispose(),this.ascend(me.REMOVED)}}class be extends ce{constructor(e){super(),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:g.attr(e.id),this._canDisclose=!1}static get instanceClassName(){return"DisclosureButton"}get isPrimary(){return this.registration.creator.primaryButtons.includes(this)}get canDisclose(){return this._canDisclose}get isDisabled(){return this.type.canDisable&&this.hasAttribute("disabled")}init(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()}get proxy(){return Object.assign(super.proxy,{focus:this.focus.bind(this)})}handleClick(e){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)}mutate(e){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&e.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())}apply(e){this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,e),this.request((()=>{this._isApplying=!1})))}get isDisclosed(){return"true"===this.getAttribute(this.attributeName)}get isInitiallyDisclosed(){return this._isInitiallyDisclosed}focus(){super.focus(),this.scrollIntoView()}measure(e){const t=this.rect;this._dx=e.x-t.x,this._dy=e.y-t.y}get dx(){return this._dx}get dy(){return this._dy}}const Ee={PREVENT_CONCEAL:g.attr.selector("prevent-conceal"),GROUP:g.attr("group")};class fe extends ce{constructor(e,t){super(t),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}static get instanceClassName(){return"DisclosuresGroup"}init(){this.addAscent(me.ADDED,this.update.bind(this)),this.addAscent(me.RETRIEVE,this.retrieve.bind(this)),this.addAscent(me.REMOVED,this.update.bind(this)),this.descend(me.GROUP),this._isGrouped="false"!==this.getAttribute(Ee.GROUP),this.update()}get proxy(){const e=this,t={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){const t=e.current;return t?t.proxy:null},get members(){return e.members.map((e=>e.proxy))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return ee(super.proxy,t)}validate(e){return!0}getMembers(){const e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((e=>e.isEnabled));e.filter((e=>!this._members.includes(e))).forEach((e=>e.conceal()))}retrieve(e=!1){this._isRetrieving||this._hasRetrieved&&!e||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))}_retrieve(){if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.isGrouped){if(this.hash)for(let e=0;e{this.ascend(me.SPOTLIGHT)})),e}for(let e=0;e=this.length||e===this._index)){this._index=e;for(let t=0;tt.map((t=>g.selector(`${e}--${t}`))).join(","),we=`${g.selector("responsive-img")}, ${Le("responsive-img",De)}, ${g.selector("responsive-vid")}, ${Le("responsive-vid",["16x9","4x3","1x1"])}`,Ie={RATIO:`${g.selector("ratio")}, ${Le("ratio",De)}, ${we}`},xe=window[s];const Oe={TOP:g.selector("placement--top"),RIGHT:g.selector("placement--right"),BOTTOM:g.selector("placement--bottom"),LEFT:g.selector("placement--left")},Pe={START:g.selector("placement--start"),CENTER:g.selector("placement--center"),END:g.selector("placement--end")},ke={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},Me={START:"align_start",CENTER:"align_center",END:"align_end"},Ge={AUTO:"placement_auto",MANUAL:"placement_manual"};ne.core={Instance:ce,Breakpoints:he,KeyCodes:C,Disclosure:_e,DisclosureButton:be,DisclosuresGroup:fe,DisclosureType:Ae,DisclosureEvent:pe,DisclosureSelector:Ee,DisclosureEmission:me,Collapse:class extends _e{constructor(){super(Ae.EXPAND,Se.COLLAPSE,Te,"CollapsesGroup")}static get instanceClassName(){return"Collapse"}init(){super.init(),this.listen("transitionend",this.endCollapsing.bind(this))}endCollapsing(e){this._isCollpasing&&(this._timeout&&clearTimeout(this._timeout),this._timeout=null,this._isCollpasing=!1,this.removeClass(Se.COLLAPSING),this.isDisclosed||this.isLegacy&&(this.style.maxHeight=""))}unbound(){this.isLegacy&&(this.style.maxHeight="none")}disclose(e){if(!0===this.isDisclosed||!this.isEnabled)return!1;this.unbound(),this.collapsing((()=>super.disclose(e)))}conceal(e,t){if(!1===this.isDisclosed)return!1;this.collapsing((()=>super.conceal(e,t)))}collapsing(e){this._isCollpasing=!0,this._timeout&&clearTimeout(this._timeout),this.addClass(Se.COLLAPSING),this.adjust(),this.request((()=>{e(),this._timeout=setTimeout(this.endCollapsing.bind(this),500)}))}adjust(){this.setProperty("--collapser","none");const e=this.node.offsetHeight;this.setProperty("--collapse",-e+"px"),this.setProperty("--collapser","")}reset(){this.isPristine||(this.isDisclosed=!1)}_electPrimaries(e){const t=this.element.parent.instances.map((e=>e.collapsePrimary)).filter((t=>void 0!==t&&e.indexOf(t)>-1));if(1===t.length)return t;if(1===(e=super._electPrimaries(e)).length)return e;const s=e.filter((e=>e.dy>=0));if(s.length>0&&(e=s),1===e.length)return e;const i=Math.min(...e.map((e=>e.dy))),n=e.filter((e=>e.dy===i));return n.length>0&&(e=n),1===e.length||e.sort(((e,t)=>Math.abs(t.dx)-Math.abs(e.dx))),e}},CollapseButton:Te,CollapsesGroup:class extends fe{constructor(){super("Collapse")}static get instanceClassName(){return"CollapsesGroup"}get canUngroup(){return!0}},CollapseSelector:Se,RootSelector:{ROOT:":root"},RootEmission:y,Equisized:class extends ce{static get instanceClassName(){return"Equisized"}init(){this.ascend(ve.CHANGE)}measure(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width}adjust(e){this.isLegacy&&(this.style.width=`${e}px`)}dispose(){this.ascend(ve.CHANGE)}},EquisizedEmission:ve,Toggle:class extends ce{static get instanceClassName(){return"Toggle"}init(){this.pressed="true"===this.pressed,this.listenClick()}handleClick(){this.toggle()}toggle(){this.pressed="true"!==this.pressed}get pressed(){return this.getAttribute("aria-pressed")}set pressed(e){this.setAttribute("aria-pressed",e?"true":"false")}get proxy(){const e=this,t=Object.assign(super.proxy,{toggle:e.toggle.bind(e)});return ee(t,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})}},EquisizedsGroup:class extends ce{static get instanceClassName(){return"EquisizedsGroup"}init(){this.isResizing=!0,this.isLoading=!0,this.addAscent(ve.CHANGE,this.resize.bind(this))}load(){this.resize()}resize(){const e=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");const t=Math.max(...e.map((e=>e.measure())));this.isLegacy?e.forEach((e=>e.adjust(t))):this.style.setProperty("--equisized-width",`${t}px`)}},InjectSvg:class extends ce{static get instanceClassName(){return"InjectSvg"}init(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()}get proxy(){const e=this;return Object.assign(super.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})}fetch(){this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((e=>e.text())).then((e=>{const t=(new DOMParser).parseFromString(e,"text/html");this.svg=t.querySelector("svg"),this.svg&&this.replace()})))}replace(){if(!this.svg)return void this.fetch();this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);let e=this.imgURL.match(/[ \w-]+\./)[0];e&&(e=e.slice(0,-1),["dark","light","system"].includes(e)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-',`id="${e}-artwork-`),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-',`"#${e}-artwork-`))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var t,s;t=this.svg,s={"aria-hidden":!0,focusable:!1},Object.keys(s).forEach((e=>t.setAttribute(e,s[e]))),this.node.replaceChild(this.svg,this.img)}restore(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))}},InjectSvgSelector:ye,Artwork:class extends ce{static get instanceClassName(){return"Artwork"}init(){this.isLegacy&&this.replace()}get proxy(){return Object.assign(super.proxy,{replace:this.replace.bind(this)})}fetch(){this.xlink=this.node.getAttribute("href");const e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];const t=new XMLHttpRequest;t.onload=()=>{const e=(new DOMParser).parseFromString(t.responseText,"text/html");this.realSvgContent=e.getElementById(this.svgName),this.realSvgContent&&("symbol"===this.realSvgContent.tagName?(this.use=e.querySelector('use[href="#'+this.svgName+'"]'),this.use&&this.node.parentNode.insertBefore(this.use,this.node)):this.realSvgContent.classList.add(this.node.classList),this.replace())},t.open("GET",this.svgUrl),t.send()}replace(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()}},ArtworkSelector:Ce,AssessFile:class extends ce{static get instanceClassName(){return"AssessFile"}init(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Re.ADDED,this.update.bind(this)),this.addDescent(Re.ADDED,this.update.bind(this))}getFileLength(){void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((e=>{this.length=e.headers.get("content-length")||-1,-1===this.length&&h.warn("File size unknown: "+this.href+'\nUnable to get HTTP header: "content-length"'),this.gather()})):this.length=-1}mutate(e){-1!==e.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==e.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())}gather(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){const e=this.parseExtension(this.href);e&&this.details.push(e.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()}update(){this.details&&(this.descend(Re.UPDATE,this.details),this.ascend(Re.UPDATE,this.details))}getLang(e){return e.lang?e.lang:document.documentElement===e?window.navigator.language:this.getLang(e.parentElement)}parseExtension(e){return e.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")}getLangDisplayName(e){if(this.isLegacy)return e;const t=new Intl.DisplayNames([this.lang],{type:"language"}).of(e);return t.charAt(0).toUpperCase()+t.slice(1)}bytesToSize(e){if(-1===e)return null;let t=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(g.attr("assess-file"))&&(t=["bytes","KB","MB","GB","TB"]);const s=parseInt(Math.floor(Math.log(e)/Math.log(1e3)),10);if(0===s)return`${e} ${t[s]}`;const i=e/1e3**s,n=Math.round(100*(i+Number.EPSILON))/100;return`${String(n).replace(".",",")} ${t[s]}`}},AssessDetail:class extends ce{static get instanceClassName(){return"AssessDetail"}init(){this.addDescent(Re.UPDATE,this.update.bind(this)),this.ascend(Re.ADDED)}update(e){this.node.innerHTML=e.join(" - ")}},AssessEmission:Re,AssessSelector:Ne,Ratio:class extends ce{static get instanceClassName(){return"Ratio"}init(){if(!xe.internals.support.supportAspectRatio()){this.ratio=16/9;for(const e in this.classNames)if(this.registration.selector.indexOf(this.classNames[e])>0){const t=this.classNames[e].split("ratio-");t[1]&&(this.ratio=t[1].split("x")[0]/t[1].split("x")[1])}this.isRendering=!0,this.update()}}render(){this.getRect().width!==this.currentWidth&&this.update()}update(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"}},RatioSelector:Ie,Placement:class extends ce{constructor(e=Ge.AUTO,t=[ke.BOTTOM,ke.TOP,ke.LEFT,ke.RIGHT],s=[Me.CENTER,Me.START,Me.END],i=16){super(),this._mode=e,this._places=t,this._aligns=s,this._safeAreaMargin=i,this._isShown=!1,this._x=this._y=0}static get instanceClassName(){return"Placement"}init(){this.isResizing=!0}get proxy(){const e=this,t=Object.assign(super.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return ee(t,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})}get mode(){return this._mode}set mode(e){this._mode=e}get place(){return this._place}set place(e){if(this._place!==e){switch(this._place){case ke.TOP:this.removeClass(Oe.TOP);break;case ke.RIGHT:this.removeClass(Oe.RIGHT);break;case ke.BOTTOM:this.removeClass(Oe.BOTTOM);break;case ke.LEFT:this.removeClass(Oe.LEFT)}switch(this._place=e,this._place){case ke.TOP:this.addClass(Oe.TOP);break;case ke.RIGHT:this.addClass(Oe.RIGHT);break;case ke.BOTTOM:this.addClass(Oe.BOTTOM);break;case ke.LEFT:this.addClass(Oe.LEFT)}}}get align(){return this._align}set align(e){if(this._align!==e){switch(this._align){case Me.START:this.removeClass(Pe.START);break;case Me.CENTER:this.removeClass(Pe.CENTER);break;case Me.END:this.removeClass(Pe.END)}switch(this._align=e,this._align){case Me.START:this.addClass(Pe.START);break;case Me.CENTER:this.addClass(Pe.CENTER);break;case Me.END:this.addClass(Pe.END)}}}show(){this.isShown=!0}hide(){this.isShown=!1}get isShown(){return this._isShown}set isShown(e){this._isShown!==e&&this.isEnabled&&(this.isRendering=e,this._isShown=e)}setReferent(e){this._referent=e}render(){if(!this._referent)return;if(this.referentRect=this._referent.getRect(),this.rect=this.getRect(),this.safeArea=this.getSafeArea(),this.mode===Ge.AUTO)switch(this.place=this.getPlace(),this.place){case ke.TOP:case ke.BOTTOM:this.align=this.getHorizontalAlign();break;case ke.LEFT:case ke.RIGHT:this.align=this.getVerticalAlign()}let e,t;switch(this.place){case ke.TOP:t=this.referentRect.top-this.rect.top-this.rect.height;break;case ke.RIGHT:e=this.referentRect.left-this.rect.left+this.referentRect.width;break;case ke.BOTTOM:t=this.referentRect.top-this.rect.top+this.referentRect.height;break;case ke.LEFT:e=this.referentRect.left-this.rect.left-this.rect.width}switch(this.place){case ke.TOP:case ke.BOTTOM:switch(this.align){case Me.CENTER:e=this.referentRect.left-this.rect.left+.5*this.referentRect.width-.5*this.rect.width;break;case Me.START:e=this.referentRect.left-this.rect.left;break;case Me.END:e=this.referentRect.left-this.rect.left+this.referentRect.width-this.rect.width}break;case ke.RIGHT:case ke.LEFT:switch(this.align){case Me.CENTER:t=this.referentRect.top-this.rect.top+.5*this.referentRect.height-.5*this.rect.height;break;case Me.START:t=this.referentRect.top-this.rect.top;break;case Me.END:t=this.referentRect.top-this.rect.top-this.rect.height}}this._x+=e+.5|0,this._y+=t+.5|0,this.node.style.transform=`translate(${this._x}px,${this._y}px)`}getPlace(){for(const e of this._places)switch(e){case ke.TOP:if(this.referentRect.top-this.rect.height>this.safeArea.top)return ke.TOP;break;case ke.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return ke.LEFT}return this._places[0]}getHorizontalAlign(){for(const e of this._aligns)switch(e){case Me.CENTER:if(this.referentRect.center-.5*this.rect.width>this.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return Me.END}return this._aligns[0]}getVerticalAlign(){for(const e of this._aligns)switch(e){case Me.CENTER:if(this.referentRect.middle-.5*this.rect.height>this.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return Me.END}return this._aligns[0]}getSafeArea(){let e,t,s=this.node,i=this._safeAreaMargin,n=window.innerWidth-this._safeAreaMargin,r=window.innerHeight-this._safeAreaMargin,a=this._safeAreaMargin;for(;s&&s!==document.body;){s=s.parentElement;const o=window.getComputedStyle(s),h=/(visible|(\w+))(\s(visible|(\w+)))?/.exec(o.overflow);if(e=void 0!==h[2],t=void 0!==h[3]?void 0!==h[5]:void 0!==h[2],!e&&!t)continue;const l=s.getBoundingClientRect();e&&(l.left>a&&(a=l.left),l.righti&&(i=l.top),l.bottom-1&&(this.scheme=this.getAttribute(He.SCHEME)),e.indexOf(He.THEME)>-1&&(this.theme=this.getAttribute(He.THEME))}dispose(){this.unlistenPreferences()}}const qe={SCHEME:`:root${xe.internals.ns.attr.selector("theme")}, :root${xe.internals.ns.attr.selector("scheme")}`,SWITCH_THEME:xe.internals.ns.selector("switch-theme"),RADIO_BUTTONS:`input[name="${xe.internals.ns("radios-theme")}"]`};xe.scheme={Scheme:We,SchemeValue:$e,SchemeSelector:qe,SchemeEmission:Be,SchemeTheme:Ue,SchemeEvent:Fe},xe.internals.register(xe.scheme.SchemeSelector.SCHEME,xe.scheme.Scheme);const ze=xe.internals.ns.selector("accordion"),je=xe.internals.ns.selector("collapse"),Ke={GROUP:xe.internals.ns.selector("accordions-group"),ACCORDION:ze,COLLAPSE:`${ze} > ${je}, ${ze} > *:not(${ze}):not(${je}) > ${je}, ${ze} > *:not(${ze}):not(${je}) > *:not(${ze}):not(${je}) > ${je}`,COLLAPSE_LEGACY:`${ze} ${je}`,BUTTON:`${ze}__btn`};class Ve extends xe.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(Ke.BUTTON)))[0]}}class Ye extends xe.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(e){const t=e.node.matches(xe.internals.legacy.isLegacy?Ke.COLLAPSE_LEGACY:Ke.COLLAPSE);return super.validate(e)&&t}}xe.accordion={Accordion:Ve,AccordionSelector:Ke,AccordionsGroup:Ye},xe.internals.register(xe.accordion.AccordionSelector.GROUP,xe.accordion.AccordionsGroup),xe.internals.register(xe.accordion.AccordionSelector.ACCORDION,xe.accordion.Accordion);const Xe={EQUISIZED_BUTTON:`${xe.internals.ns.selector("btns-group--equisized")} ${xe.internals.ns.selector("btn")}`,EQUISIZED_GROUP:xe.internals.ns.selector("btns-group--equisized")};xe.button={ButtonSelector:Xe},xe.internals.register(xe.button.ButtonSelector.EQUISIZED_BUTTON,xe.core.Equisized),xe.internals.register(xe.button.ButtonSelector.EQUISIZED_GROUP,xe.core.EquisizedsGroup);class Qe extends xe.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(xe.core.AssessEmission.UPDATE,(e=>{this.descend(xe.core.AssessEmission.UPDATE,e)})),this.addAscent(xe.core.AssessEmission.ADDED,(()=>{this.descend(xe.core.AssessEmission.ADDED)}))}}const Ze={DOWNLOAD:xe.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${xe.internals.ns.selector("card--download")} ${xe.internals.ns.selector("card__end")} ${xe.internals.ns.selector("card__detail")}`};xe.card={CardSelector:Ze,CardDownload:Qe},xe.internals.register(xe.card.CardSelector.DOWNLOAD,xe.card.CardDownload),xe.internals.register(xe.card.CardSelector.DOWNLOAD_DETAIL,xe.core.AssessDetail);const Je={INPUT:`${xe.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},et={CHANGE:xe.internals.ns.emission("checkbox","change"),RETRIEVE:xe.internals.ns.emission("checkbox","retrieve")};class tt extends xe.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(et.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(et.CHANGE,this.node)}}xe.checkbox={CheckboxSelector:Je,CheckboxEmission:et,CheckboxInput:tt},xe.internals.register(xe.checkbox.CheckboxSelector.INPUT,xe.checkbox.CheckboxInput);const st={SEGMENTED:xe.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:xe.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:xe.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:xe.internals.ns.selector("segmented__legend")},it={ADDED:xe.internals.ns.emission("segmented","added"),REMOVED:xe.internals.ns.emission("segmented","removed")};class nt extends xe.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(st.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(st.SEGMENTED_LEGEND),this.addAscent(it.ADDED,this.resize.bind(this)),this.addAscent(it.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${xe.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const e=`${xe.prefix}-segmented--vertical`,t=`${xe.prefix}-segmented__legend--inline`;this.removeClass(e),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(e):this.removeClass(e)}}class rt extends xe.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(it.ADDED)}dispose(){this.ascend(it.REMOVED)}}xe.segmented={SegmentedSelector:st,SegmentedEmission:it,SegmentedElement:rt,Segmented:nt},xe.internals.register(xe.segmented.SegmentedSelector.SEGMENTED,xe.segmented.Segmented),xe.internals.register(xe.segmented.SegmentedSelector.SEGMENTED_ELEMENT,xe.segmented.SegmentedElement);const at={BREADCRUMB:xe.internals.ns.selector("breadcrumb"),BUTTON:xe.internals.ns.selector("breadcrumb__button")};class ot extends xe.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const e=this;return Object.assign(super.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(xe.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(xe.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(xe.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(xe.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const e=this.links[0];e&&(e.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const e=this.links[0];e&&document.activeElement!==e&&this._focus()}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(at.BUTTON)))[0]}}xe.breadcrumb={BreadcrumbSelector:at,Breadcrumb:ot},xe.internals.register(xe.breadcrumb.BreadcrumbSelector.BREADCRUMB,xe.breadcrumb.Breadcrumb);const ht={TOOLTIP:xe.internals.ns.selector("tooltip"),SHOWN:xe.internals.ns.selector("tooltip--shown"),HIDDING:xe.internals.ns.selector("tooltip--hidding"),BUTTON:xe.internals.ns.selector("btn--tooltip")},lt=1,ct=2;class dt extends xe.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(ht.BUTTON)){const e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);const t=this.mouseout.bind(this);this.listen("mouseout",t),this.placement.listen("mouseout",t)}this.addEmission(xe.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(xe.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(e){this.node.contains(e)||this.blur()}_keydown(e){if(e===xe.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(e){this._state!==e&&(this.isShown=e>0,this._state=e)}focusIn(){this.state|=lt}focusOut(){this.state&=~lt}mouseover(){this.state|=ct}mouseout(){this.state&=~ct}}const ut={SHOW:g.event("show"),HIDE:g.event("hide")},gt="hidden",pt="shown",mt="hiding";class _t extends xe.core.Placement{constructor(){super(xe.core.PlacementMode.AUTO,[xe.core.PlacementPosition.TOP,xe.core.PlacementPosition.BOTTOM],[xe.core.PlacementAlign.CENTER,xe.core.PlacementAlign.START,xe.core.PlacementAlign.END]),this.modifier="",this._state=gt}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,dt),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===mt&&(this.removeClass(ht.SHOWN),this.removeClass(ht.HIDDING),this._state=gt,this.isShown=!1)}get isShown(){return super.isShown}set isShown(e){if(this.isEnabled)switch(!0){case e:this._state=pt,this.addClass(ht.SHOWN),this.removeClass(ht.HIDDING),this.dispatch(ut.SHOW),super.isShown=!0;break;case this.isShown&&!e&&this._state===pt:this._state=mt,this.addClass(ht.HIDDING);break;case this.isShown&&!e&&this._state===gt:this.dispatch(ut.HIDE),this.removeClass(ht.HIDDING),super.isShown=!1}}render(){super.render(),this.rect=this.getRect();let e=this.referentRect.center-this.rect.center;const t=.5*this.rect.width-8;e<-t&&(e=-t),e>t&&(e=t),this.setProperty("--arrow-x",`${e.toFixed(2)}px`)}}xe.tooltip={Tooltip:_t,TooltipSelector:ht,TooltipEvent:ut},xe.internals.register(xe.tooltip.TooltipSelector.TOOLTIP,xe.tooltip.Tooltip);class bt extends xe.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class Et extends xe.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,bt),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const i=getComputedStyle(this.node,":before"),n=parseFloat(i.width);n>s&&(s=n),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const ft={STATUS_LABEL:`${xe.internals.ns.selector("toggle__label")}${xe.internals.ns.attr.selector("checked-label")}${xe.internals.ns.attr.selector("unchecked-label")}`};xe.toggle={ToggleStatusLabel:Et,ToggleSelector:ft},xe.internals.register(xe.toggle.ToggleSelector.STATUS_LABEL,xe.toggle.ToggleStatusLabel);const At=xe.internals.ns.selector("sidemenu__item"),Tt=xe.internals.ns.selector("collapse"),St={LIST:xe.internals.ns.selector("sidemenu__list"),COLLAPSE:`${At} > ${Tt}, ${At} > *:not(${At}):not(${Tt}) > ${Tt}, ${At} > *:not(${At}):not(${Tt}) > *:not(${At}):not(${Tt}) > ${Tt}`,COLLAPSE_LEGACY:`${At} ${Tt}`,ITEM:xe.internals.ns.selector("sidemenu__item"),BUTTON:xe.internals.ns.selector("sidemenu__btn")};class vt extends xe.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(e){return super.validate(e)&&e.node.matches(xe.internals.legacy.isLegacy?St.COLLAPSE_LEGACY:St.COLLAPSE)}}class yt extends xe.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(St.BUTTON)))[0]}}xe.sidemenu={SidemenuList:vt,SidemenuItem:yt,SidemenuSelector:St},xe.internals.register(xe.sidemenu.SidemenuSelector.LIST,xe.sidemenu.SidemenuList),xe.internals.register(xe.sidemenu.SidemenuSelector.ITEM,xe.sidemenu.SidemenuItem);const Ct={MODAL:xe.internals.ns.selector("modal"),SCROLL_DIVIDER:xe.internals.ns.selector("scroll-divider"),BODY:xe.internals.ns.selector("modal__body"),TITLE:xe.internals.ns.selector("modal__title")};class Nt extends xe.core.DisclosureButton{constructor(){super(xe.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const Rt={CONCEALING_BACKDROP:xe.internals.ns.attr("concealing-backdrop")};class Dt extends xe.core.Disclosure{constructor(){super(xe.core.DisclosureType.OPENED,Ct.MODAL,Nt,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(xe.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===xe.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(e){e.target===this.node&&"false"!==this.getAttribute(Rt.CONCEALING_BACKDROP)&&this.conceal()}disclose(e){return!!super.disclose(e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(e,t){return!!super.conceal(e,t)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(e){this._isDialog=e}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(e,t){const s=this.retrieveNodeId(e,t);this.warn(`add reference to ${t} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",s)}_ensureAccessibleName(){if(!this.isEnabled||this.isEnabled&&(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label")))return;this.warn("missing accessible name");const e=this.node.querySelector(Ct.TITLE),t=this.primaryButtons[0];switch(!0){case null!==e:this._setAccessibleName(e,"title");break;case void 0!==t:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(t,"primary")}}}const Lt=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),wt=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),It=(e,t)=>{if(!(e instanceof Element))return!1;const s=window.getComputedStyle(e);if(!s)return!1;if("hidden"===s.visibility)return!1;for(void 0===t&&(t=e);t.contains(e);){if("none"===s.display)return!1;e=e.parentElement}return!0};class xt{constructor(e,t){this.element=null,this.activeElement=null,this.onTrap=e,this.onUntrap=t,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(e){this.trapped&&this.untrap(),this.element=e,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){It(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const e=this.focusables;e.length&&-1===e.indexOf(document.activeElement)&&e[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(e){for(const t of e.children)t!==this.element&&(t.contains(this.element)?this.stun(t):this.stunneds.push(new Ot(t)))}maintainFocus(e){if(!this.element.contains(e.target)){const t=this.focusables;if(0===t.length)return;const s=t[0];e.preventDefault(),s.focus()}}handle(e){if(9!==e.keyCode)return;const t=this.focusables;if(0===t.length)return;const s=t[0],i=t[t.length-1],n=t.indexOf(document.activeElement);e.shiftKey?!this.element.contains(document.activeElement)||n<1?(e.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||t[n-1].tabIndex>0)&&(e.preventDefault(),t[n-1].focus()):this.element.contains(document.activeElement)&&n!==t.length-1&&-1!==n?document.activeElement.tabIndex>0&&(e.preventDefault(),t[n+1].focus()):(e.preventDefault(),s.focus())}get focusables(){let e=xe.internals.dom.querySelectorAllArray(this.element,Lt);const t=xe.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(t.length){const s={};for(const e of t){const t=e.getAttribute("name");void 0===s[t]&&(s[t]=new Pt(t)),s[t].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||e.getAttribute("type")&&"radio"!==e.getAttribute("type").toLowerCase())return!0;const t=e.getAttribute("name");return s[t].keep(e)}))}const s=xe.internals.dom.querySelectorAllArray(this.element,wt);s.sort(((e,t)=>e.tabIndex-t.tabIndex));const i=e.filter((e=>-1===s.indexOf(e)));return s.concat(i).filter((e=>"-1"!==e.tabIndex&&It(e,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class Ot{constructor(e){this.element=e,this.inert=e.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class Pt{constructor(e){this.name=e,this.buttons=[]}push(e){this.buttons.push(e),(e===document.activeElement||e.checked||void 0===this.selected)&&(this.selected=e)}keep(e){return this.selected===e}}class kt extends xe.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new xt}static get instanceClassName(){return"ModalsGroup"}apply(e,t){super.apply(e,t),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class Mt extends xe.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(Ct.SCROLL_DIVIDER):this.addClass(Ct.SCROLL_DIVIDER):this.removeClass(Ct.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(xe.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}xe.modal={Modal:Dt,ModalButton:Nt,ModalBody:Mt,ModalsGroup:kt,ModalSelector:Ct},xe.internals.register(xe.modal.ModalSelector.MODAL,xe.modal.Modal),xe.internals.register(xe.modal.ModalSelector.BODY,xe.modal.ModalBody),xe.internals.register(xe.core.RootSelector.ROOT,xe.modal.ModalsGroup);const Gt={TOGGLE:xe.internals.ns.emission("password","toggle"),ADJUST:xe.internals.ns.emission("password","adjust")};class $t extends xe.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(Gt.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const e=getComputedStyle(this.node.parentNode);return parseInt(e.width)}get isChecked(){return this.node.checked}set isChecked(e){this._isChecked=e,this.ascend(Gt.TOGGLE,e)}handleClick(){this.isChecked=!this._isChecked}swapFont(e){this.ascend(Gt.ADJUST,this.width)}}class Ht extends xe.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(Gt.TOGGLE,this.toggle.bind(this)),this.addAscent(Gt.ADJUST,this.adjust.bind(this))}toggle(e){this.descend(Gt.TOGGLE,e)}adjust(e){this.descend(Gt.ADJUST,e)}}const Ut={PASSWORD:xe.internals.ns.selector("password"),INPUT:xe.internals.ns.selector("password__input"),LABEL:xe.internals.ns.selector("password__label"),TOOGLE:`${xe.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class Bt extends xe.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(Gt.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(e){this.isRevealed=e,this.setAttribute("type",e?"text":"password")}get isRevealed(){return this._isRevealed}capslock(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(xe.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(xe.internals.ns.attr("capslock")))}set isRevealed(e){this._isRevealed=e,this.setAttribute("type",e?"text":"password")}}class Ft extends xe.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(Gt.ADJUST,this.adjust.bind(this))}adjust(e){const t=Math.ceil(e/16);this.node.style.paddingRight=t+"rem"}}xe.password={Password:Ht,PasswordToggle:$t,PasswordSelector:Ut,PasswordInput:Bt,PasswordLabel:Ft},xe.internals.register(xe.password.PasswordSelector.INPUT,xe.password.PasswordInput),xe.internals.register(xe.password.PasswordSelector.PASSWORD,xe.password.Password),xe.internals.register(xe.password.PasswordSelector.TOOGLE,xe.password.PasswordToggle),xe.internals.register(xe.password.PasswordSelector.LABEL,xe.password.PasswordLabel);const Wt=xe.internals.ns.selector("nav__item"),qt=xe.internals.ns.selector("collapse"),zt={NAVIGATION:xe.internals.ns.selector("nav"),COLLAPSE:`${Wt} > ${qt}, ${Wt} > *:not(${Wt}):not(${qt}) > ${qt}, ${Wt} > *:not(${Wt}):not(${qt}) > *:not(${Wt}):not(${qt}) > ${qt}`,COLLAPSE_LEGACY:`${Wt} ${qt}`,ITEM:Wt,ITEM_RIGHT:`${Wt}--align-right`,MENU:xe.internals.ns.selector("menu"),BUTTON:xe.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:xe.internals.ns.selector("translate__btn")};class jt extends xe.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(xe.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(xe.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(xe.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(xe.core.Breakpoints.LG)&&e.element.node.matches(zt.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,i=this.element.node.getBoundingClientRect().left;this.isRightAligned=i+s>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?xe.internals.dom.addClass(this.element.node,zt.ITEM_RIGHT):xe.internals.dom.removeClass(this.element.node,zt.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&(e.hasClass(zt.BUTTON)||e.hasClass(zt.TRANSLATE_BUTTON))))[0]}}const Kt={NONE:-1,INSIDE:0,OUTSIDE:1};class Vt extends xe.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(xe.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(xe.internals.legacy.isLegacy?zt.COLLAPSE_LEGACY:zt.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(xe.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?Kt.INSIDE:Kt.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(xe.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(xe.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case Kt.OUTSIDE:this.index=-1;break;case Kt.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=Kt.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=e}get canUngroup(){return!this.isBreakpoint(xe.core.Breakpoints.LG)}resize(){this.update()}}xe.navigation={Navigation:Vt,NavigationItem:jt,NavigationMousePosition:Kt,NavigationSelector:zt},xe.internals.register(xe.navigation.NavigationSelector.NAVIGATION,xe.navigation.Navigation),xe.internals.register(xe.navigation.NavigationSelector.ITEM,xe.navigation.NavigationItem);class Yt extends xe.core.DisclosureButton{constructor(){super(xe.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(e){super.handleClick(e),this.focus()}apply(e){super.apply(e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const Xt={TAB:xe.internals.ns.selector("tabs__tab"),GROUP:xe.internals.ns.selector("tabs"),PANEL:xe.internals.ns.selector("tabs__panel"),LIST:xe.internals.ns.selector("tabs__list"),SHADOW:xe.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:xe.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:xe.internals.ns.selector("tabs__shadow--right"),PANEL_START:xe.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:xe.internals.ns.selector("tabs__panel--direction-end")},Qt="direction-start",Zt="direction-end",Jt="none";class es extends xe.core.Disclosure{constructor(){super(xe.core.DisclosureType.SELECT,Xt.PANEL,Yt,"TabsGroup"),this._direction=Jt,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(e){if(e!==this._direction){switch(this._direction){case Qt:this.removeClass(Xt.PANEL_START);break;case Zt:this.removeClass(Xt.PANEL_END);break;case Jt:break;default:return}switch(this._direction=e,this._direction){case Qt:this.addClass(Xt.PANEL_START);break;case Zt:this.addClass(Xt.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(e){this._isPreventingTransition!==e&&(e?this.addClass(xe.internals.motion.TransitionSelector.NONE):this.removeClass(xe.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)}translate(e,t){this.isPreventingTransition=t,this.direction=e}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(e){return this.group&&this.group.list?super._electPrimaries(e).filter((e=>this.group.list.node.contains(e.node))):[]}}const ts="tab_keys_left",ss="tab_keys_right",is="tab_keys_home",ns="tab_keys_end",rs={PRESS_KEY:xe.internals.ns.emission("tab","press_key"),LIST_HEIGHT:xe.internals.ns.emission("tab","list_height")};class as extends xe.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(rs.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(rs.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(e=0){super.getIndex(e)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(e){this.listHeight=e}transitionend(e){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((e=>e.buttonHasFocus))}pressKey(e){switch(e){case ts:this.pressLeft();break;case ss:this.pressRight();break;case is:this.pressHome();break;case ns:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let e=0;es.right&&this.node.scrollTo(i-s.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.apply())}apply(){this._isScrolling?(this.addClass(Xt.SHADOW),this.scroll()):(this.removeClass(Xt.SHADOW_RIGHT),this.removeClass(Xt.SHADOW_LEFT),this.removeClass(Xt.SHADOW))}scroll(){const e=Math.abs(this.node.scrollLeft),t=e<=16,s=this.node.scrollWidth-this.node.clientWidth-16,i=Math.abs(e)>=s,n="rtl"===getComputedStyle(this.node).direction,r=n?Xt.SHADOW_RIGHT:Xt.SHADOW_LEFT,a=n?Xt.SHADOW_LEFT:Xt.SHADOW_RIGHT;t?this.removeClass(r):this.addClass(r),i?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const e=this.getRect().height;this.setProperty("--tabs-list-height",`${e}px`),this.ascend(rs.LIST_HEIGHT,e)}dispose(){this.isScrolling=!1}}xe.tab={TabPanel:es,TabButton:Yt,TabsGroup:as,TabsList:os,TabSelector:Xt,TabEmission:rs},xe.internals.register(xe.tab.TabSelector.PANEL,xe.tab.TabPanel),xe.internals.register(xe.tab.TabSelector.GROUP,xe.tab.TabsGroup),xe.internals.register(xe.tab.TabSelector.LIST,xe.tab.TabsList);const hs={DISMISS:xe.internals.ns.event("dismiss")};class ls extends xe.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),xe.mode){case xe.Modes.ANGULAR:case xe.Modes.REACT:case xe.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(hs.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${xe.mode} mode, the api doesn't handle dom modification. An event ${hs.DISMISS} is dispatched by the element to trigger the removal`)}}const cs={PRESSABLE:`${xe.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${xe.internals.ns.selector("tag--dismiss")}`};xe.tag={TagDismissible:ls,TagSelector:cs,TagEvent:hs},xe.internals.register(xe.tag.TagSelector.PRESSABLE,xe.core.Toggle),xe.internals.register(xe.tag.TagSelector.DISMISSIBLE,xe.tag.TagDismissible);const ds=xe.internals.ns.selector("transcription"),us={TRANSCRIPTION:ds,BUTTON:`${ds}__btn`};class gs extends xe.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(us.BUTTON)))[0]}}xe.transcription={Transcription:gs,TranscriptionSelector:us},xe.internals.register(xe.transcription.TranscriptionSelector.TRANSCRIPTION,xe.transcription.Transcription);class ps extends xe.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(xe.core.AssessEmission.UPDATE,(e=>{this.descend(xe.core.AssessEmission.UPDATE,e)})),this.addAscent(xe.core.AssessEmission.ADDED,(()=>{this.descend(xe.core.AssessEmission.ADDED)}))}}const ms={DOWNLOAD:xe.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${xe.internals.ns.selector("tile--download")} ${xe.internals.ns.selector("tile__detail")}`};xe.tile={TileSelector:ms,TileDownload:ps},xe.internals.register(xe.tile.TileSelector.DOWNLOAD,xe.tile.TileDownload),xe.internals.register(xe.tile.TileSelector.DOWNLOAD_DETAIL,xe.core.AssessDetail);const _s={RANGE:xe.internals.ns.selector("range"),RANGE_SM:xe.internals.ns.selector("range--sm"),RANGE_STEP:xe.internals.ns.selector("range--step"),RANGE_DOUBLE:xe.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:xe.internals.ns.selector("range--double")+xe.internals.ns.selector("range--step"),RANGE_INPUT:xe.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${xe.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:xe.internals.ns.selector("range__output"),RANGE_MIN:xe.internals.ns.selector("range__min"),RANGE_MAX:xe.internals.ns.selector("range__max"),RANGE_PREFIX:xe.internals.ns.attr("prefix"),RANGE_SUFFIX:xe.internals.ns.attr("suffix")},bs={VALUE:xe.internals.ns.emission("range","value"),VALUE2:xe.internals.ns.emission("range","value2"),OUTPUT:xe.internals.ns.emission("range","output"),CONSTRAINTS:xe.internals.ns.emission("range","constraints"),MIN:xe.internals.ns.emission("range","min"),MAX:xe.internals.ns.emission("range","max"),STEP:xe.internals.ns.emission("range","step"),PREFIX:xe.internals.ns.emission("range","prefix"),SUFFIX:xe.internals.ns.emission("range","suffix"),DISABLED:xe.internals.ns.emission("range","disabled"),ENABLE_POINTER:xe.internals.ns.emission("range","enable_pointer")};class Es{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(e){e&&(this._prefix=e._prefix,this._suffix=e._suffix,this._width=e.width,this.setConstraints(e._constraints),this.value=e.value,this.update())}setPrefix(e){this._prefix=null!==e?e:""}setSuffix(e){this._suffix=null!==e?e:""}_decorate(e){return`${this._prefix}${e}${this._suffix}`}get width(){return this._width}set width(e){this._width=e}get isSm(){return this._isSm}set isSm(e){this._isSm!==e&&(this._isSm=e,this.setThumbSize(e?16:24),this.update())}setThumbSize(e,t=1){this._thumbSize=e,this._innerPadding=e*t}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(e){this._value=e}get outputX(){return this._outputX}setConstraints(e){this._constraints=e,this._min=e.min,this._max=e.max,this._step=e.step,this._rangeWidth=e.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(e){return(e-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const e=this._getRatio(this._value);this._translateX=e*this._width,this._centerPercent=100*e,this._progress={right:`${(this._innerWidth*e+.5*this._innerPadding).toFixed(2)}px`}}}class fs extends Es{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class As extends Es{get value2(){return this._value}set value2(e){this._value2!==e&&(this._value2=e,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(e){super.setThumbSize(e,2)}_update(){super._update();const e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;const t=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*t+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class Ts extends As{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const Ss="step",vs="double",ys="double-step",Cs="default";class Ns extends xe.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(bs.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(bs.VALUE,this.setValue.bind(this)),this.addAscent(bs.VALUE2,this.setValue2.bind(this)),this.getAttribute(_s.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(_s.RANGE_PREFIX)),this.getAttribute(_s.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(_s.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(_s.RANGE_DOUBLE_STEP):case this.matches(_s.RANGE_DOUBLE):this.type=vs;break;case this.matches(_s.RANGE_STEP):this.type=Ss;break;default:this.type=Cs}}set type(e){if(this._type===e)return;this._type=e;const t=this._model;switch(this._type){case ys:this._model=new Ts;break;case vs:this._model=new As;break;case Ss:this._model=new fs;break;default:this._model=new Es}this._model.configure(t)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(_s.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(e){switch(this._model.value=e,this._type){case ys:case vs:this.descend(bs.VALUE,e)}this.update()}setValue2(e){this._model.value2=e,this.descend(bs.VALUE2,e),this.update()}setConstraints(e){this._model.setConstraints(e),this.update(),this.descend(bs.CONSTRAINTS,e)}setPrefix(e){this._model.setPrefix(e),this.update()}setSuffix(e){this._model.setSuffix(e),this.update()}mutate(e){switch(!0){case e.includes("class"):this._retrieveType(),this._retrieveSize();break;case e.includes(_s.RANGE_PREFIX):case e.includes(_s.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(_s.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(_s.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(bs.OUTPUT,this._model.output),this.descend(bs.MIN,this._model.textMin),this.descend(bs.MAX,this._model.textMax);const e=this._model.progress;e.left?this.style.setProperty("--progress-left",e.left):this.style.removeProperty("--progress-left"),e.right?(this.style.setProperty("--progress-right",e.right),this.isLegacy&&e.left&&(this.style.setProperty("background-position-x",e.left),this.style.setProperty("background-size",`${parseFloat(e.right)-parseFloat(e.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(e){if(this._type!==vs&&this._type!==ys)return;const t=e.x-this.getRect().left;this.descend(bs.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(bs.CONSTRAINTS,new Rs(this.node)),this.ascend(bs.DISABLED,this.node.disabled)})),this.addDescent(bs.VALUE2,this.setValue.bind(this))}get proxy(){const e=this,t={get value(){return e.value},set value(t){e.value=t}};return xe.internals.property.completeAssign(super.proxy,t)}_enablePointer(e){const t=e===this._pointerId;this._isPointerEnabled!==t&&(this._isPointerEnabled=t,t?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}get value(){return parseFloat(this.node.value)}set value(e){const t=parseFloat(e);t!==this._value&&(this._value=t,this.node.value=t,this.dispatch("change"),this.change())}setValue(e){parseFloat(this.node.value)>e&&(this.value=e)}change(){this.ascend(bs.VALUE,this._value)}render(){const e=parseFloat(this.node.value);e!==this._value&&(this.value=e)}mutate(e){e.includes("disabled")&&this.ascend(bs.DISABLED,this.node.disabled),(e.includes("min")||e.includes("max")||e.includes("step"))&&(this.ascend(bs.CONSTRAINTS,new Rs(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class Ls extends xe.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(bs.OUTPUT,this.change.bind(this))}change(e){this.node.innerText=e.text,this.node.style.transform=e.transform}}class ws extends xe.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(_s.RANGE_MIN):this.addDescent(bs.MIN,this.change.bind(this));break;case this.matches(_s.RANGE_MAX):this.addDescent(bs.MAX,this.change.bind(this))}}change(e){this.node.innerText=e}}xe.range={Range:Ns,RangeInput:Ds,RangeInput2:class extends Ds{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(bs.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(bs.VALUE,this.setValue.bind(this))}setValue(e){parseFloat(this.node.value)e.replace('id="',"").replace('"',"")));const r=["aria-controls","aria-describedby","aria-labelledby"];let a=s.replace(/id="(.*?)"/gm,`id="$1${t}"`);for(const e of r){const i=s.match(new RegExp(`${e}="(.*?)"`,"gm"));if(i)for(const s of i){const i=s.replace(`${e}="`,"").replace('"',"");n.includes(i)&&(a=a.replace(`${e}="${i}"`,`${e}="${i+t}"`))}}if(a!==i)switch(xe.mode){case xe.Modes.ANGULAR:case xe.Modes.REACT:case xe.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${xe.header.doc}`);break;default:this.menuLinks.innerHTML=a}}}class Os extends xe.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.storeAria(),this.isResizing=!0}resize(){this.isBreakpoint(xe.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.restoreAria(),this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.storeAria(),this.unlistenClick({capture:!0}))}storeAria(){this.hasAttribute("aria-labelledby")&&(this._ariaLabelledby=this.getAttribute("aria-labelledby")),this.hasAttribute("aria-label")&&(this._ariaLabel=this.getAttribute("aria-label")),this.removeAttribute("aria-labelledby"),this.removeAttribute("aria-label")}restoreAria(){this._ariaLabelledby&&this.setAttribute("aria-labelledby",this._ariaLabelledby),this._ariaLabel&&this.setAttribute("aria-label",this._ariaLabel)}handleClick(e){if(e.target.matches("a, button")&&!e.target.matches("[aria-controls]")&&!e.target.matches(xe.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}xe.header={HeaderLinks:xs,HeaderModal:Os,HeaderSelector:Is,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},xe.internals.register(xe.header.HeaderSelector.TOOLS_LINKS,xe.header.HeaderLinks),xe.internals.register(xe.header.HeaderSelector.MODALS,xe.header.HeaderModal);const Ps={DISPLAY:xe.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${xe.internals.ns("radios-theme")}"]`,FIELDSET:xe.internals.ns.selector("fieldset")};class ks extends xe.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(Ps.RADIO_BUTTONS),xe.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(xe.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(xe.scheme.SchemeEmission.ASK)}else this.querySelector(Ps.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e&&xe.scheme)switch(e){case xe.scheme.SchemeValue.SYSTEM:case xe.scheme.SchemeValue.LIGHT:case xe.scheme.SchemeValue.DARK:this._scheme=e;for(const t of this.radios)t.checked=t.value===e;this.ascend(xe.scheme.SchemeEmission.SCHEME,e)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}xe.display={Display:ks,DisplaySelector:Ps},xe.internals.register(xe.display.DisplaySelector.DISPLAY,xe.display.Display);const Ms={SCROLLABLE:xe.internals.ns.emission("table","scrollable"),CHANGE:xe.internals.ns.emission("table","change"),CAPTION_HEIGHT:xe.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:xe.internals.ns.emission("table","captionwidth")};class Gs extends xe.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(Ms.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class $s extends xe.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(Ms.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(Ms.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const Hs={TABLE:xe.internals.ns.selector("table"),TABLE_WRAPPER:[`${xe.internals.ns.selector("table")} ${xe.internals.ns.selector("table__wrapper")}`],SHADOW:xe.internals.ns.selector("table__shadow"),SHADOW_LEFT:xe.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:xe.internals.ns.selector("table__shadow--right"),ELEMENT:[`${xe.internals.ns.selector("table")}:not(${xe.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${xe.internals.ns.selector("table")} table caption`,ROW:`${xe.internals.ns.selector("table")} tbody tr`,COL:`${xe.internals.ns.selector("table")} thead th`};class Us extends xe.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(Hs.SHADOW),this.scroll()):(this.removeClass(Hs.SHADOW),this.removeClass(Hs.SHADOW_LEFT),this.removeClass(Hs.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),n=i?Hs.SHADOW_RIGHT:Hs.SHADOW_LEFT,r=i?Hs.SHADOW_LEFT:Hs.SHADOW_RIGHT;e?this.removeClass(n):this.addClass(n),s?this.removeClass(r):this.addClass(r)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class Bs extends xe.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(Ms.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}class Fs extends xe.core.Instance{static get instanceClassName(){return"TableRow"}init(){xe.checkbox&&(this.addAscent(et.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(et.RETRIEVE))}_handleCheckboxChange(e){"row-select"!==e.name&&"true"!==e.getAttribute(xe.internals.ns.attr("row-select"))||(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}xe.table={Table:Gs,TableWrapper:$s,TableElement:Us,TableCaption:Bs,TableSelector:Hs,TableRow:Fs},xe.internals.register(xe.table.TableSelector.TABLE,xe.table.Table),xe.internals.register(xe.table.TableSelector.TABLE_WRAPPER,xe.table.TableWrapper),xe.internals.register(xe.table.TableSelector.ELEMENT,xe.table.TableElement),xe.internals.register(xe.table.TableSelector.CAPTION,xe.table.TableCaption),xe.internals.register(xe.table.TableSelector.ROW,xe.table.TableRow); diff --git a/dsfr/static/dsfr/dist/dsfr.nomodule.min.js b/dsfr/static/dsfr/dist/dsfr.nomodule.min.js index 25af1cedd..7dc1c03d6 100644 --- a/dsfr/static/dsfr/dist/dsfr.nomodule.min.js +++ b/dsfr/static/dsfr/dist/dsfr.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t=function(){this.modules={}},e={isActive:{configurable:!0},isLegacy:{configurable:!0}};t.prototype.create=function(t){var e=new t;this.modules[e.type]=e},t.prototype.getModule=function(t){return this.modules[t]},t.prototype.add=function(t,e){this.modules[t].add(e)},t.prototype.remove=function(t,e){this.modules[t].remove(e)},e.isActive.get=function(){return this._isActive},e.isActive.set=function(t){var e=this;if(t!==this._isActive){this._isActive=t;var r=Object.keys(this.modules).map((function(t){return e.modules[t]}));if(t)for(var n=0,i=r;n0){for(var i="",o=0;o-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)},v.prototype.remove=function(t){var e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()},v.prototype.execute=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];for(var r=0,n=this._collection;r-1},O.prototype.introduce=function(){this.isIntroduced||(this.isIntroduced=!0,r.getModule("stage").parse(document.documentElement,this))},O.prototype.parse=function(t,e){var r=[];return t.matches&&t.matches(this.selector)&&r.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&r.push.apply(r,S(t,this.selector)),r},O.prototype.create=function(t){if(t.node.matches(this.selector)){var e=new this.InstanceClass;return this.instances.add(e),e}},O.prototype.remove=function(t){this.instances.remove(t)},O.prototype.dispose=function(){for(var t=this.instances.collection,e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null},j.instanceClassName.get=function(){return this._instanceClassName},j.instanceClassNames.get=function(){return this._instanceClassNames},j.property.get=function(){return this._property},j.attribute.get=function(){return this._attribute},Object.defineProperties(O.prototype,j);var T=function(t){function e(){t.call(this,"register")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,n){var i=new O(t,e,n);return this.add(i),r.isActive&&i.introduce(),i},e.prototype.activate=function(){for(var t=0,e=this.collection;t");return this.node.outerHTML.substring(0,t+1)},A.prototype.project=function(t){-1===this._projects.indexOf(t)&&this._projects.push(t)},A.prototype.populate=function(){var t=this._projects.slice();this._projects.length=0;for(var e=0,r=t;e-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]},N.parent.get=function(){return this._parent},N.ascendants.get=function(){return[this.parent].concat(this.parent.ascendants)},N.children.get=function(){return this._children},N.descendants.get=function(){var t=[].concat(this._children);return this._children.forEach((function(e){return t.push.apply(t,e.descendants)})),t},A.prototype.addChild=function(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){var e=this.instances[t];e&&e._dispose()}this.instances.length=0,r.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug("remove element ["+this.id+"] "+this.html)},A.prototype.prepare=function(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)},A.prototype.examine=function(){var t=this.attributeNames.slice();this.attributeNames.length=0;for(var e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)},Object.defineProperties(A.prototype,N);var C={CLICK:w.emission("root","click"),KEYDOWN:w.emission("root","keydown"),KEYUP:w.emission("root","keyup")},I={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},L=function(t){return Object.values(I).filter((function(e){return e.value===t}))[0]},M=function(t){function e(){t.call(this,document.documentElement,"root"),this.node.setAttribute(w.attr("js"),!0),this.listen()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})},e.prototype.click=function(t){this.emit(C.CLICK,t.target)},e.prototype.keydown=function(t){this.emit(C.KEYDOWN,L(t.keyCode))},e.prototype.keyup=function(t){this.emit(C.KEYUP,L(t.keyCode))},e}(A),D=function(t){function e(){t.call(this,"stage"),this.root=new M,t.prototype.add.call(this,this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasElement=function(t){for(var e=0,r=this.collection;e-1;n--){var i=e.children[n],o=t.node.compareDocumentPosition(i.node);if(o&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,i);if(o&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(i),t.addChild(i,0);else if(o&Node.DOCUMENT_POSITION_PRECEDING){r=n+1;break}}e.addChild(t,r)},e.prototype.activate=function(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})},e.prototype.deactivate=function(){this.observer.disconnect()},e.prototype.mutate=function(t){var e=this,r=[];t.forEach((function(t){switch(t.type){case"childList":t.removedNodes.forEach((function(t){return e.dispose(t)})),t.addedNodes.forEach((function(t){return e.parse(t)}));break;case"attributes":if(e.hasElement(t.target)){var n=e.getElement(t.target);n.prepare(t.attributeName),-1===r.indexOf(n)&&r.push(n);for(var i=0,o=n.descendants;i0&&document.documentElement.style.setProperty("--scrollbar-width",t+"px")}},e.prototype.unlock=function(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(w.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"))},e.prototype.move=function(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)},Object.defineProperties(e.prototype,r),e}(_),H=function(t){function e(){t.call(this,"load"),this.loading=this.load.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){window.addEventListener("load",this.loading)},e.prototype.load=function(){this.forEach((function(t){return t.load()}))},e}(_),G=["Marianne","Spectral"],$=function(t){function e(){t.call(this,"font-swap"),this.swapping=this.swap.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)},e.prototype.swap=function(){var t=G.filter((function(t){return document.fonts.check("16px "+t)}));this.forEach((function(e){return e.swapFont(t)}))},e}(_),F=function(t){function e(){t.call(this,"mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))},e.prototype.unlisten=function(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))},e.prototype.request=function(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))},e.prototype.move=function(){var t=this;this.requireMove&&(this.forEach((function(e){return e.mouseMove(t.point)})),this.requireMove=!1)},e}(_),U=function(t){function e(){t.call(this,"hash"),this.handling=this.handle.bind(this),this.getLocationHash()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={hash:{configurable:!0}};return e.prototype.activate=function(){window.addEventListener("hashchange",this.handling)},e.prototype.deactivate=function(){window.removeEventListener("hashchange",this.handling)},e.prototype._sanitize=function(t){return"#"===t.charAt(0)?t.substring(1):t},r.hash.set=function(t){var e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)},r.hash.get=function(){return this._hash},e.prototype.getLocationHash=function(){var t=window.location.hash;this._hash=this._sanitize(t)},e.prototype.handle=function(t){var e=this;this.getLocationHash(),this.forEach((function(r){return r.handleHash(e._hash,t)}))},Object.defineProperties(e.prototype,r),e}(_),z=function(){r.create(T),r.create(D),r.create(x),r.create(R),r.create(k),r.create(H),r.create($),r.create(F),r.create(U);var t=r.getModule("register");this.register=t.register.bind(t)},B={isActive:{configurable:!0}};B.isActive.get=function(){return r.isActive},z.prototype.start=function(){h.debug("START"),r.isActive=!0},z.prototype.stop=function(){h.debug("STOP"),r.isActive=!1},Object.defineProperties(z.prototype,B);var W=new z,q=function(){};q.prototype.getColor=function(t,e,r,n){void 0===n&&(n={});var i="--"+t+"-"+e+"-"+r+V(n);return getComputedStyle(document.documentElement).getPropertyValue(i).trim()||null};var V=function(t){switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},K=new q,Y=function(t){return"."===t.charAt(0)?t.substr(1):t},X=function(t){switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},Q=function(t,e,r){e=Y(e);var n=X(t),i=n.indexOf(e);!0===r?i>-1&&n.splice(i,1):-1===i&&n.push(e),t.className=n.join(" ")},J=function(t,e){return Q(t,e)},Z=function(t,e){return Q(t,e,!0)},tt=function(t,e){return X(t).indexOf(Y(e))>-1},et=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),rt=function(t){return t.querySelectorAll(et)},nt=0,it=function(t){if(!document.getElementById(t))return t;for(var e=!0,r=t;e;)t=r+"-"+ ++nt,e=document.getElementById(t);return t},ot={addClass:J,hasClass:tt,removeClass:Z,queryParentSelector:E,querySelectorAllArray:S,queryActions:rt,uniqueId:it},st=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._width=t,this._height=e,this._content=""},at={width:{configurable:!0},height:{configurable:!0},content:{configurable:!0}};at.width.get=function(){return this._width},at.width.set=function(t){this._width=t},at.height.get=function(){return this._height},at.height.set=function(t){this._height=t},at.content.get=function(){return this._content},at.content.set=function(t){this._content=t},st.prototype.getDataURI=function(t){void 0===t&&(t=!1);var e=""+this._content+"";return e=e.replace(/#/gi,"%23"),t&&(e=(e=(e=(e=(e=e.replace(//gi,"%3E")).replace(/"/gi,"'")).replace(/{/gi,"%7B")).replace(/}/gi,"%7D")),"data:image/svg+xml;charset=utf8,"+e},Object.defineProperties(st.prototype,at);var ct={DataURISVG:st},lt={supportLocalStorage:function(){try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:function(){return!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")}},ut={TransitionSelector:{NONE:w.selector("transition-none")}},pt=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return e.forEach((function(e){var r=Object.keys(e).reduce((function(t,r){return t[r]=Object.getOwnPropertyDescriptor(e,r),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);n.enumerable&&(r[t]=n)})),Object.defineProperties(t,r)})),t},ht={completeAssign:pt},ft={},dt={};Object.defineProperty(dt,"isLegacy",{get:function(){return r.isLegacy}}),dt.setLegacy=function(){r.isLegacy=!0},ft.legacy=dt,ft.dom=ot,ft.image=ct,ft.support=lt,ft.motion=ut,ft.property=ht,ft.ns=w,ft.register=W.register,ft.state=r,ft.query=function(t){if(t&&t.search){var e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null}(window.location),Object.defineProperty(ft,"preventManipulation",{get:function(){return g.preventManipulation}}),Object.defineProperty(ft,"stage",{get:function(){return r.getModule("stage")}});var yt=function(t){return r.getModule("stage").getProxy(t)};yt.version=s,yt.prefix=n,yt.organisation=o,yt.Modes=d,Object.defineProperty(yt,"mode",{set:function(t){g.mode=t},get:function(){return g.mode}}),yt.internals=ft,yt.version=s,yt.start=W.start,yt.stop=W.stop,yt.inspector=h,yt.colors=K;var bt=window[i];yt.internals.configuration=bt,g.configure(bt,yt.start,yt.internals.query),window[i]=yt;var gt=function(){this.emissions={}};gt.prototype.add=function(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)},gt.prototype.remove=function(t,e){if(this.emissions[t])if(e){var r=this.emissions[t].indexOf(e);r>-1&&this.emissions[t].splice(r)}else delete this.emissions[t]},gt.prototype.emit=function(t,e){if(!this.emissions[t])return[];for(var r=[],n=0,i=this.emissions[t];nwindow.innerHeight&&e.move(t.bottom-window.innerHeight+50)},_t.prototype.matches=function(t){return this.node.matches(t)},_t.prototype.querySelector=function(t){return this.node.querySelector(t)},_t.prototype.querySelectorAll=function(t){return S(this.node,t)},_t.prototype.queryParentSelector=function(t){return E(this.node,t)},_t.prototype.getRect=function(){var t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t},wt.isLegacy.get=function(){return r.isLegacy},Object.defineProperties(_t.prototype,wt),Object.defineProperties(_t,St);var Et=function(t,e,r,n,i){this.type=t,this.eventType="key"+t,this.keyCode=e,this.closure=r,this.preventDefault=!0===n,this.stopPropagation=!0===i};Et.prototype.handle=function(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())};var Ot=function(t,e,r,n){this._node=t,this._type=e,this._closure=r,this._options=n},jt={closure:{configurable:!0}};jt.closure.get=function(){return this._closure},Ot.prototype.listen=function(){this._node.addEventListener(this._type,this._closure,this._options)},Ot.prototype.matchOptions=function(t){var e=this;switch(void 0===t&&(t=null),!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((function(r){return e._options[r]===t[r]})):return!0}return!1},Ot.prototype.unlisten=function(){this._node.removeEventListener(this._type,this._closure,this._options)},Object.defineProperties(Ot.prototype,jt);var Tt=function(t,e){this.hash=t,this.add=e};Tt.prototype.handle=function(t,e){this.hash===t&&this.add(e)};var Pt={DISCLOSE:w.event("disclose"),CONCEAL:w.event("conceal")},At={RESET:w.emission("disclosure","reset"),ADDED:w.emission("disclosure","added"),RETRIEVE:w.emission("disclosure","retrieve"),REMOVED:w.emission("disclosure","removed"),GROUP:w.emission("disclosure","group"),UNGROUP:w.emission("disclosure","ungroup"),SPOTLIGHT:w.emission("disclosure","spotlight")},Nt=function(t){function e(e,r,n,i){t.call(this),this.type=e,this._selector=r,this.DisclosureButtonInstanceClass=n,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isEnabled:{configurable:!0},isPristine:{configurable:!0},proxy:{configurable:!0},buttons:{configurable:!0},group:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0},primaryButtons:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Disclosure"},e.prototype.init=function(){this.addDescent(At.RESET,this.reset.bind(this)),this.addDescent(At.GROUP,this.update.bind(this)),this.addDescent(At.UNGROUP,this.update.bind(this)),this.addAscent(At.SPOTLIGHT,this.disclose.bind(this)),this.register('[aria-controls="'+this.id+'"]',this.DisclosureButtonInstanceClass),this.ascend(At.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()},r.isEnabled.get=function(){return t.prototype.isEnabled},r.isEnabled.set=function(e){this.isEnabled!==e&&(t.prototype.isEnabled=e,e?this.ascend(At.ADDED):this.ascend(At.REMOVED))},r.isPristine.get=function(){return this._isPristine},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});return this.type.canConceal&&(r.conceal=e.conceal.bind(e)),pt(r,{get buttons(){return e.buttons.map((function(t){return t.proxy}))},get group(){var t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})},r.buttons.get=function(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)},e.prototype.update=function(){this.getGroup(),this.retrievePrimaries()},e.prototype.getGroup=function(){if(this.disclosuresGroupInstanceClassName){var t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}else this._group=null},r.group.get=function(){return this._group},e.prototype.disclose=function(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)},e.prototype.conceal=function(t,e){return void 0===e&&(e=!0),!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(At.RESET),!0))},r.isDisclosed.get=function(){return this._isDisclosed},r.isDisclosed.set=function(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?Pt.DISCLOSE:Pt.CONCEAL,this.type),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(var e=0;e0)},e.prototype.focus=function(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()},r.primaryButtons.get=function(){return this._primaryButtons},e.prototype.retrievePrimaries=function(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))},e.prototype._retrievePrimaries=function(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}},e.prototype.retrieved=function(){},e.prototype._spotlight=function(){var t=this;this.disclose(),this.request((function(){t.ascend(At.SPOTLIGHT)}))},e.prototype._electPrimaries=function(t){var e=this;return t.filter((function(t){return t.canDisclose&&!e.node.contains(t.node)}))},e.prototype.applyAbility=function(t){void 0===t&&(t=!1);var e=!this._primaryButtons.every((function(t){return t.isDisabled}));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(At.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(At.ADDED),this.hash===this.id&&this._spotlight())))},e.prototype.dispose=function(){this._group=null,this._primaryButtons=null,t.prototype.dispose.call(this),this.ascend(At.REMOVED)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),Ct=function(t){function e(e){t.call(this),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:w.attr(e.id),this._canDisclose=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isPrimary:{configurable:!0},canDisclose:{configurable:!0},isDisabled:{configurable:!0},proxy:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},dx:{configurable:!0},dy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosureButton"},r.isPrimary.get=function(){return this.registration.creator.primaryButtons.includes(this)},r.canDisclose.get=function(){return this._canDisclose},r.isDisabled.get=function(){return this.type.canDisable&&this.hasAttribute("disabled")},e.prototype.init=function(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{focus:this.focus.bind(this)})},e.prototype.handleClick=function(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)},e.prototype.mutate=function(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())},e.prototype.apply=function(t){var e=this;this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((function(){e._isApplying=!1})))},r.isDisclosed.get=function(){return"true"===this.getAttribute(this.attributeName)},r.isInitiallyDisclosed.get=function(){return this._isInitiallyDisclosed},e.prototype.focus=function(){t.prototype.focus.call(this),this.scrollIntoView()},e.prototype.measure=function(t){var e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y},r.dx.get=function(){return this._dx},r.dy.get=function(){return this._dy},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),It={PREVENT_CONCEAL:w.attr.selector("prevent-conceal"),GROUP:w.attr("group")},Lt=function(t){function e(e,r){t.call(this,r),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},members:{configurable:!0},length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0},isGrouped:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosuresGroup"},e.prototype.init=function(){this.addAscent(At.ADDED,this.update.bind(this)),this.addAscent(At.RETRIEVE,this.retrieve.bind(this)),this.addAscent(At.REMOVED,this.update.bind(this)),this.descend(At.GROUP),this._isGrouped="false"!==this.getAttribute(It.GROUP),this.update()},r.proxy.get=function(){var e=this,r={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){var t=e.current;return t?t.proxy:null},get members(){return e.members.map((function(t){return t.proxy}))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return pt.call(this,t.prototype.proxy,r)},e.prototype.validate=function(t){return!0},e.prototype.getMembers=function(){var t=this,e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((function(t){return t.isEnabled})),e.filter((function(e){return!t._members.includes(e)})).forEach((function(t){return t.conceal()}))},e.prototype.retrieve=function(t){void 0===t&&(t=!1),this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))},e.prototype._retrieve=function(){var t=this;if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.hash)for(var e=0;e=this.length||t===this._index)){this._index=t;for(var e=0;e-1}));if(1===r.length)return r;if(1===(e=t.prototype._electPrimaries.call(this,e)).length)return e;var n=e.filter((function(t){return t.dy>=0}));if(n.length>0&&(e=n),1===e.length)return e;var i=Math.min.apply(Math,e.map((function(t){return t.dy}))),o=e.filter((function(t){return t.dy===i}));return o.length>0&&(e=o),1===e.length||e.sort((function(t,e){return Math.abs(e.dx)-Math.abs(t.dx)})),e},Object.defineProperties(e,r),e}(Nt),kt=function(t){function e(){t.call(this,"Collapse")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CollapsesGroup"},r.canUngroup.get=function(){return!0},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Lt),Ht={CHANGE:w("equisized")},Gt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Equisized"},e.prototype.init=function(){this.ascend(Ht.CHANGE)},e.prototype.measure=function(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width},e.prototype.adjust=function(t){this.isLegacy&&(this.style.width=t+"px")},e.prototype.dispose=function(){this.ascend(Ht.CHANGE)},Object.defineProperties(e,r),e}(_t),$t=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"EquisizedsGroup"},e.prototype.init=function(){this.isResizing=!0,this.isLoading=!0,this.addAscent(Ht.CHANGE,this.resize.bind(this))},e.prototype.load=function(){this.resize()},e.prototype.resize=function(){var t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");var e=Math.max.apply(Math,t.map((function(t){return t.measure()})));this.isLegacy?t.forEach((function(t){return t.adjust(e)})):this.style.setProperty("--equisized-width",e+"px")},Object.defineProperties(e,r),e}(_t),Ft={TOGGLE:w.event("toggle")},Ut=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={pressed:{configurable:!0},proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Toggle"},e.prototype.init=function(){this.pressed="true"===this.pressed,this.listenClick()},e.prototype.handleClick=function(){this.toggle()},e.prototype.toggle=function(){this.pressed="true"!==this.pressed},r.pressed.get=function(){return this.getAttribute("aria-pressed")},r.pressed.set=function(t){this.setAttribute("aria-pressed",t?"true":"false"),this.dispatch(Ft.TOGGLE,t)},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{toggle:e.toggle.bind(e)});return pt(r,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"InjectSvg"},e.prototype.init=function(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})},e.prototype.fetch=function(){var t=this;this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((function(t){return t.text()})).then((function(e){var r=(new DOMParser).parseFromString(e,"text/html");t.svg=r.querySelector("svg"),t.svg&&t.replace()})))},e.prototype.replace=function(){if(this.svg){this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);var t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-','id="'+t+"-artwork-"),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-','"#'+t+"-artwork-"))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,r;e=this.svg,r={"aria-hidden":!0,focusable:!1},Object.keys(r).forEach((function(t){return e.setAttribute(t,r[t])})),this.node.replaceChild(this.svg,this.img)}else this.fetch()},e.prototype.restore=function(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),Bt={INJECT_SVG:"["+w.attr("inject-svg")+"]"},Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Artwork"},e.prototype.init=function(){this.isLegacy&&this.replace()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{replace:this.replace.bind(this)})},e.prototype.fetch=function(){var t=this;this.xlink=this.node.getAttribute("href");var e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];var r=new XMLHttpRequest;r.onload=function(){var e=(new DOMParser).parseFromString(r.responseText,"text/html");t.realSvgContent=e.getElementById(t.svgName),t.realSvgContent&&("symbol"===t.realSvgContent.tagName?(t.use=e.querySelector('use[href="#'+t.svgName+'"]'),t.use&&t.node.parentNode.insertBefore(t.use,t.node)):t.realSvgContent.classList.add(t.node.classList),t.replace())},r.open("GET",this.svgUrl),r.send()},e.prototype.replace=function(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),qt={ARTWORK_USE:w.selector("artwork")+" use"},Vt={ASSESS_FILE:""+w.attr.selector("assess-file"),DETAIL:w.attr.selector("assess-file")+' [class$="__detail"], '+w.attr.selector("assess-file")+' [class*="__detail "]'},Kt={UPDATE:w.emission("assess","update"),ADDED:w.emission("assess","added")},Yt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessFile"},e.prototype.init=function(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Kt.ADDED,this.update.bind(this)),this.addDescent(Kt.ADDED,this.update.bind(this))},e.prototype.getFileLength=function(){var t=this;void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((function(e){t.length=e.headers.get("content-length")||-1,-1===t.length&&h.warn("File size unknown: "+t.href+'\nUnable to get HTTP header: "content-length"'),t.gather()})):this.length=-1},e.prototype.mutate=function(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())},e.prototype.gather=function(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){var t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()},e.prototype.update=function(){this.details&&(this.descend(Kt.UPDATE,this.details),this.ascend(Kt.UPDATE,this.details))},e.prototype.getLang=function(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)},e.prototype.parseExtension=function(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")},e.prototype.getLangDisplayName=function(t){if(this.isLegacy)return t;var e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)},e.prototype.bytesToSize=function(t){if(-1===t)return null;var e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(w.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);var r=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===r)return t+" "+e[r];var n=t/Math.pow(1e3,r),i=Math.round(100*(n+Number.EPSILON))/100;return String(i).replace(".",",")+" "+e[r]},Object.defineProperties(e,r),e}(_t),Xt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessDetail"},e.prototype.init=function(){this.addDescent(Kt.UPDATE,this.update.bind(this)),this.ascend(Kt.ADDED)},e.prototype.update=function(t){this.node.innerHTML=t.join(" - ")},Object.defineProperties(e,r),e}(_t),Qt=["32x9","16x9","3x2","4x3","1x1","3x4","2x3"],Jt=function(t,e){return e.map((function(e){return w.selector(t+"--"+e)})).join(",")},Zt=w.selector("responsive-img")+", "+Jt("responsive-img",Qt)+", "+w.selector("responsive-vid")+", "+Jt("responsive-vid",["16x9","4x3","1x1"]),te={RATIO:w.selector("ratio")+", "+Jt("ratio",Qt)+", "+Zt},ee=window[i],re=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Ratio"},e.prototype.init=function(){if(!ee.internals.support.supportAspectRatio()){for(var t in this.ratio=16/9,this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){var e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}},e.prototype.render=function(){this.getRect().width!==this.currentWidth&&this.update()},e.prototype.update=function(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"},Object.defineProperties(e,r),e}(_t),ne={TOP:w.selector("placement--top"),RIGHT:w.selector("placement--right"),BOTTOM:w.selector("placement--bottom"),LEFT:w.selector("placement--left")},ie={START:w.selector("placement--start"),CENTER:w.selector("placement--center"),END:w.selector("placement--end")},oe={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},se={START:"align_start",CENTER:"align_center",END:"align_end"},ae={AUTO:"placement_auto",MANUAL:"placement_manual"},ce=function(t){function e(e,r,n,i){void 0===e&&(e=ae.AUTO),void 0===r&&(r=[oe.BOTTOM,oe.TOP,oe.LEFT,oe.RIGHT]),void 0===n&&(n=[se.CENTER,se.START,se.END]),void 0===i&&(i=16),t.call(this),this._mode=e,this._places=r,this._aligns=n,this._safeAreaMargin=i,this._isShown=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},mode:{configurable:!0},place:{configurable:!0},align:{configurable:!0},isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Placement"},e.prototype.init=function(){this.isResizing=!0},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return pt(r,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})},r.mode.get=function(){return this._mode},r.mode.set=function(t){this._mode=t},r.place.get=function(){return this._place},r.place.set=function(t){if(this._place!==t){switch(this._place){case oe.TOP:this.removeClass(ne.TOP);break;case oe.RIGHT:this.removeClass(ne.RIGHT);break;case oe.BOTTOM:this.removeClass(ne.BOTTOM);break;case oe.LEFT:this.removeClass(ne.LEFT)}switch(this._place=t,this._place){case oe.TOP:this.addClass(ne.TOP);break;case oe.RIGHT:this.addClass(ne.RIGHT);break;case oe.BOTTOM:this.addClass(ne.BOTTOM);break;case oe.LEFT:this.addClass(ne.LEFT)}}},r.align.get=function(){return this._align},r.align.set=function(t){if(this._align!==t){switch(this._align){case se.START:this.removeClass(ie.START);break;case se.CENTER:this.removeClass(ie.CENTER);break;case se.END:this.removeClass(ie.END)}switch(this._align=t,this._align){case se.START:this.addClass(ie.START);break;case se.CENTER:this.addClass(ie.CENTER);break;case se.END:this.addClass(ie.END)}}},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},r.isShown.get=function(){return this._isShown},r.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)},e.prototype.setReferent=function(t){this._referent=t},e.prototype.resize=function(){this.safeArea={top:this._safeAreaMargin,right:window.innerWidth-this._safeAreaMargin,bottom:window.innerHeight-this._safeAreaMargin,left:this._safeAreaMargin,center:.5*window.innerWidth,middle:.5*window.innerHeight}},e.prototype.render=function(){if(this._referent){if(this.rect=this.getRect(),this.referentRect=this._referent.getRect(),this.mode===ae.AUTO)switch(this.place=this.getPlace(),this.place){case oe.TOP:case oe.BOTTOM:this.align=this.getHorizontalAlign();break;case oe.LEFT:case oe.RIGHT:this.align=this.getVerticalAlign()}var t,e;switch(this.place){case oe.TOP:e=this.referentRect.top-this.rect.height;break;case oe.RIGHT:t=this.referentRect.right;break;case oe.BOTTOM:e=this.referentRect.bottom;break;case oe.LEFT:t=this.referentRect.left-this.rect.width}switch(this.place){case oe.TOP:case oe.BOTTOM:switch(this.align){case se.CENTER:t=this.referentRect.center-.5*this.rect.width;break;case se.START:t=this.referentRect.left;break;case se.END:t=this.referentRect.right-this.rect.width}break;case oe.RIGHT:case oe.LEFT:switch(this.align){case se.CENTER:e=this.referentRect.middle-.5*this.rect.height;break;case se.START:e=this.referentRect.top;break;case se.END:e=this.referentRect.bottom-this.rect.height}}this._x===t&&this._y===e||(this._x=t+.5|0,this._y=e+.5|0,this.node.style.transform="translate("+this._x+"px,"+this._y+"px)")}},e.prototype.getPlace=function(){for(var t=0,e=this._places;tthis.safeArea.top)return oe.TOP;break;case oe.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return oe.LEFT}}return this._places[0]},e.prototype.getHorizontalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return se.END}}return this._aligns[0]},e.prototype.getVerticalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return se.END}}return this._aligns[0]},e.prototype.dispose=function(){this._referent=null,t.prototype.dispose.call(this)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),le=function(t){function e(){t.call(this),this._isShown=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={placement:{configurable:!0},isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PlacementReferent"},e.prototype.init=function(){this.registration.creator.setReferent(this),this._placement=this.registration.creator},r.placement.get=function(){return this._placement},r.isShown.get=function(){return this._isShown},r.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this._isShown=t,t?this.registration.creator.show():this.registration.creator.hide())},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t);yt.core={Instance:_t,Breakpoints:mt,KeyCodes:I,Disclosure:Nt,DisclosureButton:Ct,DisclosuresGroup:Lt,DisclosureType:Mt,DisclosureEvent:Pt,DisclosureSelector:It,DisclosureEmission:At,Collapse:Rt,CollapseButton:Dt,CollapsesGroup:kt,CollapseSelector:xt,RootSelector:{ROOT:":root"},RootEmission:C,Equisized:Gt,EquisizedEmission:Ht,Toggle:Ut,EquisizedsGroup:$t,InjectSvg:zt,InjectSvgSelector:Bt,Artwork:Wt,ArtworkSelector:qt,AssessFile:Yt,AssessDetail:Xt,AssessEmission:Kt,AssessSelector:Vt,Ratio:re,RatioSelector:te,Placement:ce,PlacementReferent:le,PlacementAlign:se,PlacementPosition:oe,PlacementMode:ae},yt.internals.register(yt.core.CollapseSelector.COLLAPSE,yt.core.Collapse),yt.internals.register(yt.core.InjectSvgSelector.INJECT_SVG,yt.core.InjectSvg),yt.internals.register(yt.core.RatioSelector.RATIO,yt.core.Ratio),yt.internals.register(yt.core.AssessSelector.ASSESS_FILE,yt.core.AssessFile),yt.internals.register(yt.core.AssessSelector.DETAIL,yt.core.AssessDetail);var ue={SYSTEM:"system",LIGHT:"light",DARK:"dark"},pe={THEME:ee.internals.ns.attr("theme"),SCHEME:ee.internals.ns.attr("scheme"),TRANSITION:ee.internals.ns.attr("transition")},he={LIGHT:"light",DARK:"dark"},fe={SCHEME:ee.internals.ns.emission("scheme","scheme"),THEME:ee.internals.ns.emission("scheme","theme"),ASK:ee.internals.ns.emission("scheme","ask")},de={SCHEME:ee.internals.ns.event("scheme"),THEME:ee.internals.ns.event("theme")},ye=function(t){function e(){t.call(this,!1)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},scheme:{configurable:!0},theme:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Scheme"},e.prototype.init=function(){this.changing=this.change.bind(this),this.hasAttribute(pe.TRANSITION)&&(this.removeAttribute(pe.TRANSITION),this.request(this.restoreTransition.bind(this)));var t=ee.internals.support.supportLocalStorage()?localStorage.getItem("scheme"):"",e=this.getAttribute(pe.SCHEME);switch(t){case ue.DARK:case ue.LIGHT:case ue.SYSTEM:this.scheme=t;break;default:switch(e){case ue.DARK:this.scheme=ue.DARK;break;case ue.LIGHT:this.scheme=ue.LIGHT;break;default:this.scheme=ue.SYSTEM}}this.addAscent(fe.ASK,this.ask.bind(this)),this.addAscent(fe.SCHEME,this.apply.bind(this))},r.proxy.get=function(){var e=this,r={get scheme(){return e.scheme},set scheme(t){e.scheme=t}};return ee.internals.property.completeAssign.call(this,t.prototype.proxy,r)},e.prototype.restoreTransition=function(){this.setAttribute(pe.TRANSITION,"")},e.prototype.ask=function(){this.descend(fe.SCHEME,this.scheme)},e.prototype.apply=function(t){this.scheme=t},r.scheme.get=function(){return this._scheme},r.scheme.set=function(t){if(this._scheme!==t){switch(this._scheme=t,t){case ue.SYSTEM:this.listenPreferences();break;case ue.DARK:this.unlistenPreferences(),this.theme=he.DARK;break;case ue.LIGHT:this.unlistenPreferences(),this.theme=he.LIGHT;break;default:return void(this.scheme=ue.SYSTEM)}this.descend(fe.SCHEME,t),ee.internals.support.supportLocalStorage()&&localStorage.setItem("scheme",t),this.setAttribute(pe.SCHEME,t),this.dispatch(de.SCHEME,{scheme:this._scheme})}},r.theme.get=function(){return this._theme},r.theme.set=function(t){if(this._theme!==t)switch(t){case he.LIGHT:case he.DARK:this._theme=t,this.setAttribute(pe.THEME,t),this.descend(fe.THEME,t),this.dispatch(de.THEME,{theme:this._theme}),document.documentElement.style.colorScheme=t===he.DARK?"dark":""}},e.prototype.listenPreferences=function(){this.isListening||(this.isListening=!0,this.mediaQuery=window.matchMedia("(prefers-color-scheme: dark)"),this.mediaQuery.addEventListener&&this.mediaQuery.addEventListener("change",this.changing),this.change())},e.prototype.unlistenPreferences=function(){this.isListening&&(this.isListening=!1,this.mediaQuery.removeEventListener("change",this.changing),this.mediaQuery=null)},e.prototype.change=function(){this.isListening&&(this.theme=this.mediaQuery.matches?he.DARK:he.LIGHT)},e.prototype.mutate=function(t){t.indexOf(pe.SCHEME)>-1&&(this.scheme=this.getAttribute(pe.SCHEME)),t.indexOf(pe.THEME)>-1&&(this.theme=this.getAttribute(pe.THEME))},e.prototype.dispose=function(){this.unlistenPreferences()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),be={SCHEME:":root"+ee.internals.ns.attr.selector("theme")+", :root"+ee.internals.ns.attr.selector("scheme"),SWITCH_THEME:ee.internals.ns.selector("switch-theme"),RADIO_BUTTONS:'input[name="'+ee.internals.ns("radios-theme")+'"]'};ee.scheme={Scheme:ye,SchemeValue:ue,SchemeSelector:be,SchemeEmission:fe,SchemeTheme:he,SchemeEvent:de},ee.internals.register(ee.scheme.SchemeSelector.SCHEME,ee.scheme.Scheme);var ge=ee.internals.ns.selector("accordion"),ve=ee.internals.ns.selector("collapse"),me={GROUP:ee.internals.ns.selector("accordions-group"),ACCORDION:ge,COLLAPSE:ge+" > "+ve+", "+ge+" > *:not("+ge+"):not("+ve+") > "+ve+", "+ge+" > *:not("+ge+"):not("+ve+") > *:not("+ge+"):not("+ve+") > "+ve,COLLAPSE_LEGACY:ge+" "+ve,BUTTON:ge+"__btn"},_e=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Accordion"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(me.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),we=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var r=e.node.matches(ee.internals.legacy.isLegacy?me.COLLAPSE_LEGACY:me.COLLAPSE);return t.prototype.validate.call(this,e)&&r},Object.defineProperties(e,r),e}(ee.core.CollapsesGroup);ee.accordion={Accordion:_e,AccordionSelector:me,AccordionsGroup:we},ee.internals.register(ee.accordion.AccordionSelector.GROUP,ee.accordion.AccordionsGroup),ee.internals.register(ee.accordion.AccordionSelector.ACCORDION,ee.accordion.Accordion);var Se={EQUISIZED_BUTTON:ee.internals.ns.selector("btns-group--equisized")+" "+ee.internals.ns.selector("btn"),EQUISIZED_GROUP:ee.internals.ns.selector("btns-group--equisized")};ee.button={ButtonSelector:Se},ee.internals.register(ee.button.ButtonSelector.EQUISIZED_BUTTON,ee.core.Equisized),ee.internals.register(ee.button.ButtonSelector.EQUISIZED_GROUP,ee.core.EquisizedsGroup);var Ee=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"CardDownload"},e.prototype.init=function(){var t=this;this.addAscent(ee.core.AssessEmission.UPDATE,(function(e){t.descend(ee.core.AssessEmission.UPDATE,e)})),this.addAscent(ee.core.AssessEmission.ADDED,(function(){t.descend(ee.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ee.core.Instance),Oe={DOWNLOAD:ee.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:ee.internals.ns.selector("card--download")+" "+ee.internals.ns.selector("card__end")+" "+ee.internals.ns.selector("card__detail")};ee.card={CardSelector:Oe,CardDownload:Ee},ee.internals.register(ee.card.CardSelector.DOWNLOAD,ee.card.CardDownload),ee.internals.register(ee.card.CardSelector.DOWNLOAD_DETAIL,ee.core.AssessDetail);var je={INPUT:ee.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},Te={CHANGE:ee.internals.ns.emission("checkbox","change"),RETRIEVE:ee.internals.ns.emission("checkbox","retrieve")},Pe=function(t){function e(){t.call(this),this._handlingChange=this.handleChange.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CheckboxInput"},e.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(Te.RETRIEVE,this._handlingChange),this.handleChange()},r.isChecked.get=function(){return this.node.checked},e.prototype.handleChange=function(){this.ascend(Te.CHANGE,this.node)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.checkbox={CheckboxSelector:je,CheckboxEmission:Te,CheckboxInput:Pe},ee.internals.register(ee.checkbox.CheckboxSelector.INPUT,ee.checkbox.CheckboxInput);var Ae={SEGMENTED:ee.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:ee.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:ee.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:ee.internals.ns.selector("segmented__legend")},Ne={ADDED:ee.internals.ns.emission("segmented","added"),REMOVED:ee.internals.ns.emission("segmented","removed")},Ce=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Segmented"},e.prototype.init=function(){this.elements=this.node.querySelector(Ae.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(Ae.SEGMENTED_LEGEND),this.addAscent(Ne.ADDED,this.resize.bind(this)),this.addAscent(Ne.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(ee.prefix+"-segmented__legend--inline"),this.isResizing=!0},e.prototype.resize=function(){var t=ee.prefix+"-segmented--vertical",e=ee.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(e),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(e)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(e,r),e}(ee.core.Instance),Ie=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SegmentedElement"},e.prototype.init=function(){this.ascend(Ne.ADDED)},e.prototype.dispose=function(){this.ascend(Ne.REMOVED)},Object.defineProperties(e,r),e}(ee.core.Instance);ee.segmented={SegmentedSelector:Ae,SegmentedEmission:Ne,SegmentedElement:Ie,Segmented:Ce},ee.internals.register(ee.segmented.SegmentedSelector.SEGMENTED,ee.segmented.Segmented),ee.internals.register(ee.segmented.SegmentedSelector.SEGMENTED_ELEMENT,ee.segmented.SegmentedElement);var Le={BREADCRUMB:ee.internals.ns.selector("breadcrumb"),BUTTON:ee.internals.ns.selector("breadcrumb__button")},Me=function(t){function e(){t.call(this),this.count=0,this.focusing=this.focus.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Breadcrumb"},e.prototype.init=function(){this.getCollapse(),this.isResizing=!0},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})},e.prototype.getCollapse=function(){var t=this.collapse;t?t.listen(ee.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(ee.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},e.prototype.resize=function(){var t=this.collapse,e=this.links;t&&e.length&&(this.isBreakpoint(ee.core.Breakpoints.MD)?t.buttonHasFocus&&e[0].focus():e.indexOf(document.activeElement)>-1&&t.focus())},r.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},r.collapse.get=function(){return this.element.getDescendantInstances(ee.core.Collapse.instanceClassName,null,!0)[0]},e.prototype.focus=function(){this.count=0,this._focus()},e.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},e.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Le.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.breadcrumb={BreadcrumbSelector:Le,Breadcrumb:Me},ee.internals.register(ee.breadcrumb.BreadcrumbSelector.BREADCRUMB,ee.breadcrumb.Breadcrumb);var De={TOOLTIP:ee.internals.ns.selector("tooltip"),SHOWN:ee.internals.ns.selector("tooltip--shown"),BUTTON:ee.internals.ns.selector("btn--tooltip")},xe=1,Re=2,ke=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={state:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(De.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var r=this.mouseout.bind(this);this.listen("mouseout",r),this.placement.listen("mouseout",r)}this.addEmission(ee.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(ee.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===ee.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},r.state.get=function(){return this._state},r.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=xe},e.prototype.focusOut=function(){this.state&=~xe},e.prototype.mouseover=function(){this.state|=Re},e.prototype.mouseout=function(){this.state&=~Re},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.PlacementReferent),He={SHOW:w.event("show"),HIDE:w.event("hide")},Ge="hidden",$e="shown",Fe="hiding",Ue=function(t){function e(){t.call(this,ee.core.PlacementMode.AUTO,[ee.core.PlacementPosition.TOP,ee.core.PlacementPosition.BOTTOM],[ee.core.PlacementAlign.CENTER,ee.core.PlacementAlign.START,ee.core.PlacementAlign.END]),this.modifier="",this._state=Ge}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',ke),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===Fe&&(this._state=Ge,this.isShown=!1)},r.isShown.get=function(){return t.prototype.isShown},r.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=$e,this.addClass(De.SHOWN),this.dispatch(He.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===$e:this._state=Fe,this.removeClass(De.SHOWN);break;case this.isShown&&!e&&this._state===Ge:this.dispatch(He.HIDE),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this);var e=this.referentRect.center-this.rect.center,r=.5*this.rect.width-8;e<-r&&(e=-r),e>r&&(e=r),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Placement);ee.tooltip={Tooltip:Ue,TooltipSelector:De,TooltipEvent:He},ee.internals.register(ee.tooltip.TooltipSelector.TOOLTIP,ee.tooltip.Tooltip);var ze=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},r.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),Be=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},input:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleStatusLabel"},e.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',ze),this.update(),this.isSwappingFont=!0},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},r.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},e.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),r=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),i=parseFloat(n.width);i>r&&(r=i),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",r/16+"rem")},e.prototype.swapFont=function(t){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),We={STATUS_LABEL:""+ee.internals.ns.selector("toggle__label")+ee.internals.ns.attr.selector("checked-label")+ee.internals.ns.attr.selector("unchecked-label")};ee.toggle={ToggleStatusLabel:Be,ToggleSelector:We},ee.internals.register(ee.toggle.ToggleSelector.STATUS_LABEL,ee.toggle.ToggleStatusLabel);var qe=ee.internals.ns.selector("sidemenu__item"),Ve=ee.internals.ns.selector("collapse"),Ke={LIST:ee.internals.ns.selector("sidemenu__list"),COLLAPSE:qe+" > "+Ve+", "+qe+" > *:not("+qe+"):not("+Ve+") > "+Ve+", "+qe+" > *:not("+qe+"):not("+Ve+") > *:not("+qe+"):not("+Ve+") > "+Ve,COLLAPSE_LEGACY:qe+" "+Ve,ITEM:ee.internals.ns.selector("sidemenu__item"),BUTTON:ee.internals.ns.selector("sidemenu__btn")},Ye=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SidemenuList"},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.node.matches(ee.internals.legacy.isLegacy?Ke.COLLAPSE_LEGACY:Ke.COLLAPSE)},Object.defineProperties(e,r),e}(ee.core.CollapsesGroup),Xe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuItem"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Ke.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.sidemenu={SidemenuList:Ye,SidemenuItem:Xe,SidemenuSelector:Ke},ee.internals.register(ee.sidemenu.SidemenuSelector.LIST,ee.sidemenu.SidemenuList),ee.internals.register(ee.sidemenu.SidemenuSelector.ITEM,ee.sidemenu.SidemenuItem);var Qe={MODAL:ee.internals.ns.selector("modal"),SCROLL_DIVIDER:ee.internals.ns.selector("scroll-divider"),BODY:ee.internals.ns.selector("modal__body"),TITLE:ee.internals.ns.selector("modal__title")},Je=function(t){function e(){t.call(this,ee.core.DisclosureType.OPENED)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(e,r),e}(ee.core.DisclosureButton),Ze={CONCEALING_BACKDROP:ee.internals.ns.attr("concealing-backdrop")},tr=function(t){function e(){t.call(this,ee.core.DisclosureType.OPENED,Qe.MODAL,Je,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={body:{configurable:!0},isDialog:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Modal"},e.prototype.init=function(){t.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(ee.core.RootEmission.KEYDOWN,this._keydown.bind(this))},e.prototype._keydown=function(t){if(t===ee.core.KeyCodes.ESCAPE)this._escape()},e.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},e.prototype.retrieved=function(){this._ensureAccessibleName()},r.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},e.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(Ze.CONCEALING_BACKDROP)&&this.conceal()},e.prototype.disclose=function(e){return!!t.prototype.disclose.call(this,e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},e.prototype.conceal=function(e,r){return!!t.prototype.conceal.call(this,e,r)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},r.isDialog.get=function(){return this._isDialog},r.isDialog.set=function(t){this._isDialog=t},e.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},e.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},e.prototype._setAccessibleName=function(t,e){var r=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",r)},e.prototype._ensureAccessibleName=function(){if(!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label")){this.warn("missing accessible name");var t=this.node.querySelector(Qe.TITLE),e=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==e:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(e,"primary")}}},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Disclosure),er=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),rr=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),nr=function(t,e){if(!(t instanceof Element))return!1;var r=window.getComputedStyle(t);if(!r)return!1;if("hidden"===r.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===r.display)return!1;t=t.parentElement}return!0},ir=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},or={trapped:{configurable:!0},focusables:{configurable:!0}};or.trapped.get=function(){return null!==this.element},ir.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},ir.prototype.wait=function(){nr(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},ir.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},ir.prototype.stun=function(t){for(var e=0,r=t.children;e0||e[i-1].tabIndex>0)&&(t.preventDefault(),e[i-1].focus()):this.element.contains(document.activeElement)&&i!==e.length-1&&-1!==i?document.activeElement.tabIndex>0&&(t.preventDefault(),e[i+1].focus()):(t.preventDefault(),r.focus())}}},or.focusables.get=function(){var t=this,e=ee.internals.dom.querySelectorAllArray(this.element,er),r=ee.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(r.length){for(var n={},i=0,o=r;ithis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(Qe.SCROLL_DIVIDER):this.addClass(Qe.SCROLL_DIVIDER):this.removeClass(Qe.SCROLL_DIVIDER)},e.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},e.prototype.adjust=function(){var t=32*(this.isBreakpoint(ee.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-t+"px":this.style.setProperty("--modal-max-height",window.innerHeight-t+"px"),this.divide()},Object.defineProperties(e,r),e}(ee.core.Instance);ee.modal={Modal:tr,ModalButton:Je,ModalBody:lr,ModalsGroup:cr,ModalSelector:Qe},ee.internals.register(ee.modal.ModalSelector.MODAL,ee.modal.Modal),ee.internals.register(ee.modal.ModalSelector.BODY,ee.modal.ModalBody),ee.internals.register(ee.core.RootSelector.ROOT,ee.modal.ModalsGroup);var ur={TOGGLE:ee.internals.ns.emission("password","toggle"),ADJUST:ee.internals.ns.emission("password","adjust")},pr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},e.prototype.init=function(){this.listenClick(),this.ascend(ur.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},r.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},r.isChecked.get=function(){return this.node.checked},r.isChecked.set=function(t){this._isChecked=t,this.ascend(ur.TOGGLE,t)},e.prototype.handleClick=function(){this.isChecked=!this._isChecked},e.prototype.swapFont=function(t){this.ascend(ur.ADJUST,this.width)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),hr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Password"},e.prototype.init=function(){this.addAscent(ur.TOGGLE,this.toggle.bind(this)),this.addAscent(ur.ADJUST,this.adjust.bind(this))},e.prototype.toggle=function(t){this.descend(ur.TOGGLE,t)},e.prototype.adjust=function(t){this.descend(ur.ADJUST,t)},Object.defineProperties(e,r),e}(ee.core.Instance),fr={PASSWORD:ee.internals.ns.selector("password"),INPUT:ee.internals.ns.selector("password__input"),LABEL:ee.internals.ns.selector("password__label"),TOOGLE:ee.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},dr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRevealed:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordInput"},e.prototype.init=function(){this.addDescent(ur.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},e.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},r.isRevealed.get=function(){return this._isRevealed},e.prototype.capslock=function(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(ee.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(ee.internals.ns.attr("capslock")))},r.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),yr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"PasswordLabel"},e.prototype.init=function(){this.addDescent(ur.ADJUST,this.adjust.bind(this))},e.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(e,r),e}(ee.core.Instance);ee.password={Password:hr,PasswordToggle:pr,PasswordSelector:fr,PasswordInput:dr,PasswordLabel:yr},ee.internals.register(ee.password.PasswordSelector.INPUT,ee.password.PasswordInput),ee.internals.register(ee.password.PasswordSelector.PASSWORD,ee.password.Password),ee.internals.register(ee.password.PasswordSelector.TOOGLE,ee.password.PasswordToggle),ee.internals.register(ee.password.PasswordSelector.LABEL,ee.password.PasswordLabel);var br=ee.internals.ns.selector("nav__item"),gr=ee.internals.ns.selector("collapse"),vr={NAVIGATION:ee.internals.ns.selector("nav"),COLLAPSE:br+" > "+gr+", "+br+" > *:not("+br+"):not("+gr+") > "+gr+", "+br+" > *:not("+br+"):not("+gr+") > *:not("+br+"):not("+gr+") > "+gr,COLLAPSE_LEGACY:br+" "+gr,ITEM:br,ITEM_RIGHT:br+"--align-right",MENU:ee.internals.ns.selector("menu"),BUTTON:ee.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:ee.internals.ns.selector("translate__btn")},mr=function(t){function e(){t.call(this),this._isRightAligned=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"NavigationItem"},e.prototype.init=function(){this.addAscent(ee.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(ee.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},e.prototype.resize=function(){this.calculate()},e.prototype.calculate=function(){var t=this.element.getDescendantInstances(ee.core.Collapse.instanceClassName,null,!0)[0];if(t&&this.isBreakpoint(ee.core.Breakpoints.LG)&&t.element.node.matches(vr.MENU)){var e=this.element.node.parentElement.getBoundingClientRect().right,r=t.element.node.getBoundingClientRect().width,n=this.element.node.getBoundingClientRect().left;this.isRightAligned=n+r>e}else this.isRightAligned=!1},r.isRightAligned.get=function(){return this._isRightAligned},r.isRightAligned.set=function(t){this._isRightAligned!==t&&(this._isRightAligned=t,t?ee.internals.dom.addClass(this.element.node,vr.ITEM_RIGHT):ee.internals.dom.removeClass(this.element.node,vr.ITEM_RIGHT))},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(vr.BUTTON)||t.hasClass(vr.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),_r={NONE:-1,INSIDE:0,OUTSIDE:1},wr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={index:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Navigation"},e.prototype.init=function(){t.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(ee.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.element.node.matches(ee.internals.legacy.isLegacy?vr.COLLAPSE_LEGACY:vr.COLLAPSE)},e.prototype.handleMouseDown=function(t){this.isBreakpoint(ee.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(t.target)?_r.INSIDE:_r.OUTSIDE,this.requestPosition())},e.prototype.handleClick=function(t){!t.target.matches("a, button")||t.target.matches("[aria-controls]")||t.target.matches(ee.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},e.prototype._handleRootClick=function(t){this.isBreakpoint(ee.core.Breakpoints.LG)&&(this.node.contains(t)||(this.out=!0,this.requestPosition()))},e.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},e.prototype.getPosition=function(){if(this.out)switch(this.position){case _r.OUTSIDE:this.index=-1;break;case _r.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},e.prototype.requested=function(){this.position=_r.NONE,this.out=!1,this.isRequesting=!1},r.index.get=function(){return t.prototype.index},r.index.set=function(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},r.canUngroup.get=function(){return!this.isBreakpoint(ee.core.Breakpoints.LG)},e.prototype.resize=function(){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.CollapsesGroup);ee.navigation={Navigation:wr,NavigationItem:mr,NavigationMousePosition:_r,NavigationSelector:vr},ee.internals.register(ee.navigation.NavigationSelector.NAVIGATION,ee.navigation.Navigation),ee.internals.register(ee.navigation.NavigationSelector.ITEM,ee.navigation.NavigationItem);var Sr=function(t){function e(){t.call(this,ee.core.DisclosureType.SELECT)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabButton"},e.prototype.handleClick=function(e){t.prototype.handleClick.call(this,e),this.focus()},e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))},r.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.DisclosureButton),Er={TAB:ee.internals.ns.selector("tabs__tab"),GROUP:ee.internals.ns.selector("tabs"),PANEL:ee.internals.ns.selector("tabs__panel"),LIST:ee.internals.ns.selector("tabs__list"),SHADOW:ee.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:ee.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:ee.internals.ns.selector("tabs__shadow--right"),PANEL_START:ee.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:ee.internals.ns.selector("tabs__panel--direction-end")},Or="direction-start",jr="direction-end",Tr="none",Pr=function(t){function e(){t.call(this,ee.core.DisclosureType.SELECT,Er.PANEL,Sr,"TabsGroup"),this._direction=Tr,this._isPreventingTransition=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabPanel"},r.direction.get=function(){return this._direction},r.direction.set=function(t){if(t!==this._direction){switch(this._direction){case Or:this.removeClass(Er.PANEL_START);break;case jr:this.removeClass(Er.PANEL_END);break;case Tr:break;default:return}switch(this._direction=t,this._direction){case Or:this.addClass(Er.PANEL_START);break;case jr:this.addClass(Er.PANEL_END)}}},r.isPreventingTransition.get=function(){return this._isPreventingTransition},r.isPreventingTransition.set=function(t){this._isPreventingTransition!==t&&(t?this.addClass(ee.internals.motion.TransitionSelector.NONE):this.removeClass(ee.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)},e.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},e.prototype.reset=function(){this.group&&this.group.retrieve(!0)},e.prototype._electPrimaries=function(e){var r=this;return this.group&&this.group.list?t.prototype._electPrimaries.call(this,e).filter((function(t){return r.group.list.node.contains(t.node)})):[]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Disclosure),Ar="tab_keys_left",Nr="tab_keys_right",Cr="tab_keys_home",Ir="tab_keys_end",Lr={PRESS_KEY:ee.internals.ns.emission("tab","press_key"),LIST_HEIGHT:ee.internals.ns.emission("tab","list_height")},Mr=function(t){function e(){t.call(this,"TabPanel")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabsGroup"},e.prototype.init=function(){t.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(Lr.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(Lr.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},e.prototype.getIndex=function(e){void 0===e&&(e=0),t.prototype.getIndex.call(this,e)},r.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},e.prototype.setListHeight=function(t){this.listHeight=t},e.prototype.transitionend=function(t){this.isPreventingTransition=!0},r.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},e.prototype.pressKey=function(t){switch(t){case Ar:this.pressLeft();break;case Nr:this.pressRight();break;case Cr:this.pressHome();break;case Ir:this.pressEnd()}},e.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},e.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},e.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},e.prototype.focus=function(){this.current&&this.current.focus()},e.prototype.apply=function(){for(var t=0;tr.right&&this.node.scrollTo(n-r.right+e.right+16,0)},r.isScrolling.get=function(){return this._isScrolling},r.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},e.prototype.apply=function(){this._isScrolling?(this.addClass(Er.SHADOW),this.scroll()):(this.removeClass(Er.SHADOW_RIGHT),this.removeClass(Er.SHADOW_LEFT),this.removeClass(Er.SHADOW))},e.prototype.scroll=function(){var t=this.node.scrollLeft,e=t<=16,r=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=r,i="rtl"===document.documentElement.getAttribute("dir"),o=i?Er.SHADOW_RIGHT:Er.SHADOW_LEFT,s=i?Er.SHADOW_LEFT:Er.SHADOW_RIGHT;e?this.removeClass(o):this.addClass(o),n?this.removeClass(s):this.addClass(s)},e.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(Lr.LIST_HEIGHT,t)},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.tab={TabPanel:Pr,TabButton:Sr,TabsGroup:Mr,TabsList:Dr,TabSelector:Er,TabEmission:Lr},ee.internals.register(ee.tab.TabSelector.PANEL,ee.tab.TabPanel),ee.internals.register(ee.tab.TabSelector.GROUP,ee.tab.TabsGroup),ee.internals.register(ee.tab.TabSelector.LIST,ee.tab.TabsList);var xr={DISMISS:ee.internals.ns.event("dismiss")},Rr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TagDismissible"},e.prototype.init=function(){this.listenClick()},e.prototype.handleClick=function(){switch(this.focusClosest(),ee.mode){case ee.Modes.ANGULAR:case ee.Modes.REACT:case ee.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(xr.DISMISS)},e.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+ee.mode+" mode, the api doesn't handle dom modification. An event "+xr.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(e,r),e}(ee.core.Instance),kr={PRESSABLE:ee.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+ee.internals.ns.selector("tag--dismiss")};ee.tag={TagDismissible:Rr,TagSelector:kr,TagEvent:xr},ee.internals.register(ee.tag.TagSelector.PRESSABLE,ee.core.Toggle),ee.internals.register(ee.tag.TagSelector.DISMISSIBLE,ee.tag.TagDismissible);var Hr=ee.internals.ns.selector("transcription"),Gr={TRANSCRIPTION:Hr,BUTTON:Hr+"__btn"},$r=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Transcription"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Gr.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.transcription={Transcription:$r,TranscriptionSelector:Gr},ee.internals.register(ee.transcription.TranscriptionSelector.TRANSCRIPTION,ee.transcription.Transcription);var Fr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TileDownload"},e.prototype.init=function(){var t=this;this.addAscent(ee.core.AssessEmission.UPDATE,(function(e){t.descend(ee.core.AssessEmission.UPDATE,e)})),this.addAscent(ee.core.AssessEmission.ADDED,(function(){t.descend(ee.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ee.core.Instance),Ur={DOWNLOAD:ee.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:ee.internals.ns.selector("tile--download")+" "+ee.internals.ns.selector("tile__detail")};ee.tile={TileSelector:Ur,TileDownload:Fr},ee.internals.register(ee.tile.TileSelector.DOWNLOAD,ee.tile.TileDownload),ee.internals.register(ee.tile.TileSelector.DOWNLOAD_DETAIL,ee.core.AssessDetail);var zr={RANGE:ee.internals.ns.selector("range"),RANGE_SM:ee.internals.ns.selector("range--sm"),RANGE_STEP:ee.internals.ns.selector("range--step"),RANGE_DOUBLE:ee.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:ee.internals.ns.selector("range--double")+ee.internals.ns.selector("range--step"),RANGE_INPUT:ee.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:ee.internals.ns.selector("range--double")+" input[type=range]:nth-of-type(2)",RANGE_OUTPUT:ee.internals.ns.selector("range__output"),RANGE_MIN:ee.internals.ns.selector("range__min"),RANGE_MAX:ee.internals.ns.selector("range__max"),RANGE_PREFIX:ee.internals.ns.attr("prefix"),RANGE_SUFFIX:ee.internals.ns.attr("suffix")},Br={VALUE:ee.internals.ns.emission("range","value"),VALUE2:ee.internals.ns.emission("range","value2"),OUTPUT:ee.internals.ns.emission("range","output"),CONSTRAINTS:ee.internals.ns.emission("range","constraints"),MIN:ee.internals.ns.emission("range","min"),MAX:ee.internals.ns.emission("range","max"),STEP:ee.internals.ns.emission("range","step"),PREFIX:ee.internals.ns.emission("range","prefix"),SUFFIX:ee.internals.ns.emission("range","suffix"),DISABLED:ee.internals.ns.emission("range","disabled"),ENABLE_POINTER:ee.internals.ns.emission("range","enable_pointer")},Wr=function(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}},qr={width:{configurable:!0},isSm:{configurable:!0},textValue:{configurable:!0},value:{configurable:!0},outputX:{configurable:!0},min:{configurable:!0},textMin:{configurable:!0},max:{configurable:!0},textMax:{configurable:!0},step:{configurable:!0},output:{configurable:!0},progress:{configurable:!0}};Wr.prototype.configure=function(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())},Wr.prototype.setPrefix=function(t){this._prefix=null!==t?t:""},Wr.prototype.setSuffix=function(t){this._suffix=null!==t?t:""},Wr.prototype._decorate=function(t){return""+this._prefix+t+this._suffix},qr.width.get=function(){return this._width},qr.width.set=function(t){this._width=t},qr.isSm.get=function(){return this._isSm},qr.isSm.set=function(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())},Wr.prototype.setThumbSize=function(t,e){void 0===e&&(e=1),this._thumbSize=t,this._innerPadding=t*e},qr.textValue.get=function(){return this._decorate(this._value)},qr.value.get=function(){return this._value},qr.value.set=function(t){this._value=t},qr.outputX.get=function(){return this._outputX},Wr.prototype.setConstraints=function(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth},qr.min.get=function(){return this._min},qr.textMin.get=function(){return this._decorate(this._min)},qr.max.get=function(){return this._max},qr.textMax.get=function(){return this._decorate(this._max)},qr.step.get=function(){return this._step},qr.output.get=function(){return{text:this.textValue,transform:"translateX("+this._translateX+"px) translateX(-"+this._centerPercent+"%)"}},Wr.prototype._getRatio=function(t){return(t-this._min)/this._rangeWidth},qr.progress.get=function(){return this._progress},Wr.prototype.update=function(){this._update()},Wr.prototype._update=function(){this._innerWidth=this._width-this._innerPadding;var t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:(this._innerWidth*t+.5*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(Wr.prototype,qr);var Vr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2},Object.defineProperties(e.prototype,r),e}(Wr),Kr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={value2:{configurable:!0},textValue:{configurable:!0}};return r.value2.get=function(){return this._value},r.value2.set=function(t){this._value2!==t&&(this._value2=t,this.update())},r.textValue.get=function(){return this._decorate(this._value)+" - "+this._decorate(this._value2)},e.prototype.setThumbSize=function(e){t.prototype.setThumbSize.call(this,e,2)},e.prototype._update=function(){t.prototype._update.call(this);var e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;var r=this._getRatio(this._value),n=this._getRatio(this._value2);this._progress={left:(this._innerWidth*r+.25*this._innerPadding).toFixed(2)+"px",right:(this._innerWidth*n+.75*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(e.prototype,r),e}(Wr),Yr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))},Object.defineProperties(e.prototype,r),e}(Kr),Xr="step",Qr="double",Jr="double-step",Zr="default",tn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={type:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Range"},e.prototype.init=function(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Br.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Br.VALUE,this.setValue.bind(this)),this.addAscent(Br.VALUE2,this.setValue2.bind(this)),this.getAttribute(zr.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(zr.RANGE_PREFIX)),this.getAttribute(zr.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(zr.RANGE_SUFFIX)),this.update()},e.prototype._retrieveType=function(){switch(!0){case this.matches(zr.RANGE_DOUBLE_STEP):case this.matches(zr.RANGE_DOUBLE):this.type=Qr;break;case this.matches(zr.RANGE_STEP):this.type=Xr;break;default:this.type=Zr}},r.type.set=function(t){if(this._type!==t){this._type=t;var e=this._model;switch(this._type){case Jr:this._model=new Yr;break;case Qr:this._model=new Kr;break;case Xr:this._model=new Vr;break;default:this._model=new Wr}this._model.configure(e)}},r.type.get=function(){return this._type},e.prototype._retrieveSize=function(){this._model.isSm=this.matches(zr.RANGE_SM)},e.prototype.resize=function(){this._retrieveWidth(),this.update()},e.prototype._retrieveWidth=function(){this._model.width=this.getRect().width},e.prototype.setValue=function(t){switch(this._model.value=t,this._type){case Jr:case Qr:this.descend(Br.VALUE,t)}this.update()},e.prototype.setValue2=function(t){this._model.value2=t,this.descend(Br.VALUE2,t),this.update()},e.prototype.setConstraints=function(t){this._model.setConstraints(t),this.update(),this.descend(Br.CONSTRAINTS,t)},e.prototype.setPrefix=function(t){this._model.setPrefix(t),this.update()},e.prototype.setSuffix=function(t){this._model.setSuffix(t),this.update()},e.prototype.mutate=function(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(zr.RANGE_PREFIX):case t.includes(zr.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(zr.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(zr.RANGE_SUFFIX)),this.update()}},e.prototype.update=function(){this._model.update(),this.descend(Br.OUTPUT,this._model.output),this.descend(Br.MIN,this._model.textMin),this.descend(Br.MAX,this._model.textMax);var t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",parseFloat(t.right)-parseFloat(t.left)+"px "+(this._model.isSm?"8px":"12px")))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")},e.prototype.mouseMove=function(t){if(this._type===Qr||this._type===Jr){var e=t.x-this.getRect().left;this.descend(Br.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left)t&&(this.node.value=t,this.dispatch("change",void 0,!0),this.change())},e.prototype.change=function(){this.ascend(Br.VALUE,parseFloat(this.node.value))},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(Br.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(Br.CONSTRAINTS,new en(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e,r),e}(ee.core.Instance),on=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(Br.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Br.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)=e,n="rtl"===document.documentElement.getAttribute("dir"),i=n?bn.SHADOW_RIGHT:bn.SHADOW_LEFT,o=n?bn.SHADOW_LEFT:bn.SHADOW_RIGHT;t?this.removeClass(i):this.addClass(i),r?this.removeClass(o):this.addClass(o)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),vn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TableCaption"},e.prototype.init=function(){this.height=0,this.isResizing=!0},e.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend(fn.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(e,r),e}(ee.core.Instance),mn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isSelected:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TableRow"},e.prototype.init=function(){ee.checkbox&&(this.addAscent(Te.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(Te.RETRIEVE))},e.prototype._handleCheckboxChange=function(t){"row-select"===t.name&&(this.isSelected=!0===t.checked)},e.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},r.isSelected.get=function(){return this._isSelected},r.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.table={Table:dn,TableWrapper:yn,TableElement:gn,TableCaption:vn,TableSelector:bn,TableRow:mn},ee.internals.register(ee.table.TableSelector.TABLE,ee.table.Table),ee.internals.register(ee.table.TableSelector.TABLE_WRAPPER,ee.table.TableWrapper),ee.internals.register(ee.table.TableSelector.ELEMENT,ee.table.TableElement),ee.internals.register(ee.table.TableSelector.CAPTION,ee.table.TableCaption),ee.internals.register(ee.table.TableSelector.ROW,ee.table.TableRow),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===i(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e){return t[e]}function i(t){return"function"==typeof t}function o(t){if(null===t||t===e)throw TypeError();return Object(t)}function s(t,r){var n=function(t,e){return o(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function a(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function c(t,e){return a(t)===a(e)&&("number"===a(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function l(t){if("symbol"===a(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function u(o){var c=arguments.length>1?arguments[1]:e;if("object"===a(o)){if(arguments.length<2)var l="default";else c===String?l="string":c===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?s(o,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,o,[l]);if("object"!==a(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var o=["toString","valueOf"];else o=["valueOf","toString"];for(var s=0;s=0)var s=i;else(s=r+i)<0&&(s=0);for(;s=c)for(;c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u())},i.remove=function(){p.apply(i,e=arguments);for(var e,r={},c=0,l=[];c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u()},i.toggle=function(t,r){return p.apply(i,[t]),e!==r?r?(i.add(t),!0):(i.remove(t),!1):s[t]?(i.remove(t),!1):(i.add(t),!0)},i.forEach=Array.prototype.forEach,i}}();"DOMTokenList"in(r=t)&&r.DOMTokenList&&(!document.createElementNS||!document.createElementNS("http://www.w3.org/2000/svg","svg")||document.createElementNS("http://www.w3.org/2000/svg","svg").classList instanceof DOMTokenList)||(r.DOMTokenList=n),function(){var t=document.createElement("span");"classList"in t&&(t.classList.toggle("x",!1),t.classList.contains("x")&&(t.classList.constructor.prototype.toggle=function(t){var r=arguments[1];if(r===e){var n=!this.contains(t);return this[n?"add":"remove"](t),n}return r=!!r,this[r?"add":"remove"](t),r}))}(),function(){var t=document.createElement("span");if("classList"in t&&(t.classList.add("a","b"),!t.classList.contains("b"))){var e=t.classList.constructor.prototype.add;t.classList.constructor.prototype.add=function(){for(var t=arguments,r=arguments.length,n=0;n2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;ot&&(n.length=t)}var n=x(t),i=0;return function(t,e){n[i++]=t,n[i++]=e,2===i&&rt.nextTick(r)}}function p(t,e){var r,n,s,a,c=0;if(!t)throw h(K);var u=t[rt[$][F]];if(i(u))n=u.call(t);else{if(!i(t.next)){if(o(t,x)){for(r=t.length;cMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;jMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function o(t,e){return t[e]}function s(t,e){return e in t}function a(t){return"[object Array]"===Object.prototype.toString.call(t)}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,r){var n=function(t,e){return l(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function p(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function h(t,e){var r=arguments[2]||{},n=function(t,e){var r=o(t,"prototype");return"object"!==p(r)&&(r=e),r}(t,e),i=Object.create(n);for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&Object.defineProperty(i,s,{configurable:!0,enumerable:!1,writable:!0,value:r[s]});return i}function f(t){return"object"===p(t)&&"function"==typeof t&&!!t.prototype}function d(i,s){if(0===s&&1/s==-1/0&&(s=0),!1===a(i))return r(s);var c=o(i,"constructor");if("object"===p(c)&&null===(c="Symbol"in t&&"species"in t.Symbol?o(c,t.Symbol.species):e)&&(c=e),c===e)return r(s);if(!f(c))throw new TypeError("C must be a constructor");return function(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!f(t))throw new TypeError("F must be a constructor.");if(!f(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,h(e,Object.prototype),r)}(c,[s])}function y(t){if("symbol"===p(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function b(t){var e=y(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function g(r){var i=arguments.length>1?arguments[1]:e;if("object"===p(r)){if(arguments.length<2)var s="default";else i===String?s="string":i===Number&&(s="number");var a="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?u(r,t.Symbol.toPrimitive):e;if(a!==e){var l=n(a,r,[s]);if("object"!==p(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===s&&(s="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i0&&(_=a(g)),!0===_)f=m(t,g,b(o(g,"length")),f,l-1);else{if(f>=Math.pow(2,53)-1)throw new TypeError("targetIndex is greater than or equal to 2^53-1");i(t,v(f),g),f+=1}}d+=1}return f}var _,w,S,E;_=Array.prototype,w="flat",S=function(){var t=arguments[0],e=l(this),r=b(o(e,"length")),n=1;void 0!==t&&(n=y(t));var i=d(e,0);return m(i,e,r,0,n),i},E={value:S,writable:!0,enumerable:!1,configurable:!0},Object.defineProperty(_,w,E)}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===s(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function i(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function o(t,e){return t[e]}function s(t){return"function"==typeof t}function a(t){if(null===t||t===e)throw TypeError(Object.prototype.toString.call(t)+" is not coercible to Object.");return t}function c(t){return Boolean(t)}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===s(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function f(t,n){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return n;try{var s=r(o,i)}catch(t){var a=t}if(n)return n;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return n}function d(t){var e=function(t){if(arguments.length<2)var e=r(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=r(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==function(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return c(o(t,"done"))}(e)&&e}function y(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return o(t,"value")}function b(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function g(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function v(n){var i=arguments.length>1?arguments[1]:e;if("object"===h(n)){if(arguments.length<2)var a="default";else i===String?a="string":i===Number&&(a="number");var c="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(n,t.Symbol.toPrimitive):e;if(c!==e){var l=r(c,n,[a]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===a&&(a="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var i=0;i=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i1?arguments[1]:e,i=m(a(this));if(function(r){if("object"!==h(r))return!1;var n="Symbol"in t&&"match"in t.Symbol?o(r,t.Symbol.match):e;if(n!==e)return c(n);try{var i=r.lastIndex;return r.lastIndex=0,RegExp.prototype.exec.call(r),!0}catch(t){}finally{r.lastIndex=i}return!1}(r))throw new TypeError("First argument to String.prototype.includes must not be a regular expression");var s=m(r),l=g(n),u=i.length,p=Math.min(Math.max(l,0),u);return-1!==String.prototype.indexOf.call(i,s,p)})),function(){var t=Object.getOwnPropertyDescriptor,e=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(t){return!1}},r={}.toString,n="".split;i(Object,"getOwnPropertyDescriptor",(function(i,o){var s=l(i);s=("string"===h(s)||s instanceof String)&&"[object String]"==r.call(i)?n.call(i,""):Object(i);var a=T(o);if(e)try{return t(s,a)}catch(t){}if(function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}(s,a))return{enumerable:!0,configurable:!0,writable:!0,value:s[a]}}))}(),i(Object,"assign",(function(t,r){var n=l(t);if(1===arguments.length)return n;var i,s,a,c,u=Array.prototype.slice.call(arguments,1);for(i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var n=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=n,i["[[Done]]"]=!1,i}(i);;){var l=d(c);if(!1===l)return n;var b,g,v=y(l);if("object"!==h(v)){var m=new TypeError("nextItem is not an object");throw f(c,m),m}v=("string"===h(v)||v instanceof String)&&"[object String]"==t.call(v)?e.call(v,""):v;try{b=o(v,"0")}catch(t){return f(c,t)}try{g=o(v,"1")}catch(t){return f(c,t)}try{r(a,n,[b,g])}catch(t){return f(c,t)}}}}();Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});var A=function(){var t=function(){return this.length=0,this},r=function(t,e){if(!(this instanceof r))return new r(t,e);Object.defineProperties(this,{__list__:{writable:!0,value:t},__context__:{writable:!0,value:e},__nextIndex__:{writable:!0,value:0}}),e&&(function(t){if("function"!=typeof t)throw new TypeError(t+" is not a function")}(e.on),e.on("_add",this._onAdd.bind(this)),e.on("_delete",this._onDelete.bind(this)),e.on("_clear",this._onClear.bind(this)))};return Object.defineProperties(r.prototype,Object.assign({constructor:{value:r,configurable:!0,enumerable:!1,writable:!0},_next:{value:function(){var t;if(this.__list__)return this.__redo__&&(t=this.__redo__.shift())!==e?t:this.__nextIndex__=this.__nextIndex__)){if(++this.__nextIndex__,!this.__redo__)return void Object.defineProperty(this,"__redo__",{value:[t],configurable:!0,enumerable:!1,writable:!1});this.__redo__.forEach((function(e,r){e>=t&&(this.__redo__[r]=++e)}),this),this.__redo__.push(t)}},configurable:!0,enumerable:!1,writable:!0},_onDelete:{value:function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach((function(e,r){e>t&&(this.__redo__[r]=--e)}),this)))},configurable:!0,enumerable:!1,writable:!0},_onClear:{value:function(){this.__redo__&&t.call(this.__redo__),this.__nextIndex__=0},configurable:!0,enumerable:!1,writable:!0}})),Object.defineProperty(r.prototype,Symbol.iterator,{value:function(){return this},configurable:!0,enumerable:!1,writable:!0}),Object.defineProperty(r.prototype,Symbol.toStringTag,{value:"Iterator",configurable:!1,enumerable:!1,writable:!0}),r}(),N=function(){var t=function(e,r){if(!(this instanceof t))return new t(e,r);A.call(this,e),r=r?String.prototype.includes.call(r,"key+value")?"key+value":String.prototype.includes.call(r,"key")?"key":"value":"value",Object.defineProperty(this,"__kind__",{value:r,configurable:!1,enumerable:!1,writable:!1})};return Object.setPrototypeOf&&Object.setPrototypeOf(t,A.prototype),t.prototype=Object.create(A.prototype,{constructor:{value:t,configurable:!0,enumerable:!1,writable:!0},_resolve:{value:function(t){return"value"===this.__kind__?this.__list__[t]:"key+value"===this.__kind__?[t,this.__list__[t]]:t},configurable:!0,enumerable:!1,writable:!0},toString:{value:function(){return"[object Array Iterator]"},configurable:!0,enumerable:!1,writable:!0}}),t}();"Symbol"in t&&"iterator"in Symbol&&"function"==typeof Array.prototype[Symbol.iterator]?i(Array.prototype,"values",Array.prototype[Symbol.iterator]):i(Array.prototype,"values",(function(){var t=l(this);return new N(t,"value")})),i(Array.prototype,Symbol.iterator,Array.prototype.values),i(Object,"fromEntries",(function(t){a(t);return P({},t,(function(t,e){n(this,T(t),e)}))}))}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}var n,i;r(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;oMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;j=t.length)return{done:!0,value:e};var i=t[n++];return{done:!1,value:"key"===r?i.name:"value"===r?i.value:[i.name,i.value]}}}function c(e,r){function n(){var t=a.href.replace(/#$|\?$|\?(?=#)/g,"");a.href!==t&&(a.href=t)}function i(){h._setList(a.search?o(a.search.substring(1)):[]),h._update_steps()}if(!(this instanceof t.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");r&&(e=function(){if(l)return new u(e,r).href;var t;try{var n;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?((t=document.createElement("iframe")).style.display="none",document.documentElement.appendChild(t),n=t.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?n=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?((n=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null)).documentElement.appendChild(n.createElement("head")),n.documentElement.appendChild(n.createElement("body"))):window.ActiveXObject&&((n=new window.ActiveXObject("htmlfile")).write(""),n.close()),!n)throw Error("base not supported");var i=n.createElement("base");i.href=r,n.getElementsByTagName("head")[0].appendChild(i);var o=n.createElement("a");return o.href=e,o.href}finally{t&&t.parentNode.removeChild(t)}}());var a=function(t){if(l)return new u(t);var e=document.createElement("a");return e.href=t,e}(e||""),c=function(){if(!("defineProperties"in Object))return!1;try{var t={};return Object.defineProperties(t,{prop:{get:function(){return!0}}}),t.prop}catch(t){return!1}}(),p=c?this:document.createElement("a"),h=new s(a.search?a.search.substring(1):null);return h._url_object=p,Object.defineProperties(p,{href:{get:function(){return a.href},set:function(t){a.href=t,n(),i()},enumerable:!0,configurable:!0},origin:{get:function(){return"data:"===this.protocol.toLowerCase()?null:"origin"in a?a.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return a.protocol},set:function(t){a.protocol=t},enumerable:!0,configurable:!0},username:{get:function(){return a.username},set:function(t){a.username=t},enumerable:!0,configurable:!0},password:{get:function(){return a.password},set:function(t){a.password=t},enumerable:!0,configurable:!0},host:{get:function(){var t={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[a.protocol];return t?a.host.replace(t,""):a.host},set:function(t){a.host=t},enumerable:!0,configurable:!0},hostname:{get:function(){return a.hostname},set:function(t){a.hostname=t},enumerable:!0,configurable:!0},port:{get:function(){return a.port},set:function(t){a.port=t},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==a.pathname.charAt(0)?"/"+a.pathname:a.pathname},set:function(t){a.pathname=t},enumerable:!0,configurable:!0},search:{get:function(){return a.search},set:function(t){a.search!==t&&(a.search=t,n(),i())},enumerable:!0,configurable:!0},searchParams:{get:function(){return h},enumerable:!0,configurable:!0},hash:{get:function(){return a.hash},set:function(t){a.hash=t,n()},enumerable:!0,configurable:!0},toString:{value:function(){return a.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return a.valueOf()},enumerable:!1,configurable:!0}}),p}var l,u=t.URL;try{if(u){if("searchParams"in(l=new t.URL("http://example.com"))){var p=new c("http://example.com");if(p.search="a=1&b=2","http://example.com/?a=1&b=2"===p.href&&(p.search="","http://example.com/"===p.href))return}"href"in l||(l=e),l=e}}catch(t){}if(Object.defineProperties(s.prototype,{append:{value:function(t,e){this._list.push({name:t,value:e}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},delete:{value:function(t){for(var e=0;e1?arguments[1]:e;this._list.forEach((function(e){t.call(r,e.value,e.name)}))},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return n(this._list)},writable:!0,enumerable:!1,configurable:!0},sort:{value:function(){for(var t=this.entries(),e=t.next(),r=[],n={};!e.done;){var i=e.value,o=i[0];r.push(o),Object.prototype.hasOwnProperty.call(n,o)||(n[o]=[]),n[o].push(i[1]),e=t.next()}r.sort();for(var s=0;s0){for(var i="",o=0;o-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)},S.prototype.remove=function(t){var e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()},S.prototype.execute=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];for(var r=0,n=this._collection;r-1},P.prototype.introduce=function(){this.isIntroduced||(this.isIntroduced=!0,r.getModule("stage").parse(document.documentElement,this))},P.prototype.parse=function(t,e){var r=[];return t.matches&&t.matches(this.selector)&&r.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&r.push.apply(r,j(t,this.selector)),r},P.prototype.create=function(t){if(t.node.matches(this.selector)){var e=new this.InstanceClass;return this.instances.add(e),e}},P.prototype.remove=function(t){this.instances.remove(t)},P.prototype.dispose=function(){for(var t=this.instances.collection,e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null},A.instanceClassName.get=function(){return this._instanceClassName},A.instanceClassNames.get=function(){return this._instanceClassNames},A.property.get=function(){return this._property},A.attribute.get=function(){return this._attribute},Object.defineProperties(P.prototype,A);var N=function(t){function e(){t.call(this,"register")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,n){var i=new P(t,e,n);return this.add(i),r.isActive&&i.introduce(),i},e.prototype.activate=function(){for(var t=0,e=this.collection;t");return this.node.outerHTML.substring(0,t+1)},I.prototype.project=function(t){-1===this._projects.indexOf(t)&&this._projects.push(t)},I.prototype.populate=function(){var t=this._projects.slice();this._projects.length=0;for(var e=0,r=t;e-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]},L.parent.get=function(){return this._parent},L.ascendants.get=function(){return[this.parent].concat(this.parent.ascendants)},L.children.get=function(){return this._children},L.descendants.get=function(){var t=[].concat(this._children);return this._children.forEach((function(e){return t.push.apply(t,e.descendants)})),t},I.prototype.addChild=function(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){var e=this.instances[t];e&&e._dispose()}this.instances.length=0,r.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug("remove element ["+this.id+"] "+this.html)},I.prototype.prepare=function(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)},I.prototype.examine=function(){var t=this.attributeNames.slice();this.attributeNames.length=0;for(var e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)},Object.defineProperties(I.prototype,L);var M={CLICK:g.emission("root","click"),KEYDOWN:g.emission("root","keydown"),KEYUP:g.emission("root","keyup")},D={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},x=function(t){return Object.values(D).filter((function(e){return e.value===t}))[0]},R=function(t){function e(){t.call(this,document.documentElement,"root"),this.node.setAttribute(g.attr("js"),!0),this.listen()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})},e.prototype.click=function(t){this.emit(M.CLICK,t.target)},e.prototype.keydown=function(t){this.emit(M.KEYDOWN,x(t.keyCode))},e.prototype.keyup=function(t){this.emit(M.KEYUP,x(t.keyCode))},e}(I),k=function(t){function e(){t.call(this,"stage"),this.root=new R,t.prototype.add.call(this,this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasElement=function(t){for(var e=0,r=this.collection;e-1;n--){var i=e.children[n],o=t.node.compareDocumentPosition(i.node);if(o&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,i);if(o&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(i),t.addChild(i,0);else if(o&Node.DOCUMENT_POSITION_PRECEDING){r=n+1;break}}e.addChild(t,r)},e.prototype.activate=function(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})},e.prototype.deactivate=function(){this.observer.disconnect()},e.prototype.mutate=function(t){var e=this,r=[];t.forEach((function(t){switch(t.type){case"childList":t.removedNodes.forEach((function(t){return e.dispose(t)})),t.addedNodes.forEach((function(t){return e.parse(t)}));break;case"attributes":if(e.hasElement(t.target)){var n=e.getElement(t.target);n.prepare(t.attributeName),-1===r.indexOf(n)&&r.push(n);for(var i=0,o=n.descendants;i0&&document.documentElement.style.setProperty("--scrollbar-width",t+"px"),b(v.SCROLL_LOCK)}},e.prototype.unlock=function(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(g.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"),b(v.SCROLL_UNLOCK))},e.prototype.move=function(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)},Object.defineProperties(e.prototype,r),e}(O),F=function(t){function e(){t.call(this,"load"),this.loading=this.load.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){window.addEventListener("load",this.loading)},e.prototype.load=function(){this.forEach((function(t){return t.load()}))},e}(O),U=["Marianne","Spectral"],z=function(t){function e(){t.call(this,"font-swap"),this.swapping=this.swap.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)},e.prototype.swap=function(){var t=U.filter((function(t){return document.fonts.check("16px "+t)}));this.forEach((function(e){return e.swapFont(t)}))},e}(O),B=function(t){function e(){t.call(this,"mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))},e.prototype.unlisten=function(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))},e.prototype.request=function(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))},e.prototype.move=function(){var t=this;this.requireMove&&(this.forEach((function(e){return e.mouseMove(t.point)})),this.requireMove=!1)},e}(O),W=function(t){function e(){t.call(this,"hash"),this.handling=this.handle.bind(this),this.getLocationHash()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={hash:{configurable:!0}};return e.prototype.activate=function(){window.addEventListener("hashchange",this.handling)},e.prototype.deactivate=function(){window.removeEventListener("hashchange",this.handling)},e.prototype._sanitize=function(t){return"#"===t.charAt(0)?t.substring(1):t},r.hash.set=function(t){var e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)},r.hash.get=function(){return this._hash},e.prototype.getLocationHash=function(){var t=window.location.hash;this._hash=this._sanitize(t)},e.prototype.handle=function(t){var e=this;this.getLocationHash(),this.forEach((function(r){return r.handleHash(e._hash,t)}))},Object.defineProperties(e.prototype,r),e}(O),q=function(){r.create(N),r.create(k),r.create(H),r.create(G),r.create($),r.create(F),r.create(z),r.create(B),r.create(W);var t=r.getModule("register");this.register=t.register.bind(t)},K={isActive:{configurable:!0}};K.isActive.get=function(){return r.isActive},q.prototype.start=function(){h.debug("START"),r.isActive=!0,b(v.START)},q.prototype.stop=function(){h.debug("STOP"),r.isActive=!1,b(v.STOP)},Object.defineProperties(q.prototype,K);var V=new q,Y=function(){};Y.prototype.getColor=function(t,e,r,n){void 0===n&&(n={});var i="--"+t+"-"+e+"-"+r+X(n);return getComputedStyle(document.documentElement).getPropertyValue(i).trim()||null};var X=function(t){switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},Q=new Y,Z=function(t){return"."===t.charAt(0)?t.substr(1):t},J=function(t){switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},tt=function(t,e,r){e=Z(e);var n=J(t),i=n.indexOf(e);!0===r?i>-1&&n.splice(i,1):-1===i&&n.push(e),t.className=n.join(" ")},et=function(t,e){return tt(t,e)},rt=function(t,e){return tt(t,e,!0)},nt=function(t,e){return J(t).indexOf(Z(e))>-1},it=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),ot=function(t){return t.querySelectorAll(it)},st=0,at=function(t){if(!document.getElementById(t))return t;for(var e=!0,r=t;e;)t=r+"-"+ ++st,e=document.getElementById(t);return t},ct={addClass:et,hasClass:nt,removeClass:rt,queryParentSelector:T,querySelectorAllArray:j,queryActions:ot,uniqueId:at,dispatch:y},lt=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._width=t,this._height=e,this._content=""},ut={width:{configurable:!0},height:{configurable:!0},content:{configurable:!0}};ut.width.get=function(){return this._width},ut.width.set=function(t){this._width=t},ut.height.get=function(){return this._height},ut.height.set=function(t){this._height=t},ut.content.get=function(){return this._content},ut.content.set=function(t){this._content=t},lt.prototype.getDataURI=function(t){void 0===t&&(t=!1);var e=""+this._content+"";return e=e.replace(/#/gi,"%23"),t&&(e=(e=(e=(e=(e=e.replace(//gi,"%3E")).replace(/"/gi,"'")).replace(/{/gi,"%7B")).replace(/}/gi,"%7D")),"data:image/svg+xml;charset=utf8,"+e},Object.defineProperties(lt.prototype,ut);var pt={DataURISVG:lt},ht={supportLocalStorage:function(){try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:function(){return!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")}},ft={TransitionSelector:{NONE:g.selector("transition-none")}},dt=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return e.forEach((function(e){var r=Object.keys(e).reduce((function(t,r){return t[r]=Object.getOwnPropertyDescriptor(e,r),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);n.enumerable&&(r[t]=n)})),Object.defineProperties(t,r)})),t},yt={completeAssign:dt},bt={},gt={};Object.defineProperty(gt,"isLegacy",{get:function(){return r.isLegacy}}),gt.setLegacy=function(){r.isLegacy=!0},bt.legacy=gt,bt.dom=ct,bt.image=pt,bt.support=ht,bt.motion=ft,bt.property=yt,bt.ns=g,bt.register=V.register,bt.state=r,bt.query=function(t){if(t&&t.search){var e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null}(window.location),Object.defineProperty(bt,"preventManipulation",{get:function(){return w.preventManipulation}}),Object.defineProperty(bt,"stage",{get:function(){return r.getModule("stage")}});var vt=function(t){return r.getModule("stage").getProxy(t)};vt.version=s,vt.prefix=n,vt.organisation=o,vt.Modes=d,Object.defineProperty(vt,"mode",{set:function(t){w.mode=t},get:function(){return w.mode}}),vt.internals=bt,vt.version=s,vt.start=V.start,vt.stop=V.stop,vt.inspector=h,vt.colors=Q;var mt=window[i];vt.internals.configuration=mt,w.configure(mt,vt.start,vt.internals.query),window[i]=vt;var _t=function(){this.emissions={}};_t.prototype.add=function(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)},_t.prototype.remove=function(t,e){if(this.emissions[t])if(e){var r=this.emissions[t].indexOf(e);r>-1&&this.emissions[t].splice(r)}else delete this.emissions[t]},_t.prototype.emit=function(t,e){if(!this.emissions[t])return[];for(var r=[],n=0,i=this.emissions[t];nwindow.innerHeight&&e.move(t.bottom-window.innerHeight+50)},Ot.prototype.matches=function(t){return this.node.matches(t)},Ot.prototype.querySelector=function(t){return this.node.querySelector(t)},Ot.prototype.querySelectorAll=function(t){return j(this.node,t)},Ot.prototype.queryParentSelector=function(t){return T(this.node,t)},Ot.prototype.getRect=function(){var t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t},jt.isLegacy.get=function(){return r.isLegacy},Object.defineProperties(Ot.prototype,jt),Object.defineProperties(Ot,Tt);var Pt=function(t,e,r,n,i){this.type=t,this.eventType="key"+t,this.keyCode=e,this.closure=r,this.preventDefault=!0===n,this.stopPropagation=!0===i};Pt.prototype.handle=function(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())};var At=function(t,e,r,n){this._node=t,this._type=e,this._closure=r,this._options=n},Nt={closure:{configurable:!0}};Nt.closure.get=function(){return this._closure},At.prototype.listen=function(){this._node.addEventListener(this._type,this._closure,this._options)},At.prototype.matchOptions=function(t){var e=this;switch(void 0===t&&(t=null),!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((function(r){return e._options[r]===t[r]})):return!0}return!1},At.prototype.unlisten=function(){this._node.removeEventListener(this._type,this._closure,this._options)},Object.defineProperties(At.prototype,Nt);var Ct=function(t,e){this.hash=t,this.add=e};Ct.prototype.handle=function(t,e){this.hash===t&&this.add(e)};var It={DISCLOSE:g.event("disclose"),CONCEAL:g.event("conceal"),CURRENT:g.event("current")},Lt={RESET:g.emission("disclosure","reset"),ADDED:g.emission("disclosure","added"),RETRIEVE:g.emission("disclosure","retrieve"),REMOVED:g.emission("disclosure","removed"),GROUP:g.emission("disclosure","group"),UNGROUP:g.emission("disclosure","ungroup"),SPOTLIGHT:g.emission("disclosure","spotlight")},Mt=function(t){function e(e,r,n,i){t.call(this),this.type=e,this._selector=r,this.DisclosureButtonInstanceClass=n,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isEnabled:{configurable:!0},isPristine:{configurable:!0},proxy:{configurable:!0},buttons:{configurable:!0},group:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0},primaryButtons:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Disclosure"},e.prototype.init=function(){this.addDescent(Lt.RESET,this.reset.bind(this)),this.addDescent(Lt.GROUP,this.update.bind(this)),this.addDescent(Lt.UNGROUP,this.update.bind(this)),this.addAscent(Lt.SPOTLIGHT,this.disclose.bind(this)),this.register('[aria-controls="'+this.id+'"]',this.DisclosureButtonInstanceClass),this.ascend(Lt.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()},r.isEnabled.get=function(){return t.prototype.isEnabled},r.isEnabled.set=function(e){this.isEnabled!==e&&(t.prototype.isEnabled=e,e?this.ascend(Lt.ADDED):this.ascend(Lt.REMOVED))},r.isPristine.get=function(){return this._isPristine},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});return this.type.canConceal&&(r.conceal=e.conceal.bind(e)),dt(r,{get buttons(){return e.buttons.map((function(t){return t.proxy}))},get group(){var t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})},r.buttons.get=function(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)},e.prototype.update=function(){this.getGroup(),this.retrievePrimaries()},e.prototype.getGroup=function(){if(this.disclosuresGroupInstanceClassName){var t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}else this._group=null},r.group.get=function(){return this._group},e.prototype.disclose=function(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)},e.prototype.conceal=function(t,e){return void 0===e&&(e=!0),!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(Lt.RESET),!0))},r.isDisclosed.get=function(){return this._isDisclosed},r.isDisclosed.set=function(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?It.DISCLOSE:It.CONCEAL,this),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(var e=0;e0)},e.prototype.focus=function(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()},r.primaryButtons.get=function(){return this._primaryButtons},e.prototype.retrievePrimaries=function(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))},e.prototype._retrievePrimaries=function(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}},e.prototype.retrieved=function(){},e.prototype._spotlight=function(){var t=this;this.disclose(),this.request((function(){t.ascend(Lt.SPOTLIGHT)}))},e.prototype._electPrimaries=function(t){var e=this;return t.filter((function(t){return t.canDisclose&&!e.node.contains(t.node)}))},e.prototype.applyAbility=function(t){void 0===t&&(t=!1);var e=!this._primaryButtons.every((function(t){return t.isDisabled}));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(Lt.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(Lt.ADDED),this.hash===this.id&&this._spotlight())))},e.prototype.dispose=function(){this._group=null,this._primaryButtons=null,t.prototype.dispose.call(this),this.ascend(Lt.REMOVED)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),Dt=function(t){function e(e){t.call(this),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:g.attr(e.id),this._canDisclose=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isPrimary:{configurable:!0},canDisclose:{configurable:!0},isDisabled:{configurable:!0},proxy:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},dx:{configurable:!0},dy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosureButton"},r.isPrimary.get=function(){return this.registration.creator.primaryButtons.includes(this)},r.canDisclose.get=function(){return this._canDisclose},r.isDisabled.get=function(){return this.type.canDisable&&this.hasAttribute("disabled")},e.prototype.init=function(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{focus:this.focus.bind(this)})},e.prototype.handleClick=function(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)},e.prototype.mutate=function(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())},e.prototype.apply=function(t){var e=this;this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((function(){e._isApplying=!1})))},r.isDisclosed.get=function(){return"true"===this.getAttribute(this.attributeName)},r.isInitiallyDisclosed.get=function(){return this._isInitiallyDisclosed},e.prototype.focus=function(){t.prototype.focus.call(this),this.scrollIntoView()},e.prototype.measure=function(t){var e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y},r.dx.get=function(){return this._dx},r.dy.get=function(){return this._dy},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),xt={PREVENT_CONCEAL:g.attr.selector("prevent-conceal"),GROUP:g.attr("group")},Rt=function(t){function e(e,r){t.call(this,r),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},members:{configurable:!0},length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0},isGrouped:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosuresGroup"},e.prototype.init=function(){this.addAscent(Lt.ADDED,this.update.bind(this)),this.addAscent(Lt.RETRIEVE,this.retrieve.bind(this)),this.addAscent(Lt.REMOVED,this.update.bind(this)),this.descend(Lt.GROUP),this._isGrouped="false"!==this.getAttribute(xt.GROUP),this.update()},r.proxy.get=function(){var e=this,r={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){var t=e.current;return t?t.proxy:null},get members(){return e.members.map((function(t){return t.proxy}))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return dt.call(this,t.prototype.proxy,r)},e.prototype.validate=function(t){return!0},e.prototype.getMembers=function(){var t=this,e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((function(t){return t.isEnabled})),e.filter((function(e){return!t._members.includes(e)})).forEach((function(t){return t.conceal()}))},e.prototype.retrieve=function(t){void 0===t&&(t=!1),this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))},e.prototype._retrieve=function(){var t=this;if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.isGrouped){if(this.hash)for(var e=0;e=this.length||t===this._index)){this._index=t;for(var e=0;e-1}));if(1===r.length)return r;if(1===(e=t.prototype._electPrimaries.call(this,e)).length)return e;var n=e.filter((function(t){return t.dy>=0}));if(n.length>0&&(e=n),1===e.length)return e;var i=Math.min.apply(Math,e.map((function(t){return t.dy}))),o=e.filter((function(t){return t.dy===i}));return o.length>0&&(e=o),1===e.length||e.sort((function(t,e){return Math.abs(e.dx)-Math.abs(t.dx)})),e},Object.defineProperties(e,r),e}(Mt),Ft=function(t){function e(){t.call(this,"Collapse")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CollapsesGroup"},r.canUngroup.get=function(){return!0},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Rt),Ut={CHANGE:g("equisized")},zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Equisized"},e.prototype.init=function(){this.ascend(Ut.CHANGE)},e.prototype.measure=function(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width},e.prototype.adjust=function(t){this.isLegacy&&(this.style.width=t+"px")},e.prototype.dispose=function(){this.ascend(Ut.CHANGE)},Object.defineProperties(e,r),e}(Ot),Bt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"EquisizedsGroup"},e.prototype.init=function(){this.isResizing=!0,this.isLoading=!0,this.addAscent(Ut.CHANGE,this.resize.bind(this))},e.prototype.load=function(){this.resize()},e.prototype.resize=function(){var t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");var e=Math.max.apply(Math,t.map((function(t){return t.measure()})));this.isLegacy?t.forEach((function(t){return t.adjust(e)})):this.style.setProperty("--equisized-width",e+"px")},Object.defineProperties(e,r),e}(Ot),Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={pressed:{configurable:!0},proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Toggle"},e.prototype.init=function(){this.pressed="true"===this.pressed,this.listenClick()},e.prototype.handleClick=function(){this.toggle()},e.prototype.toggle=function(){this.pressed="true"!==this.pressed},r.pressed.get=function(){return this.getAttribute("aria-pressed")},r.pressed.set=function(t){this.setAttribute("aria-pressed",t?"true":"false")},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{toggle:e.toggle.bind(e)});return dt(r,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),qt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"InjectSvg"},e.prototype.init=function(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})},e.prototype.fetch=function(){var t=this;this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((function(t){return t.text()})).then((function(e){var r=(new DOMParser).parseFromString(e,"text/html");t.svg=r.querySelector("svg"),t.svg&&t.replace()})))},e.prototype.replace=function(){if(this.svg){this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);var t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-','id="'+t+"-artwork-"),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-','"#'+t+"-artwork-"))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,r;e=this.svg,r={"aria-hidden":!0,focusable:!1},Object.keys(r).forEach((function(t){return e.setAttribute(t,r[t])})),this.node.replaceChild(this.svg,this.img)}else this.fetch()},e.prototype.restore=function(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),Kt={INJECT_SVG:"["+g.attr("inject-svg")+"]"},Vt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Artwork"},e.prototype.init=function(){this.isLegacy&&this.replace()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{replace:this.replace.bind(this)})},e.prototype.fetch=function(){var t=this;this.xlink=this.node.getAttribute("href");var e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];var r=new XMLHttpRequest;r.onload=function(){var e=(new DOMParser).parseFromString(r.responseText,"text/html");t.realSvgContent=e.getElementById(t.svgName),t.realSvgContent&&("symbol"===t.realSvgContent.tagName?(t.use=e.querySelector('use[href="#'+t.svgName+'"]'),t.use&&t.node.parentNode.insertBefore(t.use,t.node)):t.realSvgContent.classList.add(t.node.classList),t.replace())},r.open("GET",this.svgUrl),r.send()},e.prototype.replace=function(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),Yt={ARTWORK_USE:g.selector("artwork")+" use"},Xt={ASSESS_FILE:""+g.attr.selector("assess-file"),DETAIL:g.attr.selector("assess-file")+' [class$="__detail"], '+g.attr.selector("assess-file")+' [class*="__detail "]'},Qt={UPDATE:g.emission("assess","update"),ADDED:g.emission("assess","added")},Zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessFile"},e.prototype.init=function(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Qt.ADDED,this.update.bind(this)),this.addDescent(Qt.ADDED,this.update.bind(this))},e.prototype.getFileLength=function(){var t=this;void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((function(e){t.length=e.headers.get("content-length")||-1,-1===t.length&&h.warn("File size unknown: "+t.href+'\nUnable to get HTTP header: "content-length"'),t.gather()})):this.length=-1},e.prototype.mutate=function(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())},e.prototype.gather=function(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){var t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()},e.prototype.update=function(){this.details&&(this.descend(Qt.UPDATE,this.details),this.ascend(Qt.UPDATE,this.details))},e.prototype.getLang=function(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)},e.prototype.parseExtension=function(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")},e.prototype.getLangDisplayName=function(t){if(this.isLegacy)return t;var e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)},e.prototype.bytesToSize=function(t){if(-1===t)return null;var e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(g.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);var r=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===r)return t+" "+e[r];var n=t/Math.pow(1e3,r),i=Math.round(100*(n+Number.EPSILON))/100;return String(i).replace(".",",")+" "+e[r]},Object.defineProperties(e,r),e}(Ot),Jt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessDetail"},e.prototype.init=function(){this.addDescent(Qt.UPDATE,this.update.bind(this)),this.ascend(Qt.ADDED)},e.prototype.update=function(t){this.node.innerHTML=t.join(" - ")},Object.defineProperties(e,r),e}(Ot),te=["32x9","16x9","3x2","4x3","1x1","3x4","2x3"],ee=function(t,e){return e.map((function(e){return g.selector(t+"--"+e)})).join(",")},re=g.selector("responsive-img")+", "+ee("responsive-img",te)+", "+g.selector("responsive-vid")+", "+ee("responsive-vid",["16x9","4x3","1x1"]),ne={RATIO:g.selector("ratio")+", "+ee("ratio",te)+", "+re},ie=window[i],oe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Ratio"},e.prototype.init=function(){if(!ie.internals.support.supportAspectRatio()){for(var t in this.ratio=16/9,this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){var e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}},e.prototype.render=function(){this.getRect().width!==this.currentWidth&&this.update()},e.prototype.update=function(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"},Object.defineProperties(e,r),e}(Ot),se={TOP:g.selector("placement--top"),RIGHT:g.selector("placement--right"),BOTTOM:g.selector("placement--bottom"),LEFT:g.selector("placement--left")},ae={START:g.selector("placement--start"),CENTER:g.selector("placement--center"),END:g.selector("placement--end")},ce={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},le={START:"align_start",CENTER:"align_center",END:"align_end"},ue={AUTO:"placement_auto",MANUAL:"placement_manual"},pe=function(t){function e(e,r,n,i){void 0===e&&(e=ue.AUTO),void 0===r&&(r=[ce.BOTTOM,ce.TOP,ce.LEFT,ce.RIGHT]),void 0===n&&(n=[le.CENTER,le.START,le.END]),void 0===i&&(i=16),t.call(this),this._mode=e,this._places=r,this._aligns=n,this._safeAreaMargin=i,this._isShown=!1,this._x=this._y=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},mode:{configurable:!0},place:{configurable:!0},align:{configurable:!0},isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Placement"},e.prototype.init=function(){this.isResizing=!0},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return dt(r,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})},r.mode.get=function(){return this._mode},r.mode.set=function(t){this._mode=t},r.place.get=function(){return this._place},r.place.set=function(t){if(this._place!==t){switch(this._place){case ce.TOP:this.removeClass(se.TOP);break;case ce.RIGHT:this.removeClass(se.RIGHT);break;case ce.BOTTOM:this.removeClass(se.BOTTOM);break;case ce.LEFT:this.removeClass(se.LEFT)}switch(this._place=t,this._place){case ce.TOP:this.addClass(se.TOP);break;case ce.RIGHT:this.addClass(se.RIGHT);break;case ce.BOTTOM:this.addClass(se.BOTTOM);break;case ce.LEFT:this.addClass(se.LEFT)}}},r.align.get=function(){return this._align},r.align.set=function(t){if(this._align!==t){switch(this._align){case le.START:this.removeClass(ae.START);break;case le.CENTER:this.removeClass(ae.CENTER);break;case le.END:this.removeClass(ae.END)}switch(this._align=t,this._align){case le.START:this.addClass(ae.START);break;case le.CENTER:this.addClass(ae.CENTER);break;case le.END:this.addClass(ae.END)}}},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},r.isShown.get=function(){return this._isShown},r.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)},e.prototype.setReferent=function(t){this._referent=t},e.prototype.render=function(){if(this._referent){if(this.referentRect=this._referent.getRect(),this.rect=this.getRect(),this.safeArea=this.getSafeArea(),this.mode===ue.AUTO)switch(this.place=this.getPlace(),this.place){case ce.TOP:case ce.BOTTOM:this.align=this.getHorizontalAlign();break;case ce.LEFT:case ce.RIGHT:this.align=this.getVerticalAlign()}var t,e;switch(this.place){case ce.TOP:e=this.referentRect.top-this.rect.top-this.rect.height;break;case ce.RIGHT:t=this.referentRect.left-this.rect.left+this.referentRect.width;break;case ce.BOTTOM:e=this.referentRect.top-this.rect.top+this.referentRect.height;break;case ce.LEFT:t=this.referentRect.left-this.rect.left-this.rect.width}switch(this.place){case ce.TOP:case ce.BOTTOM:switch(this.align){case le.CENTER:t=this.referentRect.left-this.rect.left+.5*this.referentRect.width-.5*this.rect.width;break;case le.START:t=this.referentRect.left-this.rect.left;break;case le.END:t=this.referentRect.left-this.rect.left+this.referentRect.width-this.rect.width}break;case ce.RIGHT:case ce.LEFT:switch(this.align){case le.CENTER:e=this.referentRect.top-this.rect.top+.5*this.referentRect.height-.5*this.rect.height;break;case le.START:e=this.referentRect.top-this.rect.top;break;case le.END:e=this.referentRect.top-this.rect.top-this.rect.height}}this._x+=t+.5|0,this._y+=e+.5|0,this.node.style.transform="translate("+this._x+"px,"+this._y+"px)"}},e.prototype.getPlace=function(){for(var t=0,e=this._places;tthis.safeArea.top)return ce.TOP;break;case ce.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return ce.LEFT}}return this._places[0]},e.prototype.getHorizontalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return le.END}}return this._aligns[0]},e.prototype.getVerticalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return le.END}}return this._aligns[0]},e.prototype.getSafeArea=function(){for(var t,e,r=this.node,n=this._safeAreaMargin,i=window.innerWidth-this._safeAreaMargin,o=window.innerHeight-this._safeAreaMargin,s=this._safeAreaMargin;r&&r!==document.body;){r=r.parentElement;var a=window.getComputedStyle(r),c=/(visible|(\w+))(\s(visible|(\w+)))?/.exec(a.overflow);if(t=void 0!==c[2],e=void 0!==c[3]?void 0!==c[5]:void 0!==c[2],t||e){var l=r.getBoundingClientRect();t&&(l.left>s&&(s=l.left),l.rightn&&(n=l.top),l.bottom-1&&(this.scheme=this.getAttribute(de.SCHEME)),t.indexOf(de.THEME)>-1&&(this.theme=this.getAttribute(de.THEME))},e.prototype.dispose=function(){this.unlistenPreferences()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),me={SCHEME:":root"+ie.internals.ns.attr.selector("theme")+", :root"+ie.internals.ns.attr.selector("scheme"),SWITCH_THEME:ie.internals.ns.selector("switch-theme"),RADIO_BUTTONS:'input[name="'+ie.internals.ns("radios-theme")+'"]'};ie.scheme={Scheme:ve,SchemeValue:fe,SchemeSelector:me,SchemeEmission:be,SchemeTheme:ye,SchemeEvent:ge},ie.internals.register(ie.scheme.SchemeSelector.SCHEME,ie.scheme.Scheme);var _e=ie.internals.ns.selector("accordion"),we=ie.internals.ns.selector("collapse"),Se={GROUP:ie.internals.ns.selector("accordions-group"),ACCORDION:_e,COLLAPSE:_e+" > "+we+", "+_e+" > *:not("+_e+"):not("+we+") > "+we+", "+_e+" > *:not("+_e+"):not("+we+") > *:not("+_e+"):not("+we+") > "+we,COLLAPSE_LEGACY:_e+" "+we,BUTTON:_e+"__btn"},Ee=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Accordion"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Se.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Oe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var r=e.node.matches(ie.internals.legacy.isLegacy?Se.COLLAPSE_LEGACY:Se.COLLAPSE);return t.prototype.validate.call(this,e)&&r},Object.defineProperties(e,r),e}(ie.core.CollapsesGroup);ie.accordion={Accordion:Ee,AccordionSelector:Se,AccordionsGroup:Oe},ie.internals.register(ie.accordion.AccordionSelector.GROUP,ie.accordion.AccordionsGroup),ie.internals.register(ie.accordion.AccordionSelector.ACCORDION,ie.accordion.Accordion);var je={EQUISIZED_BUTTON:ie.internals.ns.selector("btns-group--equisized")+" "+ie.internals.ns.selector("btn"),EQUISIZED_GROUP:ie.internals.ns.selector("btns-group--equisized")};ie.button={ButtonSelector:je},ie.internals.register(ie.button.ButtonSelector.EQUISIZED_BUTTON,ie.core.Equisized),ie.internals.register(ie.button.ButtonSelector.EQUISIZED_GROUP,ie.core.EquisizedsGroup);var Te=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"CardDownload"},e.prototype.init=function(){var t=this;this.addAscent(ie.core.AssessEmission.UPDATE,(function(e){t.descend(ie.core.AssessEmission.UPDATE,e)})),this.addAscent(ie.core.AssessEmission.ADDED,(function(){t.descend(ie.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ie.core.Instance),Pe={DOWNLOAD:ie.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:ie.internals.ns.selector("card--download")+" "+ie.internals.ns.selector("card__end")+" "+ie.internals.ns.selector("card__detail")};ie.card={CardSelector:Pe,CardDownload:Te},ie.internals.register(ie.card.CardSelector.DOWNLOAD,ie.card.CardDownload),ie.internals.register(ie.card.CardSelector.DOWNLOAD_DETAIL,ie.core.AssessDetail);var Ae={INPUT:ie.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},Ne={CHANGE:ie.internals.ns.emission("checkbox","change"),RETRIEVE:ie.internals.ns.emission("checkbox","retrieve")},Ce=function(t){function e(){t.call(this),this._handlingChange=this.handleChange.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CheckboxInput"},e.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(Ne.RETRIEVE,this._handlingChange),this.handleChange()},r.isChecked.get=function(){return this.node.checked},e.prototype.handleChange=function(){this.ascend(Ne.CHANGE,this.node)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.checkbox={CheckboxSelector:Ae,CheckboxEmission:Ne,CheckboxInput:Ce},ie.internals.register(ie.checkbox.CheckboxSelector.INPUT,ie.checkbox.CheckboxInput);var Ie={SEGMENTED:ie.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:ie.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:ie.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:ie.internals.ns.selector("segmented__legend")},Le={ADDED:ie.internals.ns.emission("segmented","added"),REMOVED:ie.internals.ns.emission("segmented","removed")},Me=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Segmented"},e.prototype.init=function(){this.elements=this.node.querySelector(Ie.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(Ie.SEGMENTED_LEGEND),this.addAscent(Le.ADDED,this.resize.bind(this)),this.addAscent(Le.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(ie.prefix+"-segmented__legend--inline"),this.isResizing=!0},e.prototype.resize=function(){var t=ie.prefix+"-segmented--vertical",e=ie.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(e),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(e)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(e,r),e}(ie.core.Instance),De=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SegmentedElement"},e.prototype.init=function(){this.ascend(Le.ADDED)},e.prototype.dispose=function(){this.ascend(Le.REMOVED)},Object.defineProperties(e,r),e}(ie.core.Instance);ie.segmented={SegmentedSelector:Ie,SegmentedEmission:Le,SegmentedElement:De,Segmented:Me},ie.internals.register(ie.segmented.SegmentedSelector.SEGMENTED,ie.segmented.Segmented),ie.internals.register(ie.segmented.SegmentedSelector.SEGMENTED_ELEMENT,ie.segmented.SegmentedElement);var xe={BREADCRUMB:ie.internals.ns.selector("breadcrumb"),BUTTON:ie.internals.ns.selector("breadcrumb__button")},Re=function(t){function e(){t.call(this),this.count=0,this.focusing=this.focus.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Breadcrumb"},e.prototype.init=function(){this.getCollapse(),this.isResizing=!0},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})},e.prototype.getCollapse=function(){var t=this.collapse;t?t.listen(ie.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(ie.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},e.prototype.resize=function(){var t=this.collapse,e=this.links;t&&e.length&&(this.isBreakpoint(ie.core.Breakpoints.MD)?t.buttonHasFocus&&e[0].focus():e.indexOf(document.activeElement)>-1&&t.focus())},r.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},r.collapse.get=function(){return this.element.getDescendantInstances(ie.core.Collapse.instanceClassName,null,!0)[0]},e.prototype.focus=function(){this.count=0,this._focus()},e.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},e.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(xe.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.breadcrumb={BreadcrumbSelector:xe,Breadcrumb:Re},ie.internals.register(ie.breadcrumb.BreadcrumbSelector.BREADCRUMB,ie.breadcrumb.Breadcrumb);var ke={TOOLTIP:ie.internals.ns.selector("tooltip"),SHOWN:ie.internals.ns.selector("tooltip--shown"),HIDDING:ie.internals.ns.selector("tooltip--hidding"),BUTTON:ie.internals.ns.selector("btn--tooltip")},He=1,Ge=2,$e=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={state:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(ke.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var r=this.mouseout.bind(this);this.listen("mouseout",r),this.placement.listen("mouseout",r)}this.addEmission(ie.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(ie.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===ie.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},r.state.get=function(){return this._state},r.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=He},e.prototype.focusOut=function(){this.state&=~He},e.prototype.mouseover=function(){this.state|=Ge},e.prototype.mouseout=function(){this.state&=~Ge},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.PlacementReferent),Fe={SHOW:g.event("show"),HIDE:g.event("hide")},Ue="hidden",ze="shown",Be="hiding",We=function(t){function e(){t.call(this,ie.core.PlacementMode.AUTO,[ie.core.PlacementPosition.TOP,ie.core.PlacementPosition.BOTTOM],[ie.core.PlacementAlign.CENTER,ie.core.PlacementAlign.START,ie.core.PlacementAlign.END]),this.modifier="",this._state=Ue}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',$e),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===Be&&(this.removeClass(ke.SHOWN),this.removeClass(ke.HIDDING),this._state=Ue,this.isShown=!1)},r.isShown.get=function(){return t.prototype.isShown},r.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=ze,this.addClass(ke.SHOWN),this.removeClass(ke.HIDDING),this.dispatch(Fe.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===ze:this._state=Be,this.addClass(ke.HIDDING);break;case this.isShown&&!e&&this._state===Ue:this.dispatch(Fe.HIDE),this.removeClass(ke.HIDDING),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this),this.rect=this.getRect();var e=this.referentRect.center-this.rect.center,r=.5*this.rect.width-8;e<-r&&(e=-r),e>r&&(e=r),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Placement);ie.tooltip={Tooltip:We,TooltipSelector:ke,TooltipEvent:Fe},ie.internals.register(ie.tooltip.TooltipSelector.TOOLTIP,ie.tooltip.Tooltip);var qe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},r.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Ke=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},input:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleStatusLabel"},e.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',qe),this.update(),this.isSwappingFont=!0},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},r.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},e.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),r=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),i=parseFloat(n.width);i>r&&(r=i),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",r/16+"rem")},e.prototype.swapFont=function(t){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Ve={STATUS_LABEL:""+ie.internals.ns.selector("toggle__label")+ie.internals.ns.attr.selector("checked-label")+ie.internals.ns.attr.selector("unchecked-label")};ie.toggle={ToggleStatusLabel:Ke,ToggleSelector:Ve},ie.internals.register(ie.toggle.ToggleSelector.STATUS_LABEL,ie.toggle.ToggleStatusLabel);var Ye=ie.internals.ns.selector("sidemenu__item"),Xe=ie.internals.ns.selector("collapse"),Qe={LIST:ie.internals.ns.selector("sidemenu__list"),COLLAPSE:Ye+" > "+Xe+", "+Ye+" > *:not("+Ye+"):not("+Xe+") > "+Xe+", "+Ye+" > *:not("+Ye+"):not("+Xe+") > *:not("+Ye+"):not("+Xe+") > "+Xe,COLLAPSE_LEGACY:Ye+" "+Xe,ITEM:ie.internals.ns.selector("sidemenu__item"),BUTTON:ie.internals.ns.selector("sidemenu__btn")},Ze=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SidemenuList"},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.node.matches(ie.internals.legacy.isLegacy?Qe.COLLAPSE_LEGACY:Qe.COLLAPSE)},Object.defineProperties(e,r),e}(ie.core.CollapsesGroup),Je=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuItem"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Qe.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.sidemenu={SidemenuList:Ze,SidemenuItem:Je,SidemenuSelector:Qe},ie.internals.register(ie.sidemenu.SidemenuSelector.LIST,ie.sidemenu.SidemenuList),ie.internals.register(ie.sidemenu.SidemenuSelector.ITEM,ie.sidemenu.SidemenuItem);var tr={MODAL:ie.internals.ns.selector("modal"),SCROLL_DIVIDER:ie.internals.ns.selector("scroll-divider"),BODY:ie.internals.ns.selector("modal__body"),TITLE:ie.internals.ns.selector("modal__title")},er=function(t){function e(){t.call(this,ie.core.DisclosureType.OPENED)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(e,r),e}(ie.core.DisclosureButton),rr={CONCEALING_BACKDROP:ie.internals.ns.attr("concealing-backdrop")},nr=function(t){function e(){t.call(this,ie.core.DisclosureType.OPENED,tr.MODAL,er,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={body:{configurable:!0},isDialog:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Modal"},e.prototype.init=function(){t.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(ie.core.RootEmission.KEYDOWN,this._keydown.bind(this))},e.prototype._keydown=function(t){if(t===ie.core.KeyCodes.ESCAPE)this._escape()},e.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},e.prototype.retrieved=function(){this._ensureAccessibleName()},r.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},e.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(rr.CONCEALING_BACKDROP)&&this.conceal()},e.prototype.disclose=function(e){return!!t.prototype.disclose.call(this,e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},e.prototype.conceal=function(e,r){return!!t.prototype.conceal.call(this,e,r)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},r.isDialog.get=function(){return this._isDialog},r.isDialog.set=function(t){this._isDialog=t},e.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},e.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},e.prototype._setAccessibleName=function(t,e){var r=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",r)},e.prototype._ensureAccessibleName=function(){if(this.isEnabled&&(!this.isEnabled||!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label"))){this.warn("missing accessible name");var t=this.node.querySelector(tr.TITLE),e=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==e:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(e,"primary")}}},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Disclosure),ir=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),or=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),sr=function(t,e){if(!(t instanceof Element))return!1;var r=window.getComputedStyle(t);if(!r)return!1;if("hidden"===r.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===r.display)return!1;t=t.parentElement}return!0},ar=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},cr={trapped:{configurable:!0},focusables:{configurable:!0}};cr.trapped.get=function(){return null!==this.element},ar.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},ar.prototype.wait=function(){sr(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},ar.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},ar.prototype.stun=function(t){for(var e=0,r=t.children;e0||e[i-1].tabIndex>0)&&(t.preventDefault(),e[i-1].focus()):this.element.contains(document.activeElement)&&i!==e.length-1&&-1!==i?document.activeElement.tabIndex>0&&(t.preventDefault(),e[i+1].focus()):(t.preventDefault(),r.focus())}}},cr.focusables.get=function(){var t=this,e=ie.internals.dom.querySelectorAllArray(this.element,ir),r=ie.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(r.length){for(var n={},i=0,o=r;ithis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(tr.SCROLL_DIVIDER):this.addClass(tr.SCROLL_DIVIDER):this.removeClass(tr.SCROLL_DIVIDER)},e.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},e.prototype.adjust=function(){var t=32*(this.isBreakpoint(ie.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-t+"px":this.style.setProperty("--modal-max-height",window.innerHeight-t+"px"),this.divide()},Object.defineProperties(e,r),e}(ie.core.Instance);ie.modal={Modal:nr,ModalButton:er,ModalBody:hr,ModalsGroup:pr,ModalSelector:tr},ie.internals.register(ie.modal.ModalSelector.MODAL,ie.modal.Modal),ie.internals.register(ie.modal.ModalSelector.BODY,ie.modal.ModalBody),ie.internals.register(ie.core.RootSelector.ROOT,ie.modal.ModalsGroup);var fr={TOGGLE:ie.internals.ns.emission("password","toggle"),ADJUST:ie.internals.ns.emission("password","adjust")},dr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},e.prototype.init=function(){this.listenClick(),this.ascend(fr.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},r.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},r.isChecked.get=function(){return this.node.checked},r.isChecked.set=function(t){this._isChecked=t,this.ascend(fr.TOGGLE,t)},e.prototype.handleClick=function(){this.isChecked=!this._isChecked},e.prototype.swapFont=function(t){this.ascend(fr.ADJUST,this.width)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),yr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Password"},e.prototype.init=function(){this.addAscent(fr.TOGGLE,this.toggle.bind(this)),this.addAscent(fr.ADJUST,this.adjust.bind(this))},e.prototype.toggle=function(t){this.descend(fr.TOGGLE,t)},e.prototype.adjust=function(t){this.descend(fr.ADJUST,t)},Object.defineProperties(e,r),e}(ie.core.Instance),br={PASSWORD:ie.internals.ns.selector("password"),INPUT:ie.internals.ns.selector("password__input"),LABEL:ie.internals.ns.selector("password__label"),TOOGLE:ie.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},gr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRevealed:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordInput"},e.prototype.init=function(){this.addDescent(fr.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},e.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},r.isRevealed.get=function(){return this._isRevealed},e.prototype.capslock=function(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(ie.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(ie.internals.ns.attr("capslock")))},r.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),vr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"PasswordLabel"},e.prototype.init=function(){this.addDescent(fr.ADJUST,this.adjust.bind(this))},e.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(e,r),e}(ie.core.Instance);ie.password={Password:yr,PasswordToggle:dr,PasswordSelector:br,PasswordInput:gr,PasswordLabel:vr},ie.internals.register(ie.password.PasswordSelector.INPUT,ie.password.PasswordInput),ie.internals.register(ie.password.PasswordSelector.PASSWORD,ie.password.Password),ie.internals.register(ie.password.PasswordSelector.TOOGLE,ie.password.PasswordToggle),ie.internals.register(ie.password.PasswordSelector.LABEL,ie.password.PasswordLabel);var mr=ie.internals.ns.selector("nav__item"),_r=ie.internals.ns.selector("collapse"),wr={NAVIGATION:ie.internals.ns.selector("nav"),COLLAPSE:mr+" > "+_r+", "+mr+" > *:not("+mr+"):not("+_r+") > "+_r+", "+mr+" > *:not("+mr+"):not("+_r+") > *:not("+mr+"):not("+_r+") > "+_r,COLLAPSE_LEGACY:mr+" "+_r,ITEM:mr,ITEM_RIGHT:mr+"--align-right",MENU:ie.internals.ns.selector("menu"),BUTTON:ie.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:ie.internals.ns.selector("translate__btn")},Sr=function(t){function e(){t.call(this),this._isRightAligned=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"NavigationItem"},e.prototype.init=function(){this.addAscent(ie.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(ie.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},e.prototype.resize=function(){this.calculate()},e.prototype.calculate=function(){var t=this.element.getDescendantInstances(ie.core.Collapse.instanceClassName,null,!0)[0];if(t&&this.isBreakpoint(ie.core.Breakpoints.LG)&&t.element.node.matches(wr.MENU)){var e=this.element.node.parentElement.getBoundingClientRect().right,r=t.element.node.getBoundingClientRect().width,n=this.element.node.getBoundingClientRect().left;this.isRightAligned=n+r>e}else this.isRightAligned=!1},r.isRightAligned.get=function(){return this._isRightAligned},r.isRightAligned.set=function(t){this._isRightAligned!==t&&(this._isRightAligned=t,t?ie.internals.dom.addClass(this.element.node,wr.ITEM_RIGHT):ie.internals.dom.removeClass(this.element.node,wr.ITEM_RIGHT))},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(wr.BUTTON)||t.hasClass(wr.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Er={NONE:-1,INSIDE:0,OUTSIDE:1},Or=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={index:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Navigation"},e.prototype.init=function(){t.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(ie.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.element.node.matches(ie.internals.legacy.isLegacy?wr.COLLAPSE_LEGACY:wr.COLLAPSE)},e.prototype.handleMouseDown=function(t){this.isBreakpoint(ie.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(t.target)?Er.INSIDE:Er.OUTSIDE,this.requestPosition())},e.prototype.handleClick=function(t){!t.target.matches("a, button")||t.target.matches("[aria-controls]")||t.target.matches(ie.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},e.prototype._handleRootClick=function(t){this.isBreakpoint(ie.core.Breakpoints.LG)&&(this.node.contains(t)||(this.out=!0,this.requestPosition()))},e.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},e.prototype.getPosition=function(){if(this.out)switch(this.position){case Er.OUTSIDE:this.index=-1;break;case Er.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},e.prototype.requested=function(){this.position=Er.NONE,this.out=!1,this.isRequesting=!1},r.index.get=function(){return t.prototype.index},r.index.set=function(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},r.canUngroup.get=function(){return!this.isBreakpoint(ie.core.Breakpoints.LG)},e.prototype.resize=function(){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.CollapsesGroup);ie.navigation={Navigation:Or,NavigationItem:Sr,NavigationMousePosition:Er,NavigationSelector:wr},ie.internals.register(ie.navigation.NavigationSelector.NAVIGATION,ie.navigation.Navigation),ie.internals.register(ie.navigation.NavigationSelector.ITEM,ie.navigation.NavigationItem);var jr=function(t){function e(){t.call(this,ie.core.DisclosureType.SELECT)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabButton"},e.prototype.handleClick=function(e){t.prototype.handleClick.call(this,e),this.focus()},e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))},r.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.DisclosureButton),Tr={TAB:ie.internals.ns.selector("tabs__tab"),GROUP:ie.internals.ns.selector("tabs"),PANEL:ie.internals.ns.selector("tabs__panel"),LIST:ie.internals.ns.selector("tabs__list"),SHADOW:ie.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:ie.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:ie.internals.ns.selector("tabs__shadow--right"),PANEL_START:ie.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:ie.internals.ns.selector("tabs__panel--direction-end")},Pr="direction-start",Ar="direction-end",Nr="none",Cr=function(t){function e(){t.call(this,ie.core.DisclosureType.SELECT,Tr.PANEL,jr,"TabsGroup"),this._direction=Nr,this._isPreventingTransition=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabPanel"},r.direction.get=function(){return this._direction},r.direction.set=function(t){if(t!==this._direction){switch(this._direction){case Pr:this.removeClass(Tr.PANEL_START);break;case Ar:this.removeClass(Tr.PANEL_END);break;case Nr:break;default:return}switch(this._direction=t,this._direction){case Pr:this.addClass(Tr.PANEL_START);break;case Ar:this.addClass(Tr.PANEL_END)}}},r.isPreventingTransition.get=function(){return this._isPreventingTransition},r.isPreventingTransition.set=function(t){this._isPreventingTransition!==t&&(t?this.addClass(ie.internals.motion.TransitionSelector.NONE):this.removeClass(ie.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)},e.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},e.prototype.reset=function(){this.group&&this.group.retrieve(!0)},e.prototype._electPrimaries=function(e){var r=this;return this.group&&this.group.list?t.prototype._electPrimaries.call(this,e).filter((function(t){return r.group.list.node.contains(t.node)})):[]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Disclosure),Ir="tab_keys_left",Lr="tab_keys_right",Mr="tab_keys_home",Dr="tab_keys_end",xr={PRESS_KEY:ie.internals.ns.emission("tab","press_key"),LIST_HEIGHT:ie.internals.ns.emission("tab","list_height")},Rr=function(t){function e(){t.call(this,"TabPanel")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabsGroup"},e.prototype.init=function(){t.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(xr.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(xr.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},e.prototype.getIndex=function(e){void 0===e&&(e=0),t.prototype.getIndex.call(this,e)},r.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},e.prototype.setListHeight=function(t){this.listHeight=t},e.prototype.transitionend=function(t){this.isPreventingTransition=!0},r.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},e.prototype.pressKey=function(t){switch(t){case Ir:this.pressLeft();break;case Lr:this.pressRight();break;case Mr:this.pressHome();break;case Dr:this.pressEnd()}},e.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},e.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},e.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},e.prototype.focus=function(){this.current&&this.current.focus()},e.prototype.apply=function(){for(var t=0;tr.right&&this.node.scrollTo(n-r.right+e.right+16,0)},r.isScrolling.get=function(){return this._isScrolling},r.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},e.prototype.apply=function(){this._isScrolling?(this.addClass(Tr.SHADOW),this.scroll()):(this.removeClass(Tr.SHADOW_RIGHT),this.removeClass(Tr.SHADOW_LEFT),this.removeClass(Tr.SHADOW))},e.prototype.scroll=function(){var t=Math.abs(this.node.scrollLeft),e=t<=16,r=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=r,i="rtl"===getComputedStyle(this.node).direction,o=i?Tr.SHADOW_RIGHT:Tr.SHADOW_LEFT,s=i?Tr.SHADOW_LEFT:Tr.SHADOW_RIGHT;e?this.removeClass(o):this.addClass(o),n?this.removeClass(s):this.addClass(s)},e.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(xr.LIST_HEIGHT,t)},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.tab={TabPanel:Cr,TabButton:jr,TabsGroup:Rr,TabsList:kr,TabSelector:Tr,TabEmission:xr},ie.internals.register(ie.tab.TabSelector.PANEL,ie.tab.TabPanel),ie.internals.register(ie.tab.TabSelector.GROUP,ie.tab.TabsGroup),ie.internals.register(ie.tab.TabSelector.LIST,ie.tab.TabsList);var Hr={DISMISS:ie.internals.ns.event("dismiss")},Gr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TagDismissible"},e.prototype.init=function(){this.listenClick()},e.prototype.handleClick=function(){switch(this.focusClosest(),ie.mode){case ie.Modes.ANGULAR:case ie.Modes.REACT:case ie.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(Hr.DISMISS)},e.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+ie.mode+" mode, the api doesn't handle dom modification. An event "+Hr.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(e,r),e}(ie.core.Instance),$r={PRESSABLE:ie.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+ie.internals.ns.selector("tag--dismiss")};ie.tag={TagDismissible:Gr,TagSelector:$r,TagEvent:Hr},ie.internals.register(ie.tag.TagSelector.PRESSABLE,ie.core.Toggle),ie.internals.register(ie.tag.TagSelector.DISMISSIBLE,ie.tag.TagDismissible);var Fr=ie.internals.ns.selector("transcription"),Ur={TRANSCRIPTION:Fr,BUTTON:Fr+"__btn"},zr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Transcription"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Ur.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.transcription={Transcription:zr,TranscriptionSelector:Ur},ie.internals.register(ie.transcription.TranscriptionSelector.TRANSCRIPTION,ie.transcription.Transcription);var Br=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TileDownload"},e.prototype.init=function(){var t=this;this.addAscent(ie.core.AssessEmission.UPDATE,(function(e){t.descend(ie.core.AssessEmission.UPDATE,e)})),this.addAscent(ie.core.AssessEmission.ADDED,(function(){t.descend(ie.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ie.core.Instance),Wr={DOWNLOAD:ie.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:ie.internals.ns.selector("tile--download")+" "+ie.internals.ns.selector("tile__detail")};ie.tile={TileSelector:Wr,TileDownload:Br},ie.internals.register(ie.tile.TileSelector.DOWNLOAD,ie.tile.TileDownload),ie.internals.register(ie.tile.TileSelector.DOWNLOAD_DETAIL,ie.core.AssessDetail);var qr={RANGE:ie.internals.ns.selector("range"),RANGE_SM:ie.internals.ns.selector("range--sm"),RANGE_STEP:ie.internals.ns.selector("range--step"),RANGE_DOUBLE:ie.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:ie.internals.ns.selector("range--double")+ie.internals.ns.selector("range--step"),RANGE_INPUT:ie.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:ie.internals.ns.selector("range--double")+" input[type=range]:nth-of-type(2)",RANGE_OUTPUT:ie.internals.ns.selector("range__output"),RANGE_MIN:ie.internals.ns.selector("range__min"),RANGE_MAX:ie.internals.ns.selector("range__max"),RANGE_PREFIX:ie.internals.ns.attr("prefix"),RANGE_SUFFIX:ie.internals.ns.attr("suffix")},Kr={VALUE:ie.internals.ns.emission("range","value"),VALUE2:ie.internals.ns.emission("range","value2"),OUTPUT:ie.internals.ns.emission("range","output"),CONSTRAINTS:ie.internals.ns.emission("range","constraints"),MIN:ie.internals.ns.emission("range","min"),MAX:ie.internals.ns.emission("range","max"),STEP:ie.internals.ns.emission("range","step"),PREFIX:ie.internals.ns.emission("range","prefix"),SUFFIX:ie.internals.ns.emission("range","suffix"),DISABLED:ie.internals.ns.emission("range","disabled"),ENABLE_POINTER:ie.internals.ns.emission("range","enable_pointer")},Vr=function(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}},Yr={width:{configurable:!0},isSm:{configurable:!0},textValue:{configurable:!0},value:{configurable:!0},outputX:{configurable:!0},min:{configurable:!0},textMin:{configurable:!0},max:{configurable:!0},textMax:{configurable:!0},step:{configurable:!0},output:{configurable:!0},progress:{configurable:!0}};Vr.prototype.configure=function(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())},Vr.prototype.setPrefix=function(t){this._prefix=null!==t?t:""},Vr.prototype.setSuffix=function(t){this._suffix=null!==t?t:""},Vr.prototype._decorate=function(t){return""+this._prefix+t+this._suffix},Yr.width.get=function(){return this._width},Yr.width.set=function(t){this._width=t},Yr.isSm.get=function(){return this._isSm},Yr.isSm.set=function(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())},Vr.prototype.setThumbSize=function(t,e){void 0===e&&(e=1),this._thumbSize=t,this._innerPadding=t*e},Yr.textValue.get=function(){return this._decorate(this._value)},Yr.value.get=function(){return this._value},Yr.value.set=function(t){this._value=t},Yr.outputX.get=function(){return this._outputX},Vr.prototype.setConstraints=function(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth},Yr.min.get=function(){return this._min},Yr.textMin.get=function(){return this._decorate(this._min)},Yr.max.get=function(){return this._max},Yr.textMax.get=function(){return this._decorate(this._max)},Yr.step.get=function(){return this._step},Yr.output.get=function(){return{text:this.textValue,transform:"translateX("+this._translateX+"px) translateX(-"+this._centerPercent+"%)"}},Vr.prototype._getRatio=function(t){return(t-this._min)/this._rangeWidth},Yr.progress.get=function(){return this._progress},Vr.prototype.update=function(){this._update()},Vr.prototype._update=function(){this._innerWidth=this._width-this._innerPadding;var t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:(this._innerWidth*t+.5*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(Vr.prototype,Yr);var Xr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2},Object.defineProperties(e.prototype,r),e}(Vr),Qr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={value2:{configurable:!0},textValue:{configurable:!0}};return r.value2.get=function(){return this._value},r.value2.set=function(t){this._value2!==t&&(this._value2=t,this.update())},r.textValue.get=function(){return this._decorate(this._value)+" - "+this._decorate(this._value2)},e.prototype.setThumbSize=function(e){t.prototype.setThumbSize.call(this,e,2)},e.prototype._update=function(){t.prototype._update.call(this);var e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;var r=this._getRatio(this._value),n=this._getRatio(this._value2);this._progress={left:(this._innerWidth*r+.25*this._innerPadding).toFixed(2)+"px",right:(this._innerWidth*n+.75*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(e.prototype,r),e}(Vr),Zr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))},Object.defineProperties(e.prototype,r),e}(Qr),Jr="step",tn="double",en="double-step",rn="default",nn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={type:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Range"},e.prototype.init=function(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Kr.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Kr.VALUE,this.setValue.bind(this)),this.addAscent(Kr.VALUE2,this.setValue2.bind(this)),this.getAttribute(qr.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(qr.RANGE_PREFIX)),this.getAttribute(qr.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(qr.RANGE_SUFFIX)),this.update()},e.prototype._retrieveType=function(){switch(!0){case this.matches(qr.RANGE_DOUBLE_STEP):case this.matches(qr.RANGE_DOUBLE):this.type=tn;break;case this.matches(qr.RANGE_STEP):this.type=Jr;break;default:this.type=rn}},r.type.set=function(t){if(this._type!==t){this._type=t;var e=this._model;switch(this._type){case en:this._model=new Zr;break;case tn:this._model=new Qr;break;case Jr:this._model=new Xr;break;default:this._model=new Vr}this._model.configure(e)}},r.type.get=function(){return this._type},e.prototype._retrieveSize=function(){this._model.isSm=this.matches(qr.RANGE_SM)},e.prototype.resize=function(){this._retrieveWidth(),this.update()},e.prototype._retrieveWidth=function(){this._model.width=this.getRect().width},e.prototype.setValue=function(t){switch(this._model.value=t,this._type){case en:case tn:this.descend(Kr.VALUE,t)}this.update()},e.prototype.setValue2=function(t){this._model.value2=t,this.descend(Kr.VALUE2,t),this.update()},e.prototype.setConstraints=function(t){this._model.setConstraints(t),this.update(),this.descend(Kr.CONSTRAINTS,t)},e.prototype.setPrefix=function(t){this._model.setPrefix(t),this.update()},e.prototype.setSuffix=function(t){this._model.setSuffix(t),this.update()},e.prototype.mutate=function(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(qr.RANGE_PREFIX):case t.includes(qr.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(qr.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(qr.RANGE_SUFFIX)),this.update()}},e.prototype.update=function(){this._model.update(),this.descend(Kr.OUTPUT,this._model.output),this.descend(Kr.MIN,this._model.textMin),this.descend(Kr.MAX,this._model.textMax);var t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",parseFloat(t.right)-parseFloat(t.left)+"px "+(this._model.isSm?"8px":"12px")))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")},e.prototype.mouseMove=function(t){if(this._type===tn||this._type===en){var e=t.x-this.getRect().left;this.descend(Kr.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left)t&&(this.value=t)},e.prototype.change=function(){this.ascend(Kr.VALUE,this._value)},e.prototype.render=function(){var t=parseFloat(this.node.value);t!==this._value&&(this.value=t)},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(Kr.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(Kr.CONSTRAINTS,new on(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),cn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(Kr.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Kr.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)=e,n="rtl"===document.documentElement.getAttribute("dir"),i=n?mn.SHADOW_RIGHT:mn.SHADOW_LEFT,o=n?mn.SHADOW_LEFT:mn.SHADOW_RIGHT;t?this.removeClass(i):this.addClass(i),r?this.removeClass(o):this.addClass(o)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),wn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TableCaption"},e.prototype.init=function(){this.height=0,this.isResizing=!0},e.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend(bn.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(e,r),e}(ie.core.Instance),Sn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isSelected:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TableRow"},e.prototype.init=function(){ie.checkbox&&(this.addAscent(Ne.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(Ne.RETRIEVE))},e.prototype._handleCheckboxChange=function(t){"row-select"!==t.name&&"true"!==t.getAttribute(ie.internals.ns.attr("row-select"))||(this.isSelected=!0===t.checked)},e.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},r.isSelected.get=function(){return this._isSelected},r.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.table={Table:gn,TableWrapper:vn,TableElement:_n,TableCaption:wn,TableSelector:mn,TableRow:Sn},ie.internals.register(ie.table.TableSelector.TABLE,ie.table.Table),ie.internals.register(ie.table.TableSelector.TABLE_WRAPPER,ie.table.TableWrapper),ie.internals.register(ie.table.TableSelector.ELEMENT,ie.table.TableElement),ie.internals.register(ie.table.TableSelector.CAPTION,ie.table.TableCaption),ie.internals.register(ie.table.TableSelector.ROW,ie.table.TableRow),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===i(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e){return t[e]}function i(t){return"function"==typeof t}function o(t){if(null===t||t===e)throw TypeError();return Object(t)}function s(t,r){var n=function(t,e){return o(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function a(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function c(t,e){return a(t)===a(e)&&("number"===a(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function l(t){if("symbol"===a(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function u(o){var c=arguments.length>1?arguments[1]:e;if("object"===a(o)){if(arguments.length<2)var l="default";else c===String?l="string":c===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?s(o,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,o,[l]);if("object"!==a(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var o=["toString","valueOf"];else o=["valueOf","toString"];for(var s=0;s=0)var s=i;else(s=r+i)<0&&(s=0);for(;s=c)for(;c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u())},i.remove=function(){p.apply(i,e=arguments);for(var e,r={},c=0,l=[];c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u()},i.toggle=function(t,r){return p.apply(i,[t]),e!==r?r?(i.add(t),!0):(i.remove(t),!1):s[t]?(i.remove(t),!1):(i.add(t),!0)},i.forEach=Array.prototype.forEach,i}}();"DOMTokenList"in(r=t)&&r.DOMTokenList&&(!document.createElementNS||!document.createElementNS("http://www.w3.org/2000/svg","svg")||document.createElementNS("http://www.w3.org/2000/svg","svg").classList instanceof DOMTokenList)||(r.DOMTokenList=n),function(){var t=document.createElement("span");"classList"in t&&(t.classList.toggle("x",!1),t.classList.contains("x")&&(t.classList.constructor.prototype.toggle=function(t){var r=arguments[1];if(r===e){var n=!this.contains(t);return this[n?"add":"remove"](t),n}return r=!!r,this[r?"add":"remove"](t),r}))}(),function(){var t=document.createElement("span");if("classList"in t&&(t.classList.add("a","b"),!t.classList.contains("b"))){var e=t.classList.constructor.prototype.add;t.classList.constructor.prototype.add=function(){for(var t=arguments,r=arguments.length,n=0;n2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;ot&&(n.length=t)}var n=x(t),i=0;return function(t,e){n[i++]=t,n[i++]=e,2===i&&rt.nextTick(r)}}function p(t,e){var r,n,s,a,c=0;if(!t)throw h(V);var u=t[rt[$][F]];if(i(u))n=u.call(t);else{if(!i(t.next)){if(o(t,x)){for(r=t.length;cMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;jMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function o(t,e){return t[e]}function s(t,e){return e in t}function a(t){return"[object Array]"===Object.prototype.toString.call(t)}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,r){var n=function(t,e){return l(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function p(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function h(t,e){var r=arguments[2]||{},n=function(t,e){var r=o(t,"prototype");return"object"!==p(r)&&(r=e),r}(t,e),i=Object.create(n);for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&Object.defineProperty(i,s,{configurable:!0,enumerable:!1,writable:!0,value:r[s]});return i}function f(t){return"object"===p(t)&&"function"==typeof t&&!!t.prototype}function d(i,s){if(0===s&&1/s==-1/0&&(s=0),!1===a(i))return r(s);var c=o(i,"constructor");if("object"===p(c)&&null===(c="Symbol"in t&&"species"in t.Symbol?o(c,t.Symbol.species):e)&&(c=e),c===e)return r(s);if(!f(c))throw new TypeError("C must be a constructor");return function(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!f(t))throw new TypeError("F must be a constructor.");if(!f(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,h(e,Object.prototype),r)}(c,[s])}function y(t){if("symbol"===p(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function b(t){var e=y(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function g(r){var i=arguments.length>1?arguments[1]:e;if("object"===p(r)){if(arguments.length<2)var s="default";else i===String?s="string":i===Number&&(s="number");var a="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?u(r,t.Symbol.toPrimitive):e;if(a!==e){var l=n(a,r,[s]);if("object"!==p(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===s&&(s="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i0&&(_=a(g)),!0===_)f=m(t,g,b(o(g,"length")),f,l-1);else{if(f>=Math.pow(2,53)-1)throw new TypeError("targetIndex is greater than or equal to 2^53-1");i(t,v(f),g),f+=1}}d+=1}return f}var _,w,S,E;_=Array.prototype,w="flat",S=function(){var t=arguments[0],e=l(this),r=b(o(e,"length")),n=1;void 0!==t&&(n=y(t));var i=d(e,0);return m(i,e,r,0,n),i},E={value:S,writable:!0,enumerable:!1,configurable:!0},Object.defineProperty(_,w,E)}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===s(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function i(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function o(t,e){return t[e]}function s(t){return"function"==typeof t}function a(t){if(null===t||t===e)throw TypeError(Object.prototype.toString.call(t)+" is not coercible to Object.");return t}function c(t){return Boolean(t)}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===s(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function f(t,n){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return n;try{var s=r(o,i)}catch(t){var a=t}if(n)return n;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return n}function d(t){var e=function(t){if(arguments.length<2)var e=r(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=r(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==function(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return c(o(t,"done"))}(e)&&e}function y(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return o(t,"value")}function b(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function g(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function v(n){var i=arguments.length>1?arguments[1]:e;if("object"===h(n)){if(arguments.length<2)var a="default";else i===String?a="string":i===Number&&(a="number");var c="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(n,t.Symbol.toPrimitive):e;if(c!==e){var l=r(c,n,[a]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===a&&(a="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var i=0;i=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i1?arguments[1]:e,i=m(a(this));if(function(r){if("object"!==h(r))return!1;var n="Symbol"in t&&"match"in t.Symbol?o(r,t.Symbol.match):e;if(n!==e)return c(n);try{var i=r.lastIndex;return r.lastIndex=0,RegExp.prototype.exec.call(r),!0}catch(t){}finally{r.lastIndex=i}return!1}(r))throw new TypeError("First argument to String.prototype.includes must not be a regular expression");var s=m(r),l=g(n),u=i.length,p=Math.min(Math.max(l,0),u);return-1!==String.prototype.indexOf.call(i,s,p)})),function(){var t=Object.getOwnPropertyDescriptor,e=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(t){return!1}},r={}.toString,n="".split;i(Object,"getOwnPropertyDescriptor",(function(i,o){var s=l(i);s=("string"===h(s)||s instanceof String)&&"[object String]"==r.call(i)?n.call(i,""):Object(i);var a=T(o);if(e)try{return t(s,a)}catch(t){}if(function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}(s,a))return{enumerable:!0,configurable:!0,writable:!0,value:s[a]}}))}(),i(Object,"assign",(function(t,r){var n=l(t);if(1===arguments.length)return n;var i,s,a,c,u=Array.prototype.slice.call(arguments,1);for(i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var n=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=n,i["[[Done]]"]=!1,i}(i);;){var l=d(c);if(!1===l)return n;var b,g,v=y(l);if("object"!==h(v)){var m=new TypeError("nextItem is not an object");throw f(c,m),m}v=("string"===h(v)||v instanceof String)&&"[object String]"==t.call(v)?e.call(v,""):v;try{b=o(v,"0")}catch(t){return f(c,t)}try{g=o(v,"1")}catch(t){return f(c,t)}try{r(a,n,[b,g])}catch(t){return f(c,t)}}}}();Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});var A=function(){var t=function(){return this.length=0,this},r=function(t,e){if(!(this instanceof r))return new r(t,e);Object.defineProperties(this,{__list__:{writable:!0,value:t},__context__:{writable:!0,value:e},__nextIndex__:{writable:!0,value:0}}),e&&(function(t){if("function"!=typeof t)throw new TypeError(t+" is not a function")}(e.on),e.on("_add",this._onAdd.bind(this)),e.on("_delete",this._onDelete.bind(this)),e.on("_clear",this._onClear.bind(this)))};return Object.defineProperties(r.prototype,Object.assign({constructor:{value:r,configurable:!0,enumerable:!1,writable:!0},_next:{value:function(){var t;if(this.__list__)return this.__redo__&&(t=this.__redo__.shift())!==e?t:this.__nextIndex__=this.__nextIndex__)){if(++this.__nextIndex__,!this.__redo__)return void Object.defineProperty(this,"__redo__",{value:[t],configurable:!0,enumerable:!1,writable:!1});this.__redo__.forEach((function(e,r){e>=t&&(this.__redo__[r]=++e)}),this),this.__redo__.push(t)}},configurable:!0,enumerable:!1,writable:!0},_onDelete:{value:function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach((function(e,r){e>t&&(this.__redo__[r]=--e)}),this)))},configurable:!0,enumerable:!1,writable:!0},_onClear:{value:function(){this.__redo__&&t.call(this.__redo__),this.__nextIndex__=0},configurable:!0,enumerable:!1,writable:!0}})),Object.defineProperty(r.prototype,Symbol.iterator,{value:function(){return this},configurable:!0,enumerable:!1,writable:!0}),Object.defineProperty(r.prototype,Symbol.toStringTag,{value:"Iterator",configurable:!1,enumerable:!1,writable:!0}),r}(),N=function(){var t=function(e,r){if(!(this instanceof t))return new t(e,r);A.call(this,e),r=r?String.prototype.includes.call(r,"key+value")?"key+value":String.prototype.includes.call(r,"key")?"key":"value":"value",Object.defineProperty(this,"__kind__",{value:r,configurable:!1,enumerable:!1,writable:!1})};return Object.setPrototypeOf&&Object.setPrototypeOf(t,A.prototype),t.prototype=Object.create(A.prototype,{constructor:{value:t,configurable:!0,enumerable:!1,writable:!0},_resolve:{value:function(t){return"value"===this.__kind__?this.__list__[t]:"key+value"===this.__kind__?[t,this.__list__[t]]:t},configurable:!0,enumerable:!1,writable:!0},toString:{value:function(){return"[object Array Iterator]"},configurable:!0,enumerable:!1,writable:!0}}),t}();"Symbol"in t&&"iterator"in Symbol&&"function"==typeof Array.prototype[Symbol.iterator]?i(Array.prototype,"values",Array.prototype[Symbol.iterator]):i(Array.prototype,"values",(function(){var t=l(this);return new N(t,"value")})),i(Array.prototype,Symbol.iterator,Array.prototype.values),i(Object,"fromEntries",(function(t){a(t);return P({},t,(function(t,e){n(this,T(t),e)}))}))}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}var n,i;r(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;oMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;j=t.length)return{done:!0,value:e};var i=t[n++];return{done:!1,value:"key"===r?i.name:"value"===r?i.value:[i.name,i.value]}}}function c(e,r){function n(){var t=a.href.replace(/#$|\?$|\?(?=#)/g,"");a.href!==t&&(a.href=t)}function i(){h._setList(a.search?o(a.search.substring(1)):[]),h._update_steps()}if(!(this instanceof t.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");r&&(e=function(){if(l)return new u(e,r).href;var t;try{var n;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?((t=document.createElement("iframe")).style.display="none",document.documentElement.appendChild(t),n=t.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?n=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?((n=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null)).documentElement.appendChild(n.createElement("head")),n.documentElement.appendChild(n.createElement("body"))):window.ActiveXObject&&((n=new window.ActiveXObject("htmlfile")).write(""),n.close()),!n)throw Error("base not supported");var i=n.createElement("base");i.href=r,n.getElementsByTagName("head")[0].appendChild(i);var o=n.createElement("a");return o.href=e,o.href}finally{t&&t.parentNode.removeChild(t)}}());var a=function(t){if(l)return new u(t);var e=document.createElement("a");return e.href=t,e}(e||""),c=function(){if(!("defineProperties"in Object))return!1;try{var t={};return Object.defineProperties(t,{prop:{get:function(){return!0}}}),t.prop}catch(t){return!1}}(),p=c?this:document.createElement("a"),h=new s(a.search?a.search.substring(1):null);return h._url_object=p,Object.defineProperties(p,{href:{get:function(){return a.href},set:function(t){a.href=t,n(),i()},enumerable:!0,configurable:!0},origin:{get:function(){return"data:"===this.protocol.toLowerCase()?null:"origin"in a?a.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return a.protocol},set:function(t){a.protocol=t},enumerable:!0,configurable:!0},username:{get:function(){return a.username},set:function(t){a.username=t},enumerable:!0,configurable:!0},password:{get:function(){return a.password},set:function(t){a.password=t},enumerable:!0,configurable:!0},host:{get:function(){var t={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[a.protocol];return t?a.host.replace(t,""):a.host},set:function(t){a.host=t},enumerable:!0,configurable:!0},hostname:{get:function(){return a.hostname},set:function(t){a.hostname=t},enumerable:!0,configurable:!0},port:{get:function(){return a.port},set:function(t){a.port=t},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==a.pathname.charAt(0)?"/"+a.pathname:a.pathname},set:function(t){a.pathname=t},enumerable:!0,configurable:!0},search:{get:function(){return a.search},set:function(t){a.search!==t&&(a.search=t,n(),i())},enumerable:!0,configurable:!0},searchParams:{get:function(){return h},enumerable:!0,configurable:!0},hash:{get:function(){return a.hash},set:function(t){a.hash=t,n()},enumerable:!0,configurable:!0},toString:{value:function(){return a.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return a.valueOf()},enumerable:!1,configurable:!0}}),p}var l,u=t.URL;try{if(u){if("searchParams"in(l=new t.URL("http://example.com"))){var p=new c("http://example.com");if(p.search="a=1&b=2","http://example.com/?a=1&b=2"===p.href&&(p.search="","http://example.com/"===p.href))return}"href"in l||(l=e),l=e}}catch(t){}if(Object.defineProperties(s.prototype,{append:{value:function(t,e){this._list.push({name:t,value:e}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},delete:{value:function(t){for(var e=0;e1?arguments[1]:e;this._list.forEach((function(e){t.call(r,e.value,e.name)}))},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return n(this._list)},writable:!0,enumerable:!1,configurable:!0},sort:{value:function(){for(var t=this.entries(),e=t.next(),r=[],n={};!e.done;){var i=e.value,o=i[0];r.push(o),Object.prototype.hasOwnProperty.call(n,o)||(n[o]=[]),n[o].push(i[1]),e=t.next()}r.sort();for(var s=0;sa,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media print{body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-no-print{display:none}h1,h2,h3,h4{break-after:avoid;page-break-after:avoid}p{orphans:3;widows:3}.fr-text--sm,.fr-text--xs{font-size:1rem!important;line-height:1.5rem!important;margin:var(--text-spacing)}.fr-upload{font-size:1rem;line-height:1.5rem}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-accordion__btn:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse:not(.fr-collapse--expanded){--collapse-max-height:none!important;--collapse:inherit!important;padding:1rem;visibility:visible}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-logo:after{background-position:0 calc(100% + 1.875rem)!important}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{color:#000091}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){color:#929292}.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--secondary,.fr-btn--tertiary,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091;font-size:1rem;line-height:1.5rem}.fr-connect-group p{color:#666;font-size:1rem;line-height:1.5rem}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote__source{color:#666}.fr-quote cite,.fr-quote figcaption li,.fr-quote__author{font-size:1rem;line-height:1.5rem}.fr-breadcrumb{color:#666;display:none}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666;font-size:1rem;line-height:1.5rem}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset__legend{color:#161616}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-stepper__title{color:#161616}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer))}.fr-stepper__details,.fr-stepper__state{font-size:1rem;line-height:1.5rem}.fr-tooltip{color:#3a3a3a;display:none}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff)}.fr-link{color:#000091}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;display:none}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs:before{box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary{background-color:#eee;display:none}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table td,.fr-table th{font-size:1rem;line-height:1.5rem}.fr-tag{background-color:#eee;color:#161616}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:#000091}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666;line-height:1rem!important}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-card__desc,.fr-card__detail{font-size:1rem;line-height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle label{color:#161616}.fr-toggle label:before{color:#000091;content:"";display:block;font-size:1rem;line-height:1.5rem}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666;font-size:1rem;line-height:1.5rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c;content:""}.fr-toggle--error:before{background-color:#ce0500;content:""}.fr-fieldset--error .fr-toggle label,.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label,.fr-toggle--error label:before{color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--valid .fr-toggle label,.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label,.fr-toggle--valid label:before{color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-skiplinks{background-color:#eee}.fr-skiplink{display:none}.fr-select{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before,.fr-callout__title{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-modal,.fr-navigation{display:none}.fr-share .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__text{color:#666}.fr-footer,.fr-share{display:none}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile__title{color:#161616}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-tile .fr-tile__desc,.fr-tile .fr-tile__detail,.fr-tile--sm .fr-tile__desc,.fr-tile--sm .fr-tile__detail,.fr-tile--sm__desc,.fr-tile--sm__detail,.fr-tile__desc,.fr-tile__detail{font-size:1rem;line-height:1.5rem}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate .fr-translate__btn{font-size:1rem;line-height:1.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-transcription{display:none}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__caption{font-size:1rem;line-height:1.5rem}.fr-content-media__caption .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:inset 0 0 0 1px #ddd;display:none}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{color:#000091}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){color:#929292}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-password__btn{color:#000091}.fr-password__btn:disabled,a.fr-password__btn:not([href]){color:#929292}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header__brand{background-color:#fff;flex-wrap:nowrap}.fr-header__service{box-shadow:none;color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{color:#000091}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links .fr-btn{color:#000091}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{color:#000091}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){color:#929292}.fr-header__navbar .fr-btn--menu{box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header .fr-modal{background-color:#fff}.fr-header__menu{display:none}.fr-header__body-row{padding:0}.fr-header__body .fr-header__navbar,.fr-header__body .fr-header__tools{display:none}.fr-header__brand-top{width:auto}}@media print and (min-width:48em){.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media print and (min-width:62em){.fr-header{background-color:#fff}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr/dsfr.legacy.min.css b/dsfr/static/dsfr/dist/dsfr/dsfr.legacy.min.css index 317a0518f..376f872e9 100644 --- a/dsfr/static/dsfr/dist/dsfr/dsfr.legacy.min.css +++ b/dsfr/static/dsfr/dist/dsfr/dsfr.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-toggle--error:before,.fr-toggle--valid:before{content:""}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ @@ -192,4 +192,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}.fr-input:-ms-input-placeholder{color:#666}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(../icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(../icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr/dsfr.main.min.css b/dsfr/static/dsfr/dist/dsfr/dsfr.main.min.css index 336db8360..8a6f0ea18 100644 --- a/dsfr/static/dsfr/dist/dsfr/dsfr.main.min.css +++ b/dsfr/static/dsfr/dist/dsfr/dsfr.main.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{left:0;position:fixed;top:0}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse--expanded{overflow-x:hidden;overflow-y:auto}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{position:fixed;width:max-content}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */ /*! media sm */.fr-hidden-sm{display:none!important}.fr-unhidden-sm{display:inherit!important}.fr-sr-only-sm{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-sm-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-sm-2--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-sm-3--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-sm-4--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-sm-5--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-sm-6--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-sm-7--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-sm-8--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-sm-9--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-sm-10--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-sm-11--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-sm-12--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%} @@ -72,7 +72,7 @@ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem} /*! media md */ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem} /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)} /*! media md */ @@ -82,7 +82,7 @@ /*! media md */ /*! media md */.fr-download--card{padding:2rem 2rem 5rem}.fr-download--card .fr-download__link{font-size:1.375rem;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1.5rem;bottom:2rem;right:2rem}.fr-download--card .fr-download__desc{margin-top:.75rem}.fr-download--card .fr-download__detail{bottom:2rem;left:2rem}.fr-downloads-group__title{font-size:1.5rem;line-height:2rem}.fr-downloads-group--bordered{padding:2rem 2rem .5rem}.fr-downloads-group .fr-download{margin-bottom:1.5rem} /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem} - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover} /*! media md */ @@ -144,11 +144,11 @@ /*! media lg */ /*! media lg */ /*! media lg */ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0} - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */ /*! media lg */ /*! media lg */ @@ -157,7 +157,7 @@ /*! media lg */.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-end;position:absolute;width:56%} /*! media lg */ /*! media lg */ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}}@media (min-width:78em){ /*! media xl */ /*! media xl */ /*! media xl */.fr-hidden-xl{display:none!important}.fr-unhidden-xl{display:inherit!important}.fr-sr-only-xl{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{max-width:78rem}.fr-container-xl{max-width:78rem;padding-left:1.5rem;padding-right:1.5rem}.fr-container-xl--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-xl--gutters{margin:-.75rem}.fr-grid-row-xl--gutters>.fr-col,.fr-grid-row-xl--gutters>[class*=" fr-col-"],.fr-grid-row-xl--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-xl--no-gutters{margin:0}.fr-grid-row-xl--no-gutters>.fr-col,.fr-grid-row-xl--no-gutters>[class*=" fr-col-"],.fr-grid-row-xl--no-gutters>[class^=fr-col-]{padding:0}.fr-col-xl{flex:1}.fr-col-xl-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-xl-1:not(.fr-col-offset-xl-1--right){margin-left:8.33333%}.fr-col-offset-xl-1--right{margin-right:8.33333%}.fr-col-xl-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-xl-2:not(.fr-col-offset-xl-2--right){margin-left:16.66667%}.fr-col-offset-xl-2--right{margin-right:16.66667%}.fr-col-xl-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-xl-3:not(.fr-col-offset-xl-3--right){margin-left:25%}.fr-col-offset-xl-3--right{margin-right:25%}.fr-col-xl-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-xl-4:not(.fr-col-offset-xl-4--right){margin-left:33.33333%}.fr-col-offset-xl-4--right{margin-right:33.33333%}.fr-col-xl-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-xl-5:not(.fr-col-offset-xl-5--right){margin-left:41.66667%}.fr-col-offset-xl-5--right{margin-right:41.66667%}.fr-col-xl-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-xl-6:not(.fr-col-offset-xl-6--right){margin-left:50%}.fr-col-offset-xl-6--right{margin-right:50%}.fr-col-xl-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-xl-7:not(.fr-col-offset-xl-7--right){margin-left:58.33333%}.fr-col-offset-xl-7--right{margin-right:58.33333%}.fr-col-xl-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-xl-8:not(.fr-col-offset-xl-8--right){margin-left:66.66667%}.fr-col-offset-xl-8--right{margin-right:66.66667%}.fr-col-xl-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-xl-9:not(.fr-col-offset-xl-9--right){margin-left:75%}.fr-col-offset-xl-9--right{margin-right:75%}.fr-col-xl-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-xl-10:not(.fr-col-offset-xl-10--right){margin-left:83.33333%}.fr-col-offset-xl-10--right{margin-right:83.33333%}.fr-col-xl-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-xl-11:not(.fr-col-offset-xl-11--right){margin-left:91.66667%}.fr-col-offset-xl-11--right{margin-right:91.66667%}.fr-col-xl-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-xl-12:not(.fr-col-offset-xl-12--right){margin-left:100%}.fr-col-offset-xl-12--right{margin-right:100%} @@ -209,4 +209,4 @@ /*! media xl */.fr-consent-manager__header .fr-consent-service__radios,.fr-consent-manager__header .fr-consent-service__title{width:50%} /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,select[class*=" fr-fi-"]:disabled:after,select[class*=" fr-fi-"]:disabled:before,select[class*=" fr-icon-"]:disabled:after,select[class*=" fr-icon-"]:disabled:before,select[class^=fr-fi-]:disabled:after,select[class^=fr-fi-]:disabled:before,select[class^=fr-icon-]:disabled:after,select[class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr/dsfr.min.css b/dsfr/static/dsfr/dist/dsfr/dsfr.min.css index d606d2838..c5cd64b32 100644 --- a/dsfr/static/dsfr/dist/dsfr/dsfr.min.css +++ b/dsfr/static/dsfr/dist/dsfr/dsfr.min.css @@ -1,7 +1,7 @@ @charset "UTF-8"; /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{left:0;position:fixed;top:0}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc],.fr-btn--sort[aria-sorting=desc]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--bordered .fr-table__content td:last-child,.fr-table.fr-table--bordered .fr-table__content th:last-child{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table thead th:last-child{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{padding:0 2.25rem 0 0;position:relative}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:0;top:-.25rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:calc(-.125rem + 1px) calc(.25rem - 1px),calc(-.125rem + 1px) calc(.25rem - 1px);background-size:1.125rem 1.125rem,1.125rem 1.125rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:1rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1.75rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1.75rem 50%,1.75rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1.125rem 1.125rem,1.125rem 1.125rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;min-height:5rem;padding:.5rem 1.5rem .5rem 3.5rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-fieldset .fr-toggle__list li{margin-bottom:1rem}.fr-fieldset .fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{align-items:stretch;display:flex;flex:0 1 auto;flex-direction:column;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);color:var(--text-action-high-grey);font-size:1rem;line-height:1.5rem;padding:.75rem 1rem;text-align:left;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france);position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-nav__link{display:block}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn{align-items:center;display:flex;flex-direction:row;justify-content:space-between}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram>svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */a{--hover-tint:var(--idle);--active-tint:var(--active);color:inherit;text-decoration:var(--text-decoration)}:root{--underline-max-width:100%;--underline-hover-width:0;--underline-idle-width:var(--underline-max-width);--underline-x:calc(var(--underline-max-width)*0);--underline-thickness:0.0625em;--underline-img:linear-gradient(0deg,currentColor,currentColor);--external-link-content:"";--text-decoration:none;--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";--text-spacing:0 0 1.5rem;--title-spacing:0 0 1.5rem;--display-spacing:0 0 2rem;--background-default-grey:var(--grey-1000-50);--background-default-grey-hover:var(--grey-1000-50-hover);--background-default-grey-active:var(--grey-1000-50-active);--background-alt-grey:var(--grey-975-75);--background-alt-grey-hover:var(--grey-975-75-hover);--background-alt-grey-active:var(--grey-975-75-active);--background-alt-blue-france:var(--blue-france-975-75);--background-alt-blue-france-hover:var(--blue-france-975-75-hover);--background-alt-blue-france-active:var(--blue-france-975-75-active);--background-alt-red-marianne:var(--red-marianne-975-75);--background-alt-red-marianne-hover:var(--red-marianne-975-75-hover);--background-alt-red-marianne-active:var(--red-marianne-975-75-active);--background-alt-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--background-alt-green-tilleul-verveine-hover:var(--green-tilleul-verveine-975-75-hover);--background-alt-green-tilleul-verveine-active:var(--green-tilleul-verveine-975-75-active);--background-alt-green-bourgeon:var(--green-bourgeon-975-75);--background-alt-green-bourgeon-hover:var(--green-bourgeon-975-75-hover);--background-alt-green-bourgeon-active:var(--green-bourgeon-975-75-active);--background-alt-green-emeraude:var(--green-emeraude-975-75);--background-alt-green-emeraude-hover:var(--green-emeraude-975-75-hover);--background-alt-green-emeraude-active:var(--green-emeraude-975-75-active);--background-alt-green-menthe:var(--green-menthe-975-75);--background-alt-green-menthe-hover:var(--green-menthe-975-75-hover);--background-alt-green-menthe-active:var(--green-menthe-975-75-active);--background-alt-green-archipel:var(--green-archipel-975-75);--background-alt-green-archipel-hover:var(--green-archipel-975-75-hover);--background-alt-green-archipel-active:var(--green-archipel-975-75-active);--background-alt-blue-ecume:var(--blue-ecume-975-75);--background-alt-blue-ecume-hover:var(--blue-ecume-975-75-hover);--background-alt-blue-ecume-active:var(--blue-ecume-975-75-active);--background-alt-blue-cumulus:var(--blue-cumulus-975-75);--background-alt-blue-cumulus-hover:var(--blue-cumulus-975-75-hover);--background-alt-blue-cumulus-active:var(--blue-cumulus-975-75-active);--background-alt-purple-glycine:var(--purple-glycine-975-75);--background-alt-purple-glycine-hover:var(--purple-glycine-975-75-hover);--background-alt-purple-glycine-active:var(--purple-glycine-975-75-active);--background-alt-pink-macaron:var(--pink-macaron-975-75);--background-alt-pink-macaron-hover:var(--pink-macaron-975-75-hover);--background-alt-pink-macaron-active:var(--pink-macaron-975-75-active);--background-alt-pink-tuile:var(--pink-tuile-975-75);--background-alt-pink-tuile-hover:var(--pink-tuile-975-75-hover);--background-alt-pink-tuile-active:var(--pink-tuile-975-75-active);--background-alt-yellow-tournesol:var(--yellow-tournesol-975-75);--background-alt-yellow-tournesol-hover:var(--yellow-tournesol-975-75-hover);--background-alt-yellow-tournesol-active:var(--yellow-tournesol-975-75-active);--background-alt-yellow-moutarde:var(--yellow-moutarde-975-75);--background-alt-yellow-moutarde-hover:var(--yellow-moutarde-975-75-hover);--background-alt-yellow-moutarde-active:var(--yellow-moutarde-975-75-active);--background-alt-orange-terre-battue:var(--orange-terre-battue-975-75);--background-alt-orange-terre-battue-hover:var(--orange-terre-battue-975-75-hover);--background-alt-orange-terre-battue-active:var(--orange-terre-battue-975-75-active);--background-alt-brown-cafe-creme:var(--brown-cafe-creme-975-75);--background-alt-brown-cafe-creme-hover:var(--brown-cafe-creme-975-75-hover);--background-alt-brown-cafe-creme-active:var(--brown-cafe-creme-975-75-active);--background-alt-brown-caramel:var(--brown-caramel-975-75);--background-alt-brown-caramel-hover:var(--brown-caramel-975-75-hover);--background-alt-brown-caramel-active:var(--brown-caramel-975-75-active);--background-alt-brown-opera:var(--brown-opera-975-75);--background-alt-brown-opera-hover:var(--brown-opera-975-75-hover);--background-alt-brown-opera-active:var(--brown-opera-975-75-active);--background-alt-beige-gris-galet:var(--beige-gris-galet-975-75);--background-alt-beige-gris-galet-hover:var(--beige-gris-galet-975-75-hover);--background-alt-beige-gris-galet-active:var(--beige-gris-galet-975-75-active);--background-contrast-grey:var(--grey-950-100);--background-contrast-grey-hover:var(--grey-950-100-hover);--background-contrast-grey-active:var(--grey-950-100-active);--background-contrast-blue-france:var(--blue-france-950-100);--background-contrast-blue-france-hover:var(--blue-france-950-100-hover);--background-contrast-blue-france-active:var(--blue-france-950-100-active);--background-contrast-red-marianne:var(--red-marianne-950-100);--background-contrast-red-marianne-hover:var(--red-marianne-950-100-hover);--background-contrast-red-marianne-active:var(--red-marianne-950-100-active);--background-contrast-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--background-contrast-green-tilleul-verveine-hover:var(--green-tilleul-verveine-950-100-hover);--background-contrast-green-tilleul-verveine-active:var(--green-tilleul-verveine-950-100-active);--background-contrast-green-bourgeon:var(--green-bourgeon-950-100);--background-contrast-green-bourgeon-hover:var(--green-bourgeon-950-100-hover);--background-contrast-green-bourgeon-active:var(--green-bourgeon-950-100-active);--background-contrast-green-emeraude:var(--green-emeraude-950-100);--background-contrast-green-emeraude-hover:var(--green-emeraude-950-100-hover);--background-contrast-green-emeraude-active:var(--green-emeraude-950-100-active);--background-contrast-green-menthe:var(--green-menthe-950-100);--background-contrast-green-menthe-hover:var(--green-menthe-950-100-hover);--background-contrast-green-menthe-active:var(--green-menthe-950-100-active);--background-contrast-green-archipel:var(--green-archipel-950-100);--background-contrast-green-archipel-hover:var(--green-archipel-950-100-hover);--background-contrast-green-archipel-active:var(--green-archipel-950-100-active);--background-contrast-blue-ecume:var(--blue-ecume-950-100);--background-contrast-blue-ecume-hover:var(--blue-ecume-950-100-hover);--background-contrast-blue-ecume-active:var(--blue-ecume-950-100-active);--background-contrast-blue-cumulus:var(--blue-cumulus-950-100);--background-contrast-blue-cumulus-hover:var(--blue-cumulus-950-100-hover);--background-contrast-blue-cumulus-active:var(--blue-cumulus-950-100-active);--background-contrast-purple-glycine:var(--purple-glycine-950-100);--background-contrast-purple-glycine-hover:var(--purple-glycine-950-100-hover);--background-contrast-purple-glycine-active:var(--purple-glycine-950-100-active);--background-contrast-pink-macaron:var(--pink-macaron-950-100);--background-contrast-pink-macaron-hover:var(--pink-macaron-950-100-hover);--background-contrast-pink-macaron-active:var(--pink-macaron-950-100-active);--background-contrast-pink-tuile:var(--pink-tuile-950-100);--background-contrast-pink-tuile-hover:var(--pink-tuile-950-100-hover);--background-contrast-pink-tuile-active:var(--pink-tuile-950-100-active);--background-contrast-yellow-tournesol:var(--yellow-tournesol-950-100);--background-contrast-yellow-tournesol-hover:var(--yellow-tournesol-950-100-hover);--background-contrast-yellow-tournesol-active:var(--yellow-tournesol-950-100-active);--background-contrast-yellow-moutarde:var(--yellow-moutarde-950-100);--background-contrast-yellow-moutarde-hover:var(--yellow-moutarde-950-100-hover);--background-contrast-yellow-moutarde-active:var(--yellow-moutarde-950-100-active);--background-contrast-orange-terre-battue:var(--orange-terre-battue-950-100);--background-contrast-orange-terre-battue-hover:var(--orange-terre-battue-950-100-hover);--background-contrast-orange-terre-battue-active:var(--orange-terre-battue-950-100-active);--background-contrast-brown-cafe-creme:var(--brown-cafe-creme-950-100);--background-contrast-brown-cafe-creme-hover:var(--brown-cafe-creme-950-100-hover);--background-contrast-brown-cafe-creme-active:var(--brown-cafe-creme-950-100-active);--background-contrast-brown-caramel:var(--brown-caramel-950-100);--background-contrast-brown-caramel-hover:var(--brown-caramel-950-100-hover);--background-contrast-brown-caramel-active:var(--brown-caramel-950-100-active);--background-contrast-brown-opera:var(--brown-opera-950-100);--background-contrast-brown-opera-hover:var(--brown-opera-950-100-hover);--background-contrast-brown-opera-active:var(--brown-opera-950-100-active);--background-contrast-beige-gris-galet:var(--beige-gris-galet-950-100);--background-contrast-beige-gris-galet-hover:var(--beige-gris-galet-950-100-hover);--background-contrast-beige-gris-galet-active:var(--beige-gris-galet-950-100-active);--background-contrast-info:var(--info-950-100);--background-contrast-info-hover:var(--info-950-100-hover);--background-contrast-info-active:var(--info-950-100-active);--background-contrast-success:var(--success-950-100);--background-contrast-success-hover:var(--success-950-100-hover);--background-contrast-success-active:var(--success-950-100-active);--background-contrast-warning:var(--warning-950-100);--background-contrast-warning-hover:var(--warning-950-100-hover);--background-contrast-warning-active:var(--warning-950-100-active);--background-contrast-error:var(--error-950-100);--background-contrast-error-hover:var(--error-950-100-hover);--background-contrast-error-active:var(--error-950-100-active);--background-flat-grey:var(--grey-200-850);--background-flat-blue-france:var(--blue-france-sun-113-625);--background-flat-red-marianne:var(--red-marianne-425-625);--background-flat-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-flat-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-flat-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-flat-green-menthe:var(--green-menthe-sun-373-moon-652);--background-flat-green-archipel:var(--green-archipel-sun-391-moon-716);--background-flat-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-flat-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-flat-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-flat-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-flat-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-flat-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-flat-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-flat-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-flat-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-flat-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-flat-brown-opera:var(--brown-opera-sun-395-moon-820);--background-flat-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-flat-info:var(--info-425-625);--background-flat-success:var(--success-425-625);--background-flat-warning:var(--warning-425-625);--background-flat-error:var(--error-425-625);--background-action-high-grey:var(--grey-200-850);--background-action-high-grey-hover:var(--grey-200-850-hover);--background-action-high-grey-active:var(--grey-200-850-active);--background-action-high-blue-france:var(--blue-france-sun-113-625);--background-action-high-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-action-high-blue-france-active:var(--blue-france-sun-113-625-active);--background-action-high-red-marianne:var(--red-marianne-425-625);--background-action-high-red-marianne-hover:var(--red-marianne-425-625-hover);--background-action-high-red-marianne-active:var(--red-marianne-425-625-active);--background-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--background-action-high-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--background-action-high-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--background-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--background-action-high-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--background-action-high-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--background-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--background-action-high-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--background-action-high-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--background-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--background-action-high-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--background-action-high-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--background-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--background-action-high-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--background-action-high-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--background-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--background-action-high-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--background-action-high-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--background-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--background-action-high-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--background-action-high-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--background-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--background-action-high-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--background-action-high-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--background-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--background-action-high-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--background-action-high-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--background-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--background-action-high-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--background-action-high-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--background-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--background-action-high-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--background-action-high-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--background-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--background-action-high-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--background-action-high-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--background-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--background-action-high-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--background-action-high-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--background-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--background-action-high-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--background-action-high-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--background-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--background-action-high-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--background-action-high-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--background-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--background-action-high-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--background-action-high-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--background-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--background-action-high-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--background-action-high-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--background-action-high-info:var(--info-425-625);--background-action-high-info-hover:var(--info-425-625-hover);--background-action-high-info-active:var(--info-425-625-active);--background-action-high-success:var(--success-425-625);--background-action-high-success-hover:var(--success-425-625-hover);--background-action-high-success-active:var(--success-425-625-active);--background-action-high-warning:var(--warning-425-625);--background-action-high-warning-hover:var(--warning-425-625-hover);--background-action-high-warning-active:var(--warning-425-625-active);--background-action-high-error:var(--error-425-625);--background-action-high-error-hover:var(--error-425-625-hover);--background-action-high-error-active:var(--error-425-625-active);--background-action-low-blue-france:var(--blue-france-925-125);--background-action-low-blue-france-hover:var(--blue-france-925-125-hover);--background-action-low-blue-france-active:var(--blue-france-925-125-active);--background-action-low-red-marianne:var(--red-marianne-925-125);--background-action-low-red-marianne-hover:var(--red-marianne-925-125-hover);--background-action-low-red-marianne-active:var(--red-marianne-925-125-active);--background-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--background-action-low-green-tilleul-verveine-hover:var(--green-tilleul-verveine-925-125-hover);--background-action-low-green-tilleul-verveine-active:var(--green-tilleul-verveine-925-125-active);--background-action-low-green-bourgeon:var(--green-bourgeon-925-125);--background-action-low-green-bourgeon-hover:var(--green-bourgeon-925-125-hover);--background-action-low-green-bourgeon-active:var(--green-bourgeon-925-125-active);--background-action-low-green-emeraude:var(--green-emeraude-925-125);--background-action-low-green-emeraude-hover:var(--green-emeraude-925-125-hover);--background-action-low-green-emeraude-active:var(--green-emeraude-925-125-active);--background-action-low-green-menthe:var(--green-menthe-925-125);--background-action-low-green-menthe-hover:var(--green-menthe-925-125-hover);--background-action-low-green-menthe-active:var(--green-menthe-925-125-active);--background-action-low-green-archipel:var(--green-archipel-925-125);--background-action-low-green-archipel-hover:var(--green-archipel-925-125-hover);--background-action-low-green-archipel-active:var(--green-archipel-925-125-active);--background-action-low-blue-ecume:var(--blue-ecume-925-125);--background-action-low-blue-ecume-hover:var(--blue-ecume-925-125-hover);--background-action-low-blue-ecume-active:var(--blue-ecume-925-125-active);--background-action-low-blue-cumulus:var(--blue-cumulus-925-125);--background-action-low-blue-cumulus-hover:var(--blue-cumulus-925-125-hover);--background-action-low-blue-cumulus-active:var(--blue-cumulus-925-125-active);--background-action-low-purple-glycine:var(--purple-glycine-925-125);--background-action-low-purple-glycine-hover:var(--purple-glycine-925-125-hover);--background-action-low-purple-glycine-active:var(--purple-glycine-925-125-active);--background-action-low-pink-macaron:var(--pink-macaron-925-125);--background-action-low-pink-macaron-hover:var(--pink-macaron-925-125-hover);--background-action-low-pink-macaron-active:var(--pink-macaron-925-125-active);--background-action-low-pink-tuile:var(--pink-tuile-925-125);--background-action-low-pink-tuile-hover:var(--pink-tuile-925-125-hover);--background-action-low-pink-tuile-active:var(--pink-tuile-925-125-active);--background-action-low-yellow-tournesol:var(--yellow-tournesol-925-125);--background-action-low-yellow-tournesol-hover:var(--yellow-tournesol-925-125-hover);--background-action-low-yellow-tournesol-active:var(--yellow-tournesol-925-125-active);--background-action-low-yellow-moutarde:var(--yellow-moutarde-925-125);--background-action-low-yellow-moutarde-hover:var(--yellow-moutarde-925-125-hover);--background-action-low-yellow-moutarde-active:var(--yellow-moutarde-925-125-active);--background-action-low-orange-terre-battue:var(--orange-terre-battue-925-125);--background-action-low-orange-terre-battue-hover:var(--orange-terre-battue-925-125-hover);--background-action-low-orange-terre-battue-active:var(--orange-terre-battue-925-125-active);--background-action-low-brown-cafe-creme:var(--brown-cafe-creme-925-125);--background-action-low-brown-cafe-creme-hover:var(--brown-cafe-creme-925-125-hover);--background-action-low-brown-cafe-creme-active:var(--brown-cafe-creme-925-125-active);--background-action-low-brown-caramel:var(--brown-caramel-925-125);--background-action-low-brown-caramel-hover:var(--brown-caramel-925-125-hover);--background-action-low-brown-caramel-active:var(--brown-caramel-925-125-active);--background-action-low-brown-opera:var(--brown-opera-925-125);--background-action-low-brown-opera-hover:var(--brown-opera-925-125-hover);--background-action-low-brown-opera-active:var(--brown-opera-925-125-active);--background-action-low-beige-gris-galet:var(--beige-gris-galet-925-125);--background-action-low-beige-gris-galet-hover:var(--beige-gris-galet-925-125-hover);--background-action-low-beige-gris-galet-active:var(--beige-gris-galet-925-125-active);--background-active-blue-france:var(--blue-france-sun-113-625);--background-active-blue-france-hover:var(--blue-france-sun-113-625-hover);--background-active-blue-france-active:var(--blue-france-sun-113-625-active);--background-active-red-marianne:var(--red-marianne-425-625);--background-active-red-marianne-hover:var(--red-marianne-425-625-hover);--background-active-red-marianne-active:var(--red-marianne-425-625-active);--background-open-blue-france:var(--blue-france-925-125);--background-open-blue-france-hover:var(--blue-france-925-125-hover);--background-open-blue-france-active:var(--blue-france-925-125-active);--background-open-red-marianne:var(--red-marianne-925-125);--background-open-red-marianne-hover:var(--red-marianne-925-125-hover);--background-open-red-marianne-active:var(--red-marianne-925-125-active);--background-disabled-grey:var(--grey-925-125);--background-raised-grey:var(--grey-1000-75);--background-raised-grey-hover:var(--grey-1000-75-hover);--background-raised-grey-active:var(--grey-1000-75-active);--background-overlap-grey:var(--grey-1000-100);--background-overlap-grey-hover:var(--grey-1000-100-hover);--background-overlap-grey-active:var(--grey-1000-100-active);--background-lifted-grey:var(--grey-1000-75);--background-lifted-grey-hover:var(--grey-1000-75-hover);--background-lifted-grey-active:var(--grey-1000-75-active);--background-alt-raised-grey:var(--grey-975-100);--background-alt-raised-grey-hover:var(--grey-975-100-hover);--background-alt-raised-grey-active:var(--grey-975-100-active);--background-alt-overlap-grey:var(--grey-975-125);--background-alt-overlap-grey-hover:var(--grey-975-125-hover);--background-alt-overlap-grey-active:var(--grey-975-125-active);--background-contrast-raised-grey:var(--grey-950-125);--background-contrast-raised-grey-hover:var(--grey-950-125-hover);--background-contrast-raised-grey-active:var(--grey-950-125-active);--background-contrast-overlap-grey:var(--grey-950-150);--background-contrast-overlap-grey-hover:var(--grey-950-150-hover);--background-contrast-overlap-grey-active:var(--grey-950-150-active);--text-default-grey:var(--grey-200-850);--text-default-info:var(--info-425-625);--text-default-success:var(--success-425-625);--text-default-warning:var(--warning-425-625);--text-default-error:var(--error-425-625);--text-action-high-grey:var(--grey-50-1000);--text-action-high-blue-france:var(--blue-france-sun-113-625);--text-action-high-red-marianne:var(--red-marianne-425-625);--text-action-high-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-action-high-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-action-high-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-action-high-green-menthe:var(--green-menthe-sun-373-moon-652);--text-action-high-green-archipel:var(--green-archipel-sun-391-moon-716);--text-action-high-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-action-high-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-action-high-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-action-high-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-action-high-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-action-high-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-action-high-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-action-high-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-action-high-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-action-high-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-action-high-brown-opera:var(--brown-opera-sun-395-moon-820);--text-action-high-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-title-grey:var(--grey-50-1000);--text-title-blue-france:var(--blue-france-sun-113-625);--text-title-red-marianne:var(--red-marianne-425-625);--text-label-grey:var(--grey-50-1000);--text-label-blue-france:var(--blue-france-sun-113-625);--text-label-red-marianne:var(--red-marianne-425-625);--text-label-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--text-label-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--text-label-green-emeraude:var(--green-emeraude-sun-425-moon-753);--text-label-green-menthe:var(--green-menthe-sun-373-moon-652);--text-label-green-archipel:var(--green-archipel-sun-391-moon-716);--text-label-blue-ecume:var(--blue-ecume-sun-247-moon-675);--text-label-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--text-label-purple-glycine:var(--purple-glycine-sun-319-moon-630);--text-label-pink-macaron:var(--pink-macaron-sun-406-moon-833);--text-label-pink-tuile:var(--pink-tuile-sun-425-moon-750);--text-label-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--text-label-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--text-label-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--text-label-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--text-label-brown-caramel:var(--brown-caramel-sun-425-moon-901);--text-label-brown-opera:var(--brown-opera-sun-395-moon-820);--text-label-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--text-active-grey:var(--grey-50-1000);--text-active-blue-france:var(--blue-france-sun-113-625);--text-active-red-marianne:var(--red-marianne-425-625);--text-mention-grey:var(--grey-425-625);--text-inverted-grey:var(--grey-1000-50);--text-inverted-blue-france:var(--blue-france-975-sun-113);--text-inverted-red-marianne:var(--red-marianne-975-75);--text-inverted-info:var(--info-975-75);--text-inverted-success:var(--success-975-75);--text-inverted-warning:var(--warning-975-75);--text-inverted-error:var(--error-975-75);--text-inverted-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--text-inverted-green-bourgeon:var(--green-bourgeon-975-75);--text-inverted-green-emeraude:var(--green-emeraude-975-75);--text-inverted-green-menthe:var(--green-menthe-975-75);--text-inverted-green-archipel:var(--green-archipel-975-75);--text-inverted-blue-ecume:var(--blue-ecume-975-75);--text-inverted-blue-cumulus:var(--blue-cumulus-975-75);--text-inverted-purple-glycine:var(--purple-glycine-975-75);--text-inverted-pink-macaron:var(--pink-macaron-975-75);--text-inverted-pink-tuile:var(--pink-tuile-975-75);--text-inverted-yellow-tournesol:var(--yellow-tournesol-975-75);--text-inverted-yellow-moutarde:var(--yellow-moutarde-975-75);--text-inverted-orange-terre-battue:var(--orange-terre-battue-975-75);--text-inverted-brown-cafe-creme:var(--brown-cafe-creme-975-75);--text-inverted-brown-caramel:var(--brown-caramel-975-75);--text-inverted-brown-opera:var(--brown-opera-975-75);--text-inverted-beige-gris-galet:var(--beige-gris-galet-975-75);--text-disabled-grey:var(--grey-625-425);--text-black-white-grey:var(--grey-0-1000);--border-default-grey:var(--grey-900-175);--border-default-blue-france:var(--blue-france-main-525);--border-default-red-marianne:var(--red-marianne-main-472);--border-default-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--border-default-green-bourgeon:var(--green-bourgeon-main-640);--border-default-green-emeraude:var(--green-emeraude-main-632);--border-default-green-menthe:var(--green-menthe-main-548);--border-default-green-archipel:var(--green-archipel-main-557);--border-default-blue-ecume:var(--blue-ecume-main-400);--border-default-blue-cumulus:var(--blue-cumulus-main-526);--border-default-purple-glycine:var(--purple-glycine-main-494);--border-default-pink-macaron:var(--pink-macaron-main-689);--border-default-pink-tuile:var(--pink-tuile-main-556);--border-default-yellow-tournesol:var(--yellow-tournesol-main-731);--border-default-yellow-moutarde:var(--yellow-moutarde-main-679);--border-default-orange-terre-battue:var(--orange-terre-battue-main-645);--border-default-brown-cafe-creme:var(--brown-cafe-creme-main-782);--border-default-brown-caramel:var(--brown-caramel-main-648);--border-default-brown-opera:var(--brown-opera-main-680);--border-default-beige-gris-galet:var(--beige-gris-galet-main-702);--border-contrast-grey:var(--grey-625-425);--border-active-blue-france:var(--blue-france-sun-113-625);--border-active-red-marianne:var(--red-marianne-425-625);--border-action-high-grey:var(--grey-50-1000);--border-action-high-blue-france:var(--blue-france-sun-113-625);--border-action-high-red-marianne:var(--red-marianne-425-625);--border-action-high-info:var(--info-425-625);--border-action-high-success:var(--success-425-625);--border-action-high-warning:var(--warning-425-625);--border-action-high-error:var(--error-425-625);--border-action-low-blue-france:var(--blue-france-850-200);--border-action-low-red-marianne:var(--red-marianne-850-200);--border-action-low-green-tilleul-verveine:var(--green-tilleul-verveine-850-200);--border-action-low-green-bourgeon:var(--green-bourgeon-850-200);--border-action-low-green-emeraude:var(--green-emeraude-850-200);--border-action-low-green-menthe:var(--green-menthe-850-200);--border-action-low-green-archipel:var(--green-archipel-850-200);--border-action-low-blue-ecume:var(--blue-ecume-850-200);--border-action-low-blue-cumulus:var(--blue-cumulus-850-200);--border-action-low-purple-glycine:var(--purple-glycine-850-200);--border-action-low-pink-macaron:var(--pink-macaron-850-200);--border-action-low-pink-tuile:var(--pink-tuile-850-200);--border-action-low-yellow-tournesol:var(--yellow-tournesol-850-200);--border-action-low-yellow-moutarde:var(--yellow-moutarde-850-200);--border-action-low-orange-terre-battue:var(--orange-terre-battue-850-200);--border-action-low-brown-cafe-creme:var(--brown-cafe-creme-850-200);--border-action-low-brown-caramel:var(--brown-caramel-850-200);--border-action-low-brown-opera:var(--brown-opera-850-200);--border-action-low-beige-gris-galet:var(--beige-gris-galet-850-200);--border-open-blue-france:var(--blue-france-925-125);--border-open-red-marianne:var(--red-marianne-925-125);--border-plain-grey:var(--grey-200-850);--border-plain-blue-france:var(--blue-france-sun-113-625);--border-plain-red-marianne:var(--red-marianne-425-625);--border-plain-info:var(--info-425-625);--border-plain-success:var(--success-425-625);--border-plain-warning:var(--warning-425-625);--border-plain-error:var(--error-425-625);--border-plain-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--border-plain-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--border-plain-green-emeraude:var(--green-emeraude-sun-425-moon-753);--border-plain-green-menthe:var(--green-menthe-sun-373-moon-652);--border-plain-green-archipel:var(--green-archipel-sun-391-moon-716);--border-plain-blue-ecume:var(--blue-ecume-sun-247-moon-675);--border-plain-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--border-plain-purple-glycine:var(--purple-glycine-sun-319-moon-630);--border-plain-pink-macaron:var(--pink-macaron-sun-406-moon-833);--border-plain-pink-tuile:var(--pink-tuile-sun-425-moon-750);--border-plain-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--border-plain-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--border-plain-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--border-plain-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--border-plain-brown-caramel:var(--brown-caramel-sun-425-moon-901);--border-plain-brown-opera:var(--brown-opera-sun-395-moon-820);--border-plain-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--border-disabled-grey:var(--grey-925-125);--artwork-major-blue-france:var(--blue-france-sun-113-625);--artwork-major-blue-france-hover:var(--blue-france-sun-113-625-hover);--artwork-major-blue-france-active:var(--blue-france-sun-113-625-active);--artwork-major-red-marianne:var(--red-marianne-425-625);--artwork-major-red-marianne-hover:var(--red-marianne-425-625-hover);--artwork-major-red-marianne-active:var(--red-marianne-425-625-active);--artwork-major-green-tilleul-verveine:var(--green-tilleul-verveine-sun-418-moon-817);--artwork-major-green-tilleul-verveine-hover:var(--green-tilleul-verveine-sun-418-moon-817-hover);--artwork-major-green-tilleul-verveine-active:var(--green-tilleul-verveine-sun-418-moon-817-active);--artwork-major-green-bourgeon:var(--green-bourgeon-sun-425-moon-759);--artwork-major-green-bourgeon-hover:var(--green-bourgeon-sun-425-moon-759-hover);--artwork-major-green-bourgeon-active:var(--green-bourgeon-sun-425-moon-759-active);--artwork-major-green-emeraude:var(--green-emeraude-sun-425-moon-753);--artwork-major-green-emeraude-hover:var(--green-emeraude-sun-425-moon-753-hover);--artwork-major-green-emeraude-active:var(--green-emeraude-sun-425-moon-753-active);--artwork-major-green-menthe:var(--green-menthe-sun-373-moon-652);--artwork-major-green-menthe-hover:var(--green-menthe-sun-373-moon-652-hover);--artwork-major-green-menthe-active:var(--green-menthe-sun-373-moon-652-active);--artwork-major-green-archipel:var(--green-archipel-sun-391-moon-716);--artwork-major-green-archipel-hover:var(--green-archipel-sun-391-moon-716-hover);--artwork-major-green-archipel-active:var(--green-archipel-sun-391-moon-716-active);--artwork-major-blue-ecume:var(--blue-ecume-sun-247-moon-675);--artwork-major-blue-ecume-hover:var(--blue-ecume-sun-247-moon-675-hover);--artwork-major-blue-ecume-active:var(--blue-ecume-sun-247-moon-675-active);--artwork-major-blue-cumulus:var(--blue-cumulus-sun-368-moon-732);--artwork-major-blue-cumulus-hover:var(--blue-cumulus-sun-368-moon-732-hover);--artwork-major-blue-cumulus-active:var(--blue-cumulus-sun-368-moon-732-active);--artwork-major-purple-glycine:var(--purple-glycine-sun-319-moon-630);--artwork-major-purple-glycine-hover:var(--purple-glycine-sun-319-moon-630-hover);--artwork-major-purple-glycine-active:var(--purple-glycine-sun-319-moon-630-active);--artwork-major-pink-macaron:var(--pink-macaron-sun-406-moon-833);--artwork-major-pink-macaron-hover:var(--pink-macaron-sun-406-moon-833-hover);--artwork-major-pink-macaron-active:var(--pink-macaron-sun-406-moon-833-active);--artwork-major-pink-tuile:var(--pink-tuile-sun-425-moon-750);--artwork-major-pink-tuile-hover:var(--pink-tuile-sun-425-moon-750-hover);--artwork-major-pink-tuile-active:var(--pink-tuile-sun-425-moon-750-active);--artwork-major-yellow-tournesol:var(--yellow-tournesol-sun-407-moon-922);--artwork-major-yellow-tournesol-hover:var(--yellow-tournesol-sun-407-moon-922-hover);--artwork-major-yellow-tournesol-active:var(--yellow-tournesol-sun-407-moon-922-active);--artwork-major-yellow-moutarde:var(--yellow-moutarde-sun-348-moon-860);--artwork-major-yellow-moutarde-hover:var(--yellow-moutarde-sun-348-moon-860-hover);--artwork-major-yellow-moutarde-active:var(--yellow-moutarde-sun-348-moon-860-active);--artwork-major-orange-terre-battue:var(--orange-terre-battue-sun-370-moon-672);--artwork-major-orange-terre-battue-hover:var(--orange-terre-battue-sun-370-moon-672-hover);--artwork-major-orange-terre-battue-active:var(--orange-terre-battue-sun-370-moon-672-active);--artwork-major-brown-cafe-creme:var(--brown-cafe-creme-sun-383-moon-885);--artwork-major-brown-cafe-creme-hover:var(--brown-cafe-creme-sun-383-moon-885-hover);--artwork-major-brown-cafe-creme-active:var(--brown-cafe-creme-sun-383-moon-885-active);--artwork-major-brown-caramel:var(--brown-caramel-sun-425-moon-901);--artwork-major-brown-caramel-hover:var(--brown-caramel-sun-425-moon-901-hover);--artwork-major-brown-caramel-active:var(--brown-caramel-sun-425-moon-901-active);--artwork-major-brown-opera:var(--brown-opera-sun-395-moon-820);--artwork-major-brown-opera-hover:var(--brown-opera-sun-395-moon-820-hover);--artwork-major-brown-opera-active:var(--brown-opera-sun-395-moon-820-active);--artwork-major-beige-gris-galet:var(--beige-gris-galet-sun-407-moon-821);--artwork-major-beige-gris-galet-hover:var(--beige-gris-galet-sun-407-moon-821-hover);--artwork-major-beige-gris-galet-active:var(--beige-gris-galet-sun-407-moon-821-active);--artwork-minor-blue-france:var(--blue-france-main-525);--artwork-minor-red-marianne:var(--red-marianne-main-472);--artwork-minor-green-tilleul-verveine:var(--green-tilleul-verveine-main-707);--artwork-minor-green-bourgeon:var(--green-bourgeon-main-640);--artwork-minor-green-emeraude:var(--green-emeraude-main-632);--artwork-minor-green-menthe:var(--green-menthe-main-548);--artwork-minor-green-archipel:var(--green-archipel-main-557);--artwork-minor-blue-ecume:var(--blue-ecume-main-400);--artwork-minor-blue-cumulus:var(--blue-cumulus-main-526);--artwork-minor-purple-glycine:var(--purple-glycine-main-494);--artwork-minor-pink-macaron:var(--pink-macaron-main-689);--artwork-minor-pink-tuile:var(--pink-tuile-main-556);--artwork-minor-yellow-tournesol:var(--yellow-tournesol-main-731);--artwork-minor-yellow-moutarde:var(--yellow-moutarde-main-679);--artwork-minor-orange-terre-battue:var(--orange-terre-battue-main-645);--artwork-minor-brown-cafe-creme:var(--brown-cafe-creme-main-782);--artwork-minor-brown-caramel:var(--brown-caramel-main-648);--artwork-minor-brown-opera:var(--brown-opera-main-680);--artwork-minor-beige-gris-galet:var(--beige-gris-galet-main-702);--artwork-decorative-grey:var(--grey-950-100);--artwork-decorative-blue-france:var(--blue-france-950-100);--artwork-decorative-red-marianne:var(--red-marianne-950-100);--artwork-decorative-green-tilleul-verveine:var(--green-tilleul-verveine-950-100);--artwork-decorative-green-bourgeon:var(--green-bourgeon-950-100);--artwork-decorative-green-emeraude:var(--green-emeraude-950-100);--artwork-decorative-green-menthe:var(--green-menthe-950-100);--artwork-decorative-green-archipel:var(--green-archipel-950-100);--artwork-decorative-blue-ecume:var(--blue-ecume-950-100);--artwork-decorative-blue-cumulus:var(--blue-cumulus-950-100);--artwork-decorative-purple-glycine:var(--purple-glycine-950-100);--artwork-decorative-pink-macaron:var(--pink-macaron-950-100);--artwork-decorative-pink-tuile:var(--pink-tuile-950-100);--artwork-decorative-yellow-tournesol:var(--yellow-tournesol-950-100);--artwork-decorative-yellow-moutarde:var(--yellow-moutarde-950-100);--artwork-decorative-orange-terre-battue:var(--orange-terre-battue-950-100);--artwork-decorative-brown-cafe-creme:var(--brown-cafe-creme-950-100);--artwork-decorative-brown-caramel:var(--brown-caramel-950-100);--artwork-decorative-brown-opera:var(--brown-opera-950-100);--artwork-decorative-beige-gris-galet:var(--beige-gris-galet-950-100);--artwork-background-grey:var(--grey-975-75);--artwork-background-blue-france:var(--blue-france-975-75);--artwork-background-red-marianne:var(--red-marianne-975-75);--artwork-background-green-tilleul-verveine:var(--green-tilleul-verveine-975-75);--artwork-background-green-bourgeon:var(--green-bourgeon-975-75);--artwork-background-green-emeraude:var(--green-emeraude-975-75);--artwork-background-green-menthe:var(--green-menthe-975-75);--artwork-background-green-archipel:var(--green-archipel-975-75);--artwork-background-blue-ecume:var(--blue-ecume-975-75);--artwork-background-blue-cumulus:var(--blue-cumulus-975-75);--artwork-background-purple-glycine:var(--purple-glycine-975-75);--artwork-background-pink-macaron:var(--pink-macaron-975-75);--artwork-background-pink-tuile:var(--pink-tuile-975-75);--artwork-background-yellow-tournesol:var(--yellow-tournesol-975-75);--artwork-background-yellow-moutarde:var(--yellow-moutarde-975-75);--artwork-background-orange-terre-battue:var(--orange-terre-battue-975-75);--artwork-background-brown-cafe-creme:var(--brown-cafe-creme-975-75);--artwork-background-brown-caramel:var(--brown-caramel-975-75);--artwork-background-brown-opera:var(--brown-opera-975-75);--artwork-background-beige-gris-galet:var(--beige-gris-galet-975-75);--artwork-motif-grey:var(--grey-925-125);--artwork-motif-blue-france:var(--blue-france-925-125);--artwork-motif-red-marianne:var(--red-marianne-925-125);--artwork-motif-green-tilleul-verveine:var(--green-tilleul-verveine-925-125);--artwork-motif-green-bourgeon:var(--green-bourgeon-925-125);--artwork-motif-green-emeraude:var(--green-emeraude-925-125);--artwork-motif-green-menthe:var(--green-menthe-925-125);--artwork-motif-green-archipel:var(--green-archipel-925-125);--artwork-motif-blue-ecume:var(--blue-ecume-925-125);--artwork-motif-blue-cumulus:var(--blue-cumulus-925-125);--artwork-motif-purple-glycine:var(--purple-glycine-925-125);--artwork-motif-pink-macaron:var(--pink-macaron-925-125);--artwork-motif-pink-tuile:var(--pink-tuile-925-125);--artwork-motif-yellow-tournesol:var(--yellow-tournesol-925-125);--artwork-motif-yellow-moutarde:var(--yellow-moutarde-925-125);--artwork-motif-orange-terre-battue:var(--orange-terre-battue-925-125);--artwork-motif-brown-cafe-creme:var(--brown-cafe-creme-925-125);--artwork-motif-brown-caramel:var(--brown-caramel-925-125);--artwork-motif-brown-opera:var(--brown-opera-925-125);--artwork-motif-beige-gris-galet:var(--beige-gris-galet-925-125);--grey-1000-50:#fff;--grey-1000-50-hover:#f6f6f6;--grey-1000-50-active:#ededed;--grey-975-75:#f6f6f6;--grey-975-75-hover:#dfdfdf;--grey-975-75-active:#cfcfcf;--grey-950-100:#eee;--grey-950-100-hover:#d2d2d2;--grey-950-100-active:#c1c1c1;--grey-200-850:#3a3a3a;--grey-200-850-hover:#616161;--grey-200-850-active:#777;--grey-925-125:#e5e5e5;--grey-1000-75:#fff;--grey-1000-75-hover:#f6f6f6;--grey-1000-75-active:#ededed;--grey-1000-100:#fff;--grey-1000-100-hover:#f6f6f6;--grey-1000-100-active:#ededed;--grey-975-100:#f6f6f6;--grey-975-100-hover:#dfdfdf;--grey-975-100-active:#cfcfcf;--grey-975-125:#f6f6f6;--grey-975-125-hover:#dfdfdf;--grey-975-125-active:#cfcfcf;--grey-950-125:#eee;--grey-950-125-hover:#d2d2d2;--grey-950-125-active:#c1c1c1;--grey-950-150:#eee;--grey-950-150-hover:#d2d2d2;--grey-950-150-active:#c1c1c1;--grey-50-1000:#161616;--grey-425-625:#666;--grey-625-425:#929292;--grey-0-1000:#000;--grey-900-175:#ddd;--blue-france-975-75:#f5f5fe;--blue-france-975-75-hover:#dcdcfc;--blue-france-975-75-active:#cbcbfa;--blue-france-950-100:#ececfe;--blue-france-950-100-hover:#cecefc;--blue-france-950-100-active:#bbbbfc;--blue-france-sun-113-625:#000091;--blue-france-sun-113-625-hover:#1212ff;--blue-france-sun-113-625-active:#2323ff;--blue-france-925-125:#e3e3fd;--blue-france-925-125-hover:#c1c1fb;--blue-france-925-125-active:#adadf9;--blue-france-975-sun-113:#f5f5fe;--blue-france-main-525:#6a6af4;--blue-france-850-200:#cacafb;--red-marianne-975-75:#fef4f4;--red-marianne-975-75-hover:#fcd7d7;--red-marianne-975-75-active:#fac4c4;--red-marianne-950-100:#fee9e9;--red-marianne-950-100-hover:#fdc5c5;--red-marianne-950-100-active:#fcafaf;--red-marianne-425-625:#c9191e;--red-marianne-425-625-hover:#f93f42;--red-marianne-425-625-active:#f95a5c;--red-marianne-925-125:#fddede;--red-marianne-925-125-hover:#fbb6b6;--red-marianne-925-125-active:#fa9e9e;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#fcbfbf;--info-950-100:#e8edff;--info-950-100-hover:#c2d1ff;--info-950-100-active:#a9bfff;--info-425-625:#0063cb;--info-425-625-hover:#3b87ff;--info-425-625-active:#6798ff;--info-975-75:#f4f6ff;--success-950-100:#b8fec9;--success-950-100-hover:#46fd89;--success-950-100-active:#34eb7b;--success-425-625:#18753c;--success-425-625-hover:#27a959;--success-425-625-active:#2fc368;--success-975-75:#dffee6;--warning-950-100:#ffe9e6;--warning-950-100-hover:#ffc6bd;--warning-950-100-active:#ffb0a2;--warning-425-625:#b34000;--warning-425-625-hover:#ff6218;--warning-425-625-active:#ff7a55;--warning-975-75:#fff4f3;--error-950-100:#ffe9e9;--error-950-100-hover:#ffc5c5;--error-950-100-active:#ffafaf;--error-425-625:#ce0500;--error-425-625-hover:#ff2725;--error-425-625-active:#ff4140;--error-975-75:#fff4f4;--green-tilleul-verveine-975-75:#fef7da;--green-tilleul-verveine-975-75-hover:#fce552;--green-tilleul-verveine-975-75-active:#ebd54c;--green-tilleul-verveine-950-100:#fceeac;--green-tilleul-verveine-950-100-hover:#e8d45c;--green-tilleul-verveine-950-100-active:#d4c254;--green-tilleul-verveine-sun-418-moon-817:#66673d;--green-tilleul-verveine-sun-418-moon-817-hover:#929359;--green-tilleul-verveine-sun-418-moon-817-active:#a7a967;--green-tilleul-verveine-925-125:#fbe769;--green-tilleul-verveine-925-125-hover:#d7c655;--green-tilleul-verveine-925-125-active:#c2b24c;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#e2cf58;--green-bourgeon-975-75:#e6feda;--green-bourgeon-975-75-hover:#a7fc62;--green-bourgeon-975-75-active:#98ed4d;--green-bourgeon-950-100:#c9fcac;--green-bourgeon-950-100-hover:#9ae95d;--green-bourgeon-950-100-active:#8dd555;--green-bourgeon-sun-425-moon-759:#447049;--green-bourgeon-sun-425-moon-759-hover:#639f6a;--green-bourgeon-sun-425-moon-759-active:#72b77a;--green-bourgeon-925-125:#a9fb68;--green-bourgeon-925-125-hover:#8ed654;--green-bourgeon-925-125-active:#7fc04b;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#95e257;--green-emeraude-975-75:#e3fdeb;--green-emeraude-975-75-hover:#94f9b9;--green-emeraude-975-75-active:#6df1a3;--green-emeraude-950-100:#c3fad5;--green-emeraude-950-100-hover:#77eda5;--green-emeraude-950-100-active:#6dd897;--green-emeraude-sun-425-moon-753:#297254;--green-emeraude-sun-425-moon-753-hover:#3ea47a;--green-emeraude-sun-425-moon-753-active:#49bc8d;--green-emeraude-925-125:#9ef9be;--green-emeraude-925-125-hover:#69df97;--green-emeraude-925-125-active:#5ec988;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#6fe49d;--green-menthe-975-75:#dffdf7;--green-menthe-975-75-hover:#84f9e7;--green-menthe-975-75-active:#70ebd8;--green-menthe-950-100:#bafaee;--green-menthe-950-100-hover:#79e7d5;--green-menthe-950-100-active:#6fd3c3;--green-menthe-sun-373-moon-652:#37635f;--green-menthe-sun-373-moon-652-hover:#53918c;--green-menthe-sun-373-moon-652-active:#62a9a2;--green-menthe-925-125:#8bf8e7;--green-menthe-925-125-hover:#6ed5c5;--green-menthe-925-125-active:#62bfb1;--green-menthe-main-548:#009081;--green-menthe-850-200:#73e0cf;--green-archipel-975-75:#e5fbfd;--green-archipel-975-75-hover:#99f2f8;--green-archipel-975-75-active:#73e9f0;--green-archipel-950-100:#c7f6fc;--green-archipel-950-100-hover:#64ecf8;--green-archipel-950-100-active:#5bd8e3;--green-archipel-sun-391-moon-716:#006a6f;--green-archipel-sun-391-moon-716-hover:#009fa7;--green-archipel-sun-391-moon-716-active:#00bbc3;--green-archipel-925-125:#a6f2fa;--green-archipel-925-125-hover:#62dbe5;--green-archipel-925-125-active:#58c5cf;--green-archipel-main-557:#009099;--green-archipel-850-200:#60e0eb;--blue-ecume-975-75:#f4f6fe;--blue-ecume-975-75-hover:#d7dffb;--blue-ecume-975-75-active:#c3cffa;--blue-ecume-950-100:#e9edfe;--blue-ecume-950-100-hover:#c5d0fc;--blue-ecume-950-100-active:#adbffc;--blue-ecume-sun-247-moon-675:#2f4077;--blue-ecume-sun-247-moon-675-hover:#4e68bb;--blue-ecume-sun-247-moon-675-active:#667dcf;--blue-ecume-925-125:#dee5fd;--blue-ecume-925-125-hover:#b4c5fb;--blue-ecume-925-125-active:#99b3f9;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#bfccfb;--blue-cumulus-975-75:#f3f6fe;--blue-cumulus-975-75-hover:#d3dffc;--blue-cumulus-975-75-active:#bed0fa;--blue-cumulus-950-100:#e6eefe;--blue-cumulus-950-100-hover:#bcd3fc;--blue-cumulus-950-100-active:#9fc3fc;--blue-cumulus-sun-368-moon-732:#3558a2;--blue-cumulus-sun-368-moon-732-hover:#5982e0;--blue-cumulus-sun-368-moon-732-active:#7996e6;--blue-cumulus-925-125:#dae6fd;--blue-cumulus-925-125-hover:#a9c8fb;--blue-cumulus-925-125-active:#8ab8f9;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#b6cffb;--purple-glycine-975-75:#fef3fd;--purple-glycine-975-75-hover:#fcd4f8;--purple-glycine-975-75-active:#fabff5;--purple-glycine-950-100:#fee7fc;--purple-glycine-950-100-hover:#fdc0f8;--purple-glycine-950-100-active:#fca8f6;--purple-glycine-sun-319-moon-630:#6e445a;--purple-glycine-sun-319-moon-630-hover:#a66989;--purple-glycine-sun-319-moon-630-active:#bb7f9e;--purple-glycine-925-125:#fddbfa;--purple-glycine-925-125-hover:#fbaff5;--purple-glycine-925-125-active:#fa96f2;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#fbb8f6;--pink-macaron-975-75:#fef4f2;--pink-macaron-975-75-hover:#fcd8d0;--pink-macaron-975-75-active:#fac5b8;--pink-macaron-950-100:#fee9e6;--pink-macaron-950-100-hover:#fdc6bd;--pink-macaron-950-100-active:#fcb0a2;--pink-macaron-sun-406-moon-833:#8d533e;--pink-macaron-sun-406-moon-833-hover:#ca795c;--pink-macaron-sun-406-moon-833-active:#e08e73;--pink-macaron-925-125:#fddfda;--pink-macaron-925-125-hover:#fbb8ab;--pink-macaron-925-125-active:#faa18d;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#fcc0b4;--pink-tuile-975-75:#fef4f3;--pink-tuile-975-75-hover:#fcd7d3;--pink-tuile-975-75-active:#fac4be;--pink-tuile-950-100:#fee9e7;--pink-tuile-950-100-hover:#fdc6c0;--pink-tuile-950-100-active:#fcb0a7;--pink-tuile-sun-425-moon-750:#a94645;--pink-tuile-sun-425-moon-750-hover:#d5706f;--pink-tuile-sun-425-moon-750-active:#da8a89;--pink-tuile-925-125:#fddfdb;--pink-tuile-925-125-hover:#fbb8ad;--pink-tuile-925-125-active:#faa191;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#fcbfb7;--yellow-tournesol-975-75:#fef6e3;--yellow-tournesol-975-75-hover:#fce086;--yellow-tournesol-975-75-active:#f5d24b;--yellow-tournesol-950-100:#feecc2;--yellow-tournesol-950-100-hover:#fbd335;--yellow-tournesol-950-100-active:#e6c130;--yellow-tournesol-sun-407-moon-922:#716043;--yellow-tournesol-sun-407-moon-922-hover:#a28a62;--yellow-tournesol-sun-407-moon-922-active:#ba9f72;--yellow-tournesol-925-125:#fde39c;--yellow-tournesol-925-125-hover:#e9c53b;--yellow-tournesol-925-125-active:#d3b235;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#efcb3a;--yellow-moutarde-975-75:#fef5e8;--yellow-moutarde-975-75-hover:#fcdca3;--yellow-moutarde-975-75-active:#fbcd64;--yellow-moutarde-950-100:#feebd0;--yellow-moutarde-950-100-hover:#fdcd6d;--yellow-moutarde-950-100-active:#f4be30;--yellow-moutarde-sun-348-moon-860:#695240;--yellow-moutarde-sun-348-moon-860-hover:#9b7b61;--yellow-moutarde-sun-348-moon-860-active:#b58f72;--yellow-moutarde-925-125:#fde2b5;--yellow-moutarde-925-125-hover:#f6c43c;--yellow-moutarde-925-125-active:#dfb135;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#fcc63a;--orange-terre-battue-975-75:#fef4f2;--orange-terre-battue-975-75-hover:#fcd8d0;--orange-terre-battue-975-75-active:#fac5b8;--orange-terre-battue-950-100:#fee9e5;--orange-terre-battue-950-100-hover:#fdc6ba;--orange-terre-battue-950-100-active:#fcb09e;--orange-terre-battue-sun-370-moon-672:#755348;--orange-terre-battue-sun-370-moon-672-hover:#ab7b6b;--orange-terre-battue-sun-370-moon-672-active:#c68f7d;--orange-terre-battue-925-125:#fddfd8;--orange-terre-battue-925-125-hover:#fbb8a5;--orange-terre-battue-925-125-active:#faa184;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#fcc0b0;--brown-cafe-creme-975-75:#fbf6ed;--brown-cafe-creme-975-75-hover:#f2deb6;--brown-cafe-creme-975-75-active:#eacf91;--brown-cafe-creme-950-100:#f7ecdb;--brown-cafe-creme-950-100-hover:#edce94;--brown-cafe-creme-950-100-active:#dabd84;--brown-cafe-creme-sun-383-moon-885:#685c48;--brown-cafe-creme-sun-383-moon-885-hover:#97866a;--brown-cafe-creme-sun-383-moon-885-active:#ae9b7b;--brown-cafe-creme-925-125:#f4e3c7;--brown-cafe-creme-925-125-hover:#e1c386;--brown-cafe-creme-925-125-active:#ccb078;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#e7ca8e;--brown-caramel-975-75:#fbf5f2;--brown-caramel-975-75-hover:#f1dbcf;--brown-caramel-975-75-active:#ecc9b5;--brown-caramel-950-100:#f7ebe5;--brown-caramel-950-100-hover:#eccbb9;--brown-caramel-950-100-active:#e6b79a;--brown-caramel-sun-425-moon-901:#845d48;--brown-caramel-sun-425-moon-901-hover:#bb8568;--brown-caramel-sun-425-moon-901-active:#d69978;--brown-caramel-925-125:#f3e2d9;--brown-caramel-925-125-hover:#e7bea6;--brown-caramel-925-125-active:#e1a982;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#eac7b2;--brown-opera-975-75:#fbf5f2;--brown-opera-975-75-hover:#f1dbcf;--brown-opera-975-75-active:#ecc9b5;--brown-opera-950-100:#f7ece4;--brown-opera-950-100-hover:#eccdb3;--brown-opera-950-100-active:#e6ba90;--brown-opera-sun-395-moon-820:#745b47;--brown-opera-sun-395-moon-820-hover:#a78468;--brown-opera-sun-395-moon-820-active:#c09979;--brown-opera-925-125:#f3e2d7;--brown-opera-925-125-hover:#e7bfa0;--brown-opera-925-125-active:#deaa7e;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#eac7ad;--beige-gris-galet-975-75:#f9f6f2;--beige-gris-galet-975-75-hover:#eadecd;--beige-gris-galet-975-75-active:#e1ceb1;--beige-gris-galet-950-100:#f3ede5;--beige-gris-galet-950-100-hover:#e1d0b5;--beige-gris-galet-950-100-active:#d1bea2;--beige-gris-galet-sun-407-moon-821:#6a6156;--beige-gris-galet-sun-407-moon-821-hover:#988b7c;--beige-gris-galet-sun-407-moon-821-active:#afa08f;--beige-gris-galet-925-125:#eee4d9;--beige-gris-galet-925-125-hover:#dbc3a4;--beige-gris-galet-925-125-active:#c6b094;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#e0cab0;--scrollbar-width:0;--ground:0;--shadow-color:rgba(0,0,18,.16);--raised-shadow:0 1px 3px var(--shadow-color);--overlap-shadow:0 2px 6px var(--shadow-color);--lifted-shadow:0 3px 9px var(--shadow-color);box-sizing:border-box}[href]{background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);transition:background-size 0s}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{--icon-size:1rem;background-color:currentColor;content:var(--external-link-content);display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}form[target=_blank]:after{content:none}.fr-raw-link{--text-decoration:none}.fr-raw-link [href],.fr-raw-link[href]{--underline-img:none;--external-link-content:none}.fr-reset-link{--text-decoration:underline}.fr-reset-link [href],.fr-reset-link[href]{--underline-img:none;text-underline-offset:2px}button{border:none;color:inherit;font-family:inherit;font-size:inherit}button,input,select,textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin:0}input,select,textarea{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;border:0;border-radius:0;font-family:Marianne,arial,sans-serif;text-rendering:optimizeLegibility}input[type=search]{-webkit-appearance:none;-moz-appearance:none;appearance:none}input[type=checkbox],input[type=radio],input[type=range]{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}input::-webkit-contacts-auto-fill-button,input::-webkit-credentials-auto-fill-button{height:1.25rem;margin-left:1rem;margin-right:-1px;-webkit-mask-size:1.25rem 1.25rem;width:1.25rem}input[type=range]:focus::-webkit-slider-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-moz-range-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus::-ms-thumb{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus,[tabindex]:focus,a:focus,audio:focus[controls],button:focus,details:focus,details>summary:first-of-type:focus,input:focus,input[type=button]:focus,input[type=checkbox]:focus+label:before,input[type=image]:focus,input[type=radio]:focus+label:before,input[type=reset]:focus,input[type=submit]:focus,select:focus,textarea:focus,video:focus[controls]{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}input[type=range]:focus:not(:focus-visible)::-webkit-slider-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-moz-range-thumb{outline-style:none}input[type=range]:focus:not(:focus-visible)::-ms-thumb{outline-style:none}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible),[tabindex]:focus:not(:focus-visible),a:focus:not(:focus-visible),audio:focus:not(:focus-visible)[controls],button:focus:not(:focus-visible),details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible),input:focus:not(:focus-visible),input[type=button]:focus:not(:focus-visible),input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=image]:focus:not(:focus-visible),input[type=radio]:focus:not(:focus-visible)+label:before,input[type=reset]:focus:not(:focus-visible),input[type=submit]:focus:not(:focus-visible),select:focus:not(:focus-visible),textarea:focus:not(:focus-visible),video:focus:not(:focus-visible)[controls]{outline-style:none}input[type=range]:focus-visible::-webkit-slider-thumb{outline-style:solid}input[type=range]:focus-visible::-moz-range-thumb{outline-style:solid}input[type=range]:focus-visible::-ms-thumb{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus-visible,[tabindex]:focus-visible,a:focus-visible,audio:focus-visible[controls],button:focus-visible,details:focus-visible,details>summary:first-of-type:focus-visible,input:focus-visible,input[type=button]:focus-visible,input[type=checkbox]:focus-visible+label:before,input[type=image]:focus-visible,input[type=radio]:focus-visible+label:before,input[type=reset]:focus-visible,input[type=submit]:focus-visible,select:focus-visible,textarea:focus-visible,video:focus-visible[controls]{outline-style:solid}button,input[type=button],input[type=image],input[type=reset],input[type=submit]{--hover-tint:var(--hover);--active-tint:var(--active)}a,audio[controls],button,details,details>summary:first-of-type,input[type=button],input[type=checkbox],input[type=checkbox]+label,input[type=file],input[type=image],input[type=radio],input[type=radio]+label,input[type=range],input[type=reset],input[type=submit],select,video[controls]{cursor:pointer}input[type=range]:disabled::-webkit-slider-thumb,input[type=range]:disabled::-webkit-slider-thumb:active{cursor:not-allowed}input[type=range]:disabled::-moz-range-thumb,input[type=range]:disabled::-moz-range-thumb:active{cursor:not-allowed}input[type=range]:disabled::-ms-thumb,input[type=range]:disabled::-ms-thumb:active{cursor:not-allowed}a:not([href]),audio:not([href])[controls],button:disabled,input:disabled,input[type=button]:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=file]:disabled,input[type=image]:disabled,input[type=radio]:disabled,input[type=radio]:disabled+label,input[type=range]:disabled,input[type=reset]:disabled,input[type=submit]:disabled,select:disabled,textarea:disabled,video:not([href])[controls]{cursor:not-allowed}input[type=range]::-webkit-slider-thumb{cursor:grab}input[type=range]::-moz-range-thumb{cursor:grab}input[type=range]::-ms-thumb{cursor:grab}input[type=range]::-webkit-slider-thumb:active{cursor:grabbing}input[type=range]::-moz-range-thumb:active{cursor:grabbing}input[type=range]::-ms-thumb:active{cursor:grabbing}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:var(--text-disabled-grey);opacity:1}.fr-enlarge-link{position:relative}.fr-enlarge-link a{background-image:none;outline-width:0}.fr-enlarge-link a:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-enlarge-button{position:relative}.fr-enlarge-button button{background-image:none;outline-width:0}.fr-enlarge-button button:before{bottom:0;content:"";display:block;height:100%;left:0;outline-color:inherit;outline-offset:2px;outline-style:inherit;outline-width:2px;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-transition-none{transition:none!important}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:300;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:300;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:400;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:400;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:500;src:url(../fonts/Marianne-Medium.woff2) format("woff2"),url(../fonts/Marianne-Medium.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:500;src:url(../fonts/Marianne-Medium_Italic.woff2) format("woff2"),url(../fonts/Marianne-Medium_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:normal;font-weight:700;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff")}@font-face{font-display:swap;font-family:Marianne;font-style:italic;font-weight:700;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:400;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff")}@font-face{font-display:swap;font-family:Spectral;font-style:normal;font-weight:900;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff")}h6{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:var(--title-spacing)}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:var(--title-spacing)}h2{font-size:1.75rem;line-height:2.25rem}h1{font-size:2rem;font-weight:700;line-height:2.5rem;margin:var(--title-spacing)}p{font-size:1rem;line-height:1.5rem;margin:var(--text-spacing)}dl,ol,ul{--xl-size:var(--xl-base);margin:0;margin-block-end:var(--xl-block);margin-block-start:var(--xl-block);padding:0}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*.9)}ol{counter-reset:li-counter;list-style-type:var(--ol-type);padding-inline-start:var(--ol-start)}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}dd,dl{margin:0;padding-inline-start:var(--ul-start)}dd,dt,li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}sub,sup{line-height:1}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--heavy{font-weight:900!important}.fr-h6{font-size:1.125rem!important;font-weight:700!important;line-height:1.5rem!important;margin:var(--title-spacing)}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:var(--title-spacing)}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:var(--title-spacing)}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-size:2rem!important;font-weight:700!important;line-height:2.5rem!important;margin:var(--title-spacing)}.fr-display--xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display--sm,.fr-display--xs{font-weight:700!important;margin:var(--display-spacing)}.fr-display--sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display--md{font-size:3.5rem!important;line-height:4rem!important}.fr-display--lg,.fr-display--md{font-weight:700!important;margin:var(--display-spacing)}.fr-display--lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display--xl{font-size:4.5rem!important;font-weight:700!important;line-height:5rem!important;margin:var(--display-spacing)}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:var(--text-spacing)}.fr-text--sm{font-size:.875rem!important}.fr-text--md,.fr-text--sm{line-height:1.5rem!important;margin:var(--text-spacing)}.fr-text--md{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:var(--text-spacing)}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:var(--text-spacing)}*,:after,:before{box-sizing:inherit}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);color:var(--text-default-grey);font-family:Marianne,arial,sans-serif;font-size:1rem;line-height:1.5rem;margin:0;overflow-wrap:break-word;padding:0;text-rendering:optimizeLegibility}a,button,input,label,select,textarea{-webkit-tap-highlight-color:transparent}select optgroup{font-style:normal}[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{content:""}.fr-icon--xs:after,.fr-icon--xs:before{--icon-size:0.75rem}.fr-icon--sm:after,.fr-icon--sm:before{--icon-size:1rem}.fr-icon--md:after,.fr-icon--md:before{--icon-size:1.5rem}.fr-icon--lg:after,.fr-icon--lg:before{--icon-size:2rem}.fr-hidden{display:none!important}.fr-unhidden{display:inherit!important}:root body{border-right:var(--scrollbar-width) solid transparent}:root[data-fr-scrolling] body{bottom:0;left:0;overflow:hidden;position:fixed;right:0;top:0}.fr-sr-only{clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-sr-only,hr{border:0;display:block}.fr-hr,hr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin:0;padding:var(--text-spacing)}.fr-hr{border:0;display:block}.fr-hr--sm{margin-left:auto;margin-right:auto;width:10rem}.fr-hr-or{align-items:center;display:flex;flex-direction:row;flex-wrap:nowrap;font-size:.875rem;font-weight:700;justify-content:center;line-height:1.5rem;text-transform:uppercase}.fr-hr-or:after,.fr-hr-or:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:inline-flex;height:1px;width:100%}.fr-hr-or:before{margin-right:.75rem}.fr-hr-or:after{margin-left:.75rem}.fr-ellipsis{display:inline!important;overflow:hidden!important;text-overflow:ellipsis!important;white-space:nowrap!important}iframe{border:0}.fr-fluid-img{height:auto;max-width:100%}@supports (aspect-ratio:16/9){.fr-ratio-32x9{aspect-ratio:3.5555555556!important}.fr-ratio-16x9{aspect-ratio:1.7777777778!important}.fr-ratio-3x2{aspect-ratio:1.5!important}.fr-ratio-4x3{aspect-ratio:1.3333333333!important}.fr-ratio-1x1{aspect-ratio:1!important}.fr-ratio-3x4{aspect-ratio:.75!important}.fr-ratio-2x3{aspect-ratio:.6666666667!important}}[class*=" fr-ratio"],[class^=fr-ratio]{object-fit:cover;object-position:50% 50%;width:100%}iframe[class*=" fr-ratio"],iframe[class^=fr-ratio]{object-fit:fill}.fr-responsive-img{height:auto;width:100%}.fr-responsive-vid{aspect-ratio:1.7777777778;display:block;position:relative;width:100%}.fr-responsive-vid__player{border:0;display:block;height:100%;width:100%}.fr-responsive-vid>.fr-consent-placeholder{bottom:0;height:100%;left:0;object-fit:cover;object-position:50% 50%;position:absolute;right:0;top:0;width:100%}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm,.fr-container-xl{margin-left:auto;margin-right:auto;width:100%}.fr-container{padding-left:1rem;padding-right:1rem}.fr-container--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-2--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-3:not(.fr-col-offset-3--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-4--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-5--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-6:not(.fr-col-offset-6--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-7--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-8--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-9:not(.fr-col-offset-9--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-10--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-11--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-12:not(.fr-col-offset-12--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-no-after:after,.fr-no-before:before{content:none}.fr-collapse{--collapse:-99999px;--collapser:"";--collapse-max-height:none;max-height:var(--collapse-max-height);overflow:hidden;transition:visibility .3s}.fr-collapse--expanded{overflow-x:hidden;overflow-y:auto}.fr-collapse:before{content:"";content:var(--collapser);display:block;margin-top:0;transition:margin-top .3s}.fr-collapse:not(.fr-collapse--expanded):not(.fr-collapsing){--collapse-max-height:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-n1-5v{margin:-.375rem!important}.fr-ml-n1-5v,.fr-mx-n1-5v{margin-left:-.375rem!important}.fr-mr-n1-5v,.fr-mx-n1-5v{margin-right:-.375rem!important}.fr-mt-n1-5v,.fr-my-n1-5v{margin-top:-.375rem!important}.fr-mb-n1-5v,.fr-my-n1-5v{margin-bottom:-.375rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-n0-5v{margin:-.125rem!important}.fr-ml-n0-5v,.fr-mx-n0-5v{margin-left:-.125rem!important}.fr-mr-n0-5v,.fr-mx-n0-5v{margin-right:-.125rem!important}.fr-mt-n0-5v,.fr-my-n0-5v{margin-top:-.125rem!important}.fr-mb-n0-5v,.fr-my-n0-5v{margin-bottom:-.125rem!important}.fr-m-0-5v{margin:.125rem!important}.fr-ml-0-5v,.fr-mx-0-5v{margin-left:.125rem!important}.fr-mr-0-5v,.fr-mx-0-5v{margin-right:.125rem!important}.fr-mt-0-5v,.fr-my-0-5v{margin-top:.125rem!important}.fr-mb-0-5v,.fr-my-0-5v{margin-bottom:.125rem!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1-5v{margin:.375rem!important}.fr-ml-1-5v,.fr-mx-1-5v{margin-left:.375rem!important}.fr-mr-1-5v,.fr-mx-1-5v{margin-right:.375rem!important}.fr-mt-1-5v,.fr-my-1-5v{margin-top:.375rem!important}.fr-mb-1-5v,.fr-my-1-5v{margin-bottom:.375rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-10v,.fr-m-5w{margin:2.5rem!important}.fr-ml-10v,.fr-ml-5w,.fr-mx-10v,.fr-mx-5w{margin-left:2.5rem!important}.fr-mr-10v,.fr-mr-5w,.fr-mx-10v,.fr-mx-5w{margin-right:2.5rem!important}.fr-mt-10v,.fr-mt-5w,.fr-my-10v,.fr-my-5w{margin-top:2.5rem!important}.fr-mb-10v,.fr-mb-5w,.fr-my-10v,.fr-my-5w{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-12v,.fr-m-6w{margin:3rem!important}.fr-ml-12v,.fr-ml-6w,.fr-mx-12v,.fr-mx-6w{margin-left:3rem!important}.fr-mr-12v,.fr-mr-6w,.fr-mx-12v,.fr-mx-6w{margin-right:3rem!important}.fr-mt-12v,.fr-mt-6w,.fr-my-12v,.fr-my-6w{margin-top:3rem!important}.fr-mb-12v,.fr-mb-6w,.fr-my-12v,.fr-my-6w{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-14v,.fr-m-7w{margin:3.5rem!important}.fr-ml-14v,.fr-ml-7w,.fr-mx-14v,.fr-mx-7w{margin-left:3.5rem!important}.fr-mr-14v,.fr-mr-7w,.fr-mx-14v,.fr-mx-7w{margin-right:3.5rem!important}.fr-mt-14v,.fr-mt-7w,.fr-my-14v,.fr-my-7w{margin-top:3.5rem!important}.fr-mb-14v,.fr-mb-7w,.fr-my-14v,.fr-my-7w{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-16v,.fr-m-8w{margin:4rem!important}.fr-ml-16v,.fr-ml-8w,.fr-mx-16v,.fr-mx-8w{margin-left:4rem!important}.fr-mr-16v,.fr-mr-8w,.fr-mx-16v,.fr-mx-8w{margin-right:4rem!important}.fr-mt-16v,.fr-mt-8w,.fr-my-16v,.fr-my-8w{margin-top:4rem!important}.fr-mb-16v,.fr-mb-8w,.fr-my-16v,.fr-my-8w{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-18v,.fr-m-9w{margin:4.5rem!important}.fr-ml-18v,.fr-ml-9w,.fr-mx-18v,.fr-mx-9w{margin-left:4.5rem!important}.fr-mr-18v,.fr-mr-9w,.fr-mx-18v,.fr-mx-9w{margin-right:4.5rem!important}.fr-mt-18v,.fr-mt-9w,.fr-my-18v,.fr-my-9w{margin-top:4.5rem!important}.fr-mb-18v,.fr-mb-9w,.fr-my-18v,.fr-my-9w{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-m-first-n4w,.fr-m-first-n8v{margin:-2rem!important}.fr-ml-first-n4w,.fr-ml-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-left:-2rem!important}.fr-mr-first-n4w,.fr-mr-first-n8v,.fr-mx-first-n4w,.fr-mx-first-n8v{margin-right:-2rem!important}.fr-mt-first-n4w,.fr-mt-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-top:-2rem!important}.fr-mb-first-n4w,.fr-mb-first-n8v,.fr-my-first-n4w,.fr-my-first-n8v{margin-bottom:-2rem!important}.fr-m-first-n7v{margin:-1.75rem!important}.fr-ml-first-n7v,.fr-mx-first-n7v{margin-left:-1.75rem!important}.fr-mr-first-n7v,.fr-mx-first-n7v{margin-right:-1.75rem!important}.fr-mt-first-n7v,.fr-my-first-n7v{margin-top:-1.75rem!important}.fr-mb-first-n7v,.fr-my-first-n7v{margin-bottom:-1.75rem!important}.fr-m-first-n3w,.fr-m-first-n6v{margin:-1.5rem!important}.fr-ml-first-n3w,.fr-ml-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-left:-1.5rem!important}.fr-mr-first-n3w,.fr-mr-first-n6v,.fr-mx-first-n3w,.fr-mx-first-n6v{margin-right:-1.5rem!important}.fr-mt-first-n3w,.fr-mt-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-top:-1.5rem!important}.fr-mb-first-n3w,.fr-mb-first-n6v,.fr-my-first-n3w,.fr-my-first-n6v{margin-bottom:-1.5rem!important}.fr-m-first-n5v{margin:-1.25rem!important}.fr-ml-first-n5v,.fr-mx-first-n5v{margin-left:-1.25rem!important}.fr-mr-first-n5v,.fr-mx-first-n5v{margin-right:-1.25rem!important}.fr-mt-first-n5v,.fr-my-first-n5v{margin-top:-1.25rem!important}.fr-mb-first-n5v,.fr-my-first-n5v{margin-bottom:-1.25rem!important}.fr-m-first-n2w,.fr-m-first-n4v{margin:-1rem!important}.fr-ml-first-n2w,.fr-ml-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-left:-1rem!important}.fr-mr-first-n2w,.fr-mr-first-n4v,.fr-mx-first-n2w,.fr-mx-first-n4v{margin-right:-1rem!important}.fr-mt-first-n2w,.fr-mt-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-top:-1rem!important}.fr-mb-first-n2w,.fr-mb-first-n4v,.fr-my-first-n2w,.fr-my-first-n4v{margin-bottom:-1rem!important}.fr-m-first-n3v{margin:-.75rem!important}.fr-ml-first-n3v,.fr-mx-first-n3v{margin-left:-.75rem!important}.fr-mr-first-n3v,.fr-mx-first-n3v{margin-right:-.75rem!important}.fr-mt-first-n3v,.fr-my-first-n3v{margin-top:-.75rem!important}.fr-mb-first-n3v,.fr-my-first-n3v{margin-bottom:-.75rem!important}.fr-m-first-n1w,.fr-m-first-n2v{margin:-.5rem!important}.fr-ml-first-n1w,.fr-ml-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-left:-.5rem!important}.fr-mr-first-n1w,.fr-mr-first-n2v,.fr-mx-first-n1w,.fr-mx-first-n2v{margin-right:-.5rem!important}.fr-mt-first-n1w,.fr-mt-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-top:-.5rem!important}.fr-mb-first-n1w,.fr-mb-first-n2v,.fr-my-first-n1w,.fr-my-first-n2v{margin-bottom:-.5rem!important}.fr-m-first-n1v{margin:-.25rem!important}.fr-ml-first-n1v,.fr-mx-first-n1v{margin-left:-.25rem!important}.fr-mr-first-n1v,.fr-mx-first-n1v{margin-right:-.25rem!important}.fr-mt-first-n1v,.fr-my-first-n1v{margin-top:-.25rem!important}.fr-mb-first-n1v,.fr-my-first-n1v{margin-bottom:-.25rem!important}.fr-m-first-n1-5v{margin:-.375rem!important}.fr-ml-first-n1-5v,.fr-mx-first-n1-5v{margin-left:-.375rem!important}.fr-mr-first-n1-5v,.fr-mx-first-n1-5v{margin-right:-.375rem!important}.fr-mt-first-n1-5v,.fr-my-first-n1-5v{margin-top:-.375rem!important}.fr-mb-first-n1-5v,.fr-my-first-n1-5v{margin-bottom:-.375rem!important}.fr-m-first-0{margin:0!important}.fr-ml-first-0,.fr-mx-first-0{margin-left:0!important}.fr-mr-first-0,.fr-mx-first-0{margin-right:0!important}.fr-mt-first-0,.fr-my-first-0{margin-top:0!important}.fr-mb-first-0,.fr-my-first-0{margin-bottom:0!important}.fr-m-first-n0-5v{margin:-.125rem!important}.fr-ml-first-n0-5v,.fr-mx-first-n0-5v{margin-left:-.125rem!important}.fr-mr-first-n0-5v,.fr-mx-first-n0-5v{margin-right:-.125rem!important}.fr-mt-first-n0-5v,.fr-my-first-n0-5v{margin-top:-.125rem!important}.fr-mb-first-n0-5v,.fr-my-first-n0-5v{margin-bottom:-.125rem!important}.fr-m-first-0-5v{margin:.125rem!important}.fr-ml-first-0-5v,.fr-mx-first-0-5v{margin-left:.125rem!important}.fr-mr-first-0-5v,.fr-mx-first-0-5v{margin-right:.125rem!important}.fr-mt-first-0-5v,.fr-my-first-0-5v{margin-top:.125rem!important}.fr-mb-first-0-5v,.fr-my-first-0-5v{margin-bottom:.125rem!important}.fr-m-first-1v{margin:.25rem!important}.fr-ml-first-1v,.fr-mx-first-1v{margin-left:.25rem!important}.fr-mr-first-1v,.fr-mx-first-1v{margin-right:.25rem!important}.fr-mt-first-1v,.fr-my-first-1v{margin-top:.25rem!important}.fr-mb-first-1v,.fr-my-first-1v{margin-bottom:.25rem!important}.fr-m-first-1-5v{margin:.375rem!important}.fr-ml-first-1-5v,.fr-mx-first-1-5v{margin-left:.375rem!important}.fr-mr-first-1-5v,.fr-mx-first-1-5v{margin-right:.375rem!important}.fr-mt-first-1-5v,.fr-my-first-1-5v{margin-top:.375rem!important}.fr-mb-first-1-5v,.fr-my-first-1-5v{margin-bottom:.375rem!important}.fr-m-first-1w,.fr-m-first-2v{margin:.5rem!important}.fr-ml-first-1w,.fr-ml-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-left:.5rem!important}.fr-mr-first-1w,.fr-mr-first-2v,.fr-mx-first-1w,.fr-mx-first-2v{margin-right:.5rem!important}.fr-mt-first-1w,.fr-mt-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-top:.5rem!important}.fr-mb-first-1w,.fr-mb-first-2v,.fr-my-first-1w,.fr-my-first-2v{margin-bottom:.5rem!important}.fr-m-first-3v{margin:.75rem!important}.fr-ml-first-3v,.fr-mx-first-3v{margin-left:.75rem!important}.fr-mr-first-3v,.fr-mx-first-3v{margin-right:.75rem!important}.fr-mt-first-3v,.fr-my-first-3v{margin-top:.75rem!important}.fr-mb-first-3v,.fr-my-first-3v{margin-bottom:.75rem!important}.fr-m-first-2w,.fr-m-first-4v{margin:1rem!important}.fr-ml-first-2w,.fr-ml-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-left:1rem!important}.fr-mr-first-2w,.fr-mr-first-4v,.fr-mx-first-2w,.fr-mx-first-4v{margin-right:1rem!important}.fr-mt-first-2w,.fr-mt-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-top:1rem!important}.fr-mb-first-2w,.fr-mb-first-4v,.fr-my-first-2w,.fr-my-first-4v{margin-bottom:1rem!important}.fr-m-first-5v{margin:1.25rem!important}.fr-ml-first-5v,.fr-mx-first-5v{margin-left:1.25rem!important}.fr-mr-first-5v,.fr-mx-first-5v{margin-right:1.25rem!important}.fr-mt-first-5v,.fr-my-first-5v{margin-top:1.25rem!important}.fr-mb-first-5v,.fr-my-first-5v{margin-bottom:1.25rem!important}.fr-m-first-3w,.fr-m-first-6v{margin:1.5rem!important}.fr-ml-first-3w,.fr-ml-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-left:1.5rem!important}.fr-mr-first-3w,.fr-mr-first-6v,.fr-mx-first-3w,.fr-mx-first-6v{margin-right:1.5rem!important}.fr-mt-first-3w,.fr-mt-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-top:1.5rem!important}.fr-mb-first-3w,.fr-mb-first-6v,.fr-my-first-3w,.fr-my-first-6v{margin-bottom:1.5rem!important}.fr-m-first-7v{margin:1.75rem!important}.fr-ml-first-7v,.fr-mx-first-7v{margin-left:1.75rem!important}.fr-mr-first-7v,.fr-mx-first-7v{margin-right:1.75rem!important}.fr-mt-first-7v,.fr-my-first-7v{margin-top:1.75rem!important}.fr-mb-first-7v,.fr-my-first-7v{margin-bottom:1.75rem!important}.fr-m-first-4w,.fr-m-first-8v{margin:2rem!important}.fr-ml-first-4w,.fr-ml-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-left:2rem!important}.fr-mr-first-4w,.fr-mr-first-8v,.fr-mx-first-4w,.fr-mx-first-8v{margin-right:2rem!important}.fr-mt-first-4w,.fr-mt-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-top:2rem!important}.fr-mb-first-4w,.fr-mb-first-8v,.fr-my-first-4w,.fr-my-first-8v{margin-bottom:2rem!important}.fr-m-first-9v{margin:2.25rem!important}.fr-ml-first-9v,.fr-mx-first-9v{margin-left:2.25rem!important}.fr-mr-first-9v,.fr-mx-first-9v{margin-right:2.25rem!important}.fr-mt-first-9v,.fr-my-first-9v{margin-top:2.25rem!important}.fr-mb-first-9v,.fr-my-first-9v{margin-bottom:2.25rem!important}.fr-m-first-10v,.fr-m-first-5w{margin:2.5rem!important}.fr-ml-first-10v,.fr-ml-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-left:2.5rem!important}.fr-mr-first-10v,.fr-mr-first-5w,.fr-mx-first-10v,.fr-mx-first-5w{margin-right:2.5rem!important}.fr-mt-first-10v,.fr-mt-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-top:2.5rem!important}.fr-mb-first-10v,.fr-mb-first-5w,.fr-my-first-10v,.fr-my-first-5w{margin-bottom:2.5rem!important}.fr-m-first-11v{margin:2.75rem!important}.fr-ml-first-11v,.fr-mx-first-11v{margin-left:2.75rem!important}.fr-mr-first-11v,.fr-mx-first-11v{margin-right:2.75rem!important}.fr-mt-first-11v,.fr-my-first-11v{margin-top:2.75rem!important}.fr-mb-first-11v,.fr-my-first-11v{margin-bottom:2.75rem!important}.fr-m-first-12v,.fr-m-first-6w{margin:3rem!important}.fr-ml-first-12v,.fr-ml-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-left:3rem!important}.fr-mr-first-12v,.fr-mr-first-6w,.fr-mx-first-12v,.fr-mx-first-6w{margin-right:3rem!important}.fr-mt-first-12v,.fr-mt-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-top:3rem!important}.fr-mb-first-12v,.fr-mb-first-6w,.fr-my-first-12v,.fr-my-first-6w{margin-bottom:3rem!important}.fr-m-first-13v{margin:3.25rem!important}.fr-ml-first-13v,.fr-mx-first-13v{margin-left:3.25rem!important}.fr-mr-first-13v,.fr-mx-first-13v{margin-right:3.25rem!important}.fr-mt-first-13v,.fr-my-first-13v{margin-top:3.25rem!important}.fr-mb-first-13v,.fr-my-first-13v{margin-bottom:3.25rem!important}.fr-m-first-14v,.fr-m-first-7w{margin:3.5rem!important}.fr-ml-first-14v,.fr-ml-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-left:3.5rem!important}.fr-mr-first-14v,.fr-mr-first-7w,.fr-mx-first-14v,.fr-mx-first-7w{margin-right:3.5rem!important}.fr-mt-first-14v,.fr-mt-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-top:3.5rem!important}.fr-mb-first-14v,.fr-mb-first-7w,.fr-my-first-14v,.fr-my-first-7w{margin-bottom:3.5rem!important}.fr-m-first-15v{margin:3.75rem!important}.fr-ml-first-15v,.fr-mx-first-15v{margin-left:3.75rem!important}.fr-mr-first-15v,.fr-mx-first-15v{margin-right:3.75rem!important}.fr-mt-first-15v,.fr-my-first-15v{margin-top:3.75rem!important}.fr-mb-first-15v,.fr-my-first-15v{margin-bottom:3.75rem!important}.fr-m-first-16v,.fr-m-first-8w{margin:4rem!important}.fr-ml-first-16v,.fr-ml-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-left:4rem!important}.fr-mr-first-16v,.fr-mr-first-8w,.fr-mx-first-16v,.fr-mx-first-8w{margin-right:4rem!important}.fr-mt-first-16v,.fr-mt-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-top:4rem!important}.fr-mb-first-16v,.fr-mb-first-8w,.fr-my-first-16v,.fr-my-first-8w{margin-bottom:4rem!important}.fr-m-first-17v{margin:4.25rem!important}.fr-ml-first-17v,.fr-mx-first-17v{margin-left:4.25rem!important}.fr-mr-first-17v,.fr-mx-first-17v{margin-right:4.25rem!important}.fr-mt-first-17v,.fr-my-first-17v{margin-top:4.25rem!important}.fr-mb-first-17v,.fr-my-first-17v{margin-bottom:4.25rem!important}.fr-m-first-18v,.fr-m-first-9w{margin:4.5rem!important}.fr-ml-first-18v,.fr-ml-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-left:4.5rem!important}.fr-mr-first-18v,.fr-mr-first-9w,.fr-mx-first-18v,.fr-mx-first-9w{margin-right:4.5rem!important}.fr-mt-first-18v,.fr-mt-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-top:4.5rem!important}.fr-mb-first-18v,.fr-mb-first-9w,.fr-my-first-18v,.fr-my-first-9w{margin-bottom:4.5rem!important}.fr-m-first-19v{margin:4.75rem!important}.fr-ml-first-19v,.fr-mx-first-19v{margin-left:4.75rem!important}.fr-mr-first-19v,.fr-mx-first-19v{margin-right:4.75rem!important}.fr-mt-first-19v,.fr-my-first-19v{margin-top:4.75rem!important}.fr-mb-first-19v,.fr-my-first-19v{margin-bottom:4.75rem!important}.fr-m-first-10w,.fr-m-first-20v{margin:5rem!important}.fr-ml-first-10w,.fr-ml-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-left:5rem!important}.fr-mr-first-10w,.fr-mr-first-20v,.fr-mx-first-10w,.fr-mx-first-20v{margin-right:5rem!important}.fr-mt-first-10w,.fr-mt-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-top:5rem!important}.fr-mb-first-10w,.fr-mb-first-20v,.fr-my-first-10w,.fr-my-first-20v{margin-bottom:5rem!important}.fr-m-first-21v{margin:5.25rem!important}.fr-ml-first-21v,.fr-mx-first-21v{margin-left:5.25rem!important}.fr-mr-first-21v,.fr-mx-first-21v{margin-right:5.25rem!important}.fr-mt-first-21v,.fr-my-first-21v{margin-top:5.25rem!important}.fr-mb-first-21v,.fr-my-first-21v{margin-bottom:5.25rem!important}.fr-m-first-11w,.fr-m-first-22v{margin:5.5rem!important}.fr-ml-first-11w,.fr-ml-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-left:5.5rem!important}.fr-mr-first-11w,.fr-mr-first-22v,.fr-mx-first-11w,.fr-mx-first-22v{margin-right:5.5rem!important}.fr-mt-first-11w,.fr-mt-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-top:5.5rem!important}.fr-mb-first-11w,.fr-mb-first-22v,.fr-my-first-11w,.fr-my-first-22v{margin-bottom:5.5rem!important}.fr-m-first-23v{margin:5.75rem!important}.fr-ml-first-23v,.fr-mx-first-23v{margin-left:5.75rem!important}.fr-mr-first-23v,.fr-mx-first-23v{margin-right:5.75rem!important}.fr-mt-first-23v,.fr-my-first-23v{margin-top:5.75rem!important}.fr-mb-first-23v,.fr-my-first-23v{margin-bottom:5.75rem!important}.fr-m-first-12w,.fr-m-first-24v{margin:6rem!important}.fr-ml-first-12w,.fr-ml-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-left:6rem!important}.fr-mr-first-12w,.fr-mr-first-24v,.fr-mx-first-12w,.fr-mx-first-24v{margin-right:6rem!important}.fr-mt-first-12w,.fr-mt-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-top:6rem!important}.fr-mb-first-12w,.fr-mb-first-24v,.fr-my-first-12w,.fr-my-first-24v{margin-bottom:6rem!important}.fr-m-first-25v{margin:6.25rem!important}.fr-ml-first-25v,.fr-mx-first-25v{margin-left:6.25rem!important}.fr-mr-first-25v,.fr-mx-first-25v{margin-right:6.25rem!important}.fr-mt-first-25v,.fr-my-first-25v{margin-top:6.25rem!important}.fr-mb-first-25v,.fr-my-first-25v{margin-bottom:6.25rem!important}.fr-m-first-13w,.fr-m-first-26v{margin:6.5rem!important}.fr-ml-first-13w,.fr-ml-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-left:6.5rem!important}.fr-mr-first-13w,.fr-mr-first-26v,.fr-mx-first-13w,.fr-mx-first-26v{margin-right:6.5rem!important}.fr-mt-first-13w,.fr-mt-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-top:6.5rem!important}.fr-mb-first-13w,.fr-mb-first-26v,.fr-my-first-13w,.fr-my-first-26v{margin-bottom:6.5rem!important}.fr-m-first-27v{margin:6.75rem!important}.fr-ml-first-27v,.fr-mx-first-27v{margin-left:6.75rem!important}.fr-mr-first-27v,.fr-mx-first-27v{margin-right:6.75rem!important}.fr-mt-first-27v,.fr-my-first-27v{margin-top:6.75rem!important}.fr-mb-first-27v,.fr-my-first-27v{margin-bottom:6.75rem!important}.fr-m-first-14w,.fr-m-first-28v{margin:7rem!important}.fr-ml-first-14w,.fr-ml-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-left:7rem!important}.fr-mr-first-14w,.fr-mr-first-28v,.fr-mx-first-14w,.fr-mx-first-28v{margin-right:7rem!important}.fr-mt-first-14w,.fr-mt-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-top:7rem!important}.fr-mb-first-14w,.fr-mb-first-28v,.fr-my-first-14w,.fr-my-first-28v{margin-bottom:7rem!important}.fr-m-first-29v{margin:7.25rem!important}.fr-ml-first-29v,.fr-mx-first-29v{margin-left:7.25rem!important}.fr-mr-first-29v,.fr-mx-first-29v{margin-right:7.25rem!important}.fr-mt-first-29v,.fr-my-first-29v{margin-top:7.25rem!important}.fr-mb-first-29v,.fr-my-first-29v{margin-bottom:7.25rem!important}.fr-m-first-15w,.fr-m-first-30v{margin:7.5rem!important}.fr-ml-first-15w,.fr-ml-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-left:7.5rem!important}.fr-mr-first-15w,.fr-mr-first-30v,.fr-mx-first-15w,.fr-mx-first-30v{margin-right:7.5rem!important}.fr-mt-first-15w,.fr-mt-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-top:7.5rem!important}.fr-mb-first-15w,.fr-mb-first-30v,.fr-my-first-15w,.fr-my-first-30v{margin-bottom:7.5rem!important}.fr-m-first-31v{margin:7.75rem!important}.fr-ml-first-31v,.fr-mx-first-31v{margin-left:7.75rem!important}.fr-mr-first-31v,.fr-mx-first-31v{margin-right:7.75rem!important}.fr-mt-first-31v,.fr-my-first-31v{margin-top:7.75rem!important}.fr-mb-first-31v,.fr-my-first-31v{margin-bottom:7.75rem!important}.fr-m-first-16w,.fr-m-first-32v{margin:8rem!important}.fr-ml-first-16w,.fr-ml-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-left:8rem!important}.fr-mr-first-16w,.fr-mr-first-32v,.fr-mx-first-16w,.fr-mx-first-32v{margin-right:8rem!important}.fr-mt-first-16w,.fr-mt-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-top:8rem!important}.fr-mb-first-16w,.fr-mb-first-32v,.fr-my-first-16w,.fr-my-first-32v{margin-bottom:8rem!important}.fr-m-first-auto{margin:auto}.fr-ml-first-auto,.fr-mx-first-auto{margin-left:auto}.fr-mr-first-auto,.fr-mx-first-auto{margin-right:auto}.fr-mt-first-auto,.fr-my-first-auto{margin-top:auto}.fr-mb-first-auto,.fr-my-first-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-0-5v{padding:.125rem!important}.fr-pl-0-5v,.fr-px-0-5v{padding-left:.125rem!important}.fr-pr-0-5v,.fr-px-0-5v{padding-right:.125rem!important}.fr-pt-0-5v,.fr-py-0-5v{padding-top:.125rem!important}.fr-pb-0-5v,.fr-py-0-5v{padding-bottom:.125rem!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1-5v{padding:.375rem!important}.fr-pl-1-5v,.fr-px-1-5v{padding-left:.375rem!important}.fr-pr-1-5v,.fr-px-1-5v{padding-right:.375rem!important}.fr-pt-1-5v,.fr-py-1-5v{padding-top:.375rem!important}.fr-pb-1-5v,.fr-py-1-5v{padding-bottom:.375rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-10v,.fr-p-5w{padding:2.5rem!important}.fr-pl-10v,.fr-pl-5w,.fr-px-10v,.fr-px-5w{padding-left:2.5rem!important}.fr-pr-10v,.fr-pr-5w,.fr-px-10v,.fr-px-5w{padding-right:2.5rem!important}.fr-pt-10v,.fr-pt-5w,.fr-py-10v,.fr-py-5w{padding-top:2.5rem!important}.fr-pb-10v,.fr-pb-5w,.fr-py-10v,.fr-py-5w{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-12v,.fr-p-6w{padding:3rem!important}.fr-pl-12v,.fr-pl-6w,.fr-px-12v,.fr-px-6w{padding-left:3rem!important}.fr-pr-12v,.fr-pr-6w,.fr-px-12v,.fr-px-6w{padding-right:3rem!important}.fr-pt-12v,.fr-pt-6w,.fr-py-12v,.fr-py-6w{padding-top:3rem!important}.fr-pb-12v,.fr-pb-6w,.fr-py-12v,.fr-py-6w{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-14v,.fr-p-7w{padding:3.5rem!important}.fr-pl-14v,.fr-pl-7w,.fr-px-14v,.fr-px-7w{padding-left:3.5rem!important}.fr-pr-14v,.fr-pr-7w,.fr-px-14v,.fr-px-7w{padding-right:3.5rem!important}.fr-pt-14v,.fr-pt-7w,.fr-py-14v,.fr-py-7w{padding-top:3.5rem!important}.fr-pb-14v,.fr-pb-7w,.fr-py-14v,.fr-py-7w{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-16v,.fr-p-8w{padding:4rem!important}.fr-pl-16v,.fr-pl-8w,.fr-px-16v,.fr-px-8w{padding-left:4rem!important}.fr-pr-16v,.fr-pr-8w,.fr-px-16v,.fr-px-8w{padding-right:4rem!important}.fr-pt-16v,.fr-pt-8w,.fr-py-16v,.fr-py-8w{padding-top:4rem!important}.fr-pb-16v,.fr-pb-8w,.fr-py-16v,.fr-py-8w{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-18v,.fr-p-9w{padding:4.5rem!important}.fr-pl-18v,.fr-pl-9w,.fr-px-18v,.fr-px-9w{padding-left:4.5rem!important}.fr-pr-18v,.fr-pr-9w,.fr-px-18v,.fr-px-9w{padding-right:4.5rem!important}.fr-pt-18v,.fr-pt-9w,.fr-py-18v,.fr-py-9w{padding-top:4.5rem!important}.fr-pb-18v,.fr-pb-9w,.fr-py-18v,.fr-py-9w{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-p-first-0{padding:0!important}.fr-pl-first-0,.fr-px-first-0{padding-left:0!important}.fr-pr-first-0,.fr-px-first-0{padding-right:0!important}.fr-pt-first-0,.fr-py-first-0{padding-top:0!important}.fr-pb-first-0,.fr-py-first-0{padding-bottom:0!important}.fr-p-first-0-5v{padding:.125rem!important}.fr-pl-first-0-5v,.fr-px-first-0-5v{padding-left:.125rem!important}.fr-pr-first-0-5v,.fr-px-first-0-5v{padding-right:.125rem!important}.fr-pt-first-0-5v,.fr-py-first-0-5v{padding-top:.125rem!important}.fr-pb-first-0-5v,.fr-py-first-0-5v{padding-bottom:.125rem!important}.fr-p-first-1v{padding:.25rem!important}.fr-pl-first-1v,.fr-px-first-1v{padding-left:.25rem!important}.fr-pr-first-1v,.fr-px-first-1v{padding-right:.25rem!important}.fr-pt-first-1v,.fr-py-first-1v{padding-top:.25rem!important}.fr-pb-first-1v,.fr-py-first-1v{padding-bottom:.25rem!important}.fr-p-first-1-5v{padding:.375rem!important}.fr-pl-first-1-5v,.fr-px-first-1-5v{padding-left:.375rem!important}.fr-pr-first-1-5v,.fr-px-first-1-5v{padding-right:.375rem!important}.fr-pt-first-1-5v,.fr-py-first-1-5v{padding-top:.375rem!important}.fr-pb-first-1-5v,.fr-py-first-1-5v{padding-bottom:.375rem!important}.fr-p-first-1w,.fr-p-first-2v{padding:.5rem!important}.fr-pl-first-1w,.fr-pl-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-left:.5rem!important}.fr-pr-first-1w,.fr-pr-first-2v,.fr-px-first-1w,.fr-px-first-2v{padding-right:.5rem!important}.fr-pt-first-1w,.fr-pt-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-top:.5rem!important}.fr-pb-first-1w,.fr-pb-first-2v,.fr-py-first-1w,.fr-py-first-2v{padding-bottom:.5rem!important}.fr-p-first-3v{padding:.75rem!important}.fr-pl-first-3v,.fr-px-first-3v{padding-left:.75rem!important}.fr-pr-first-3v,.fr-px-first-3v{padding-right:.75rem!important}.fr-pt-first-3v,.fr-py-first-3v{padding-top:.75rem!important}.fr-pb-first-3v,.fr-py-first-3v{padding-bottom:.75rem!important}.fr-p-first-2w,.fr-p-first-4v{padding:1rem!important}.fr-pl-first-2w,.fr-pl-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-left:1rem!important}.fr-pr-first-2w,.fr-pr-first-4v,.fr-px-first-2w,.fr-px-first-4v{padding-right:1rem!important}.fr-pt-first-2w,.fr-pt-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-top:1rem!important}.fr-pb-first-2w,.fr-pb-first-4v,.fr-py-first-2w,.fr-py-first-4v{padding-bottom:1rem!important}.fr-p-first-5v{padding:1.25rem!important}.fr-pl-first-5v,.fr-px-first-5v{padding-left:1.25rem!important}.fr-pr-first-5v,.fr-px-first-5v{padding-right:1.25rem!important}.fr-pt-first-5v,.fr-py-first-5v{padding-top:1.25rem!important}.fr-pb-first-5v,.fr-py-first-5v{padding-bottom:1.25rem!important}.fr-p-first-3w,.fr-p-first-6v{padding:1.5rem!important}.fr-pl-first-3w,.fr-pl-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-left:1.5rem!important}.fr-pr-first-3w,.fr-pr-first-6v,.fr-px-first-3w,.fr-px-first-6v{padding-right:1.5rem!important}.fr-pt-first-3w,.fr-pt-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-top:1.5rem!important}.fr-pb-first-3w,.fr-pb-first-6v,.fr-py-first-3w,.fr-py-first-6v{padding-bottom:1.5rem!important}.fr-p-first-7v{padding:1.75rem!important}.fr-pl-first-7v,.fr-px-first-7v{padding-left:1.75rem!important}.fr-pr-first-7v,.fr-px-first-7v{padding-right:1.75rem!important}.fr-pt-first-7v,.fr-py-first-7v{padding-top:1.75rem!important}.fr-pb-first-7v,.fr-py-first-7v{padding-bottom:1.75rem!important}.fr-p-first-4w,.fr-p-first-8v{padding:2rem!important}.fr-pl-first-4w,.fr-pl-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-left:2rem!important}.fr-pr-first-4w,.fr-pr-first-8v,.fr-px-first-4w,.fr-px-first-8v{padding-right:2rem!important}.fr-pt-first-4w,.fr-pt-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-top:2rem!important}.fr-pb-first-4w,.fr-pb-first-8v,.fr-py-first-4w,.fr-py-first-8v{padding-bottom:2rem!important}.fr-p-first-9v{padding:2.25rem!important}.fr-pl-first-9v,.fr-px-first-9v{padding-left:2.25rem!important}.fr-pr-first-9v,.fr-px-first-9v{padding-right:2.25rem!important}.fr-pt-first-9v,.fr-py-first-9v{padding-top:2.25rem!important}.fr-pb-first-9v,.fr-py-first-9v{padding-bottom:2.25rem!important}.fr-p-first-10v,.fr-p-first-5w{padding:2.5rem!important}.fr-pl-first-10v,.fr-pl-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-left:2.5rem!important}.fr-pr-first-10v,.fr-pr-first-5w,.fr-px-first-10v,.fr-px-first-5w{padding-right:2.5rem!important}.fr-pt-first-10v,.fr-pt-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-top:2.5rem!important}.fr-pb-first-10v,.fr-pb-first-5w,.fr-py-first-10v,.fr-py-first-5w{padding-bottom:2.5rem!important}.fr-p-first-11v{padding:2.75rem!important}.fr-pl-first-11v,.fr-px-first-11v{padding-left:2.75rem!important}.fr-pr-first-11v,.fr-px-first-11v{padding-right:2.75rem!important}.fr-pt-first-11v,.fr-py-first-11v{padding-top:2.75rem!important}.fr-pb-first-11v,.fr-py-first-11v{padding-bottom:2.75rem!important}.fr-p-first-12v,.fr-p-first-6w{padding:3rem!important}.fr-pl-first-12v,.fr-pl-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-left:3rem!important}.fr-pr-first-12v,.fr-pr-first-6w,.fr-px-first-12v,.fr-px-first-6w{padding-right:3rem!important}.fr-pt-first-12v,.fr-pt-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-top:3rem!important}.fr-pb-first-12v,.fr-pb-first-6w,.fr-py-first-12v,.fr-py-first-6w{padding-bottom:3rem!important}.fr-p-first-13v{padding:3.25rem!important}.fr-pl-first-13v,.fr-px-first-13v{padding-left:3.25rem!important}.fr-pr-first-13v,.fr-px-first-13v{padding-right:3.25rem!important}.fr-pt-first-13v,.fr-py-first-13v{padding-top:3.25rem!important}.fr-pb-first-13v,.fr-py-first-13v{padding-bottom:3.25rem!important}.fr-p-first-14v,.fr-p-first-7w{padding:3.5rem!important}.fr-pl-first-14v,.fr-pl-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-left:3.5rem!important}.fr-pr-first-14v,.fr-pr-first-7w,.fr-px-first-14v,.fr-px-first-7w{padding-right:3.5rem!important}.fr-pt-first-14v,.fr-pt-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-top:3.5rem!important}.fr-pb-first-14v,.fr-pb-first-7w,.fr-py-first-14v,.fr-py-first-7w{padding-bottom:3.5rem!important}.fr-p-first-15v{padding:3.75rem!important}.fr-pl-first-15v,.fr-px-first-15v{padding-left:3.75rem!important}.fr-pr-first-15v,.fr-px-first-15v{padding-right:3.75rem!important}.fr-pt-first-15v,.fr-py-first-15v{padding-top:3.75rem!important}.fr-pb-first-15v,.fr-py-first-15v{padding-bottom:3.75rem!important}.fr-p-first-16v,.fr-p-first-8w{padding:4rem!important}.fr-pl-first-16v,.fr-pl-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-left:4rem!important}.fr-pr-first-16v,.fr-pr-first-8w,.fr-px-first-16v,.fr-px-first-8w{padding-right:4rem!important}.fr-pt-first-16v,.fr-pt-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-top:4rem!important}.fr-pb-first-16v,.fr-pb-first-8w,.fr-py-first-16v,.fr-py-first-8w{padding-bottom:4rem!important}.fr-p-first-17v{padding:4.25rem!important}.fr-pl-first-17v,.fr-px-first-17v{padding-left:4.25rem!important}.fr-pr-first-17v,.fr-px-first-17v{padding-right:4.25rem!important}.fr-pt-first-17v,.fr-py-first-17v{padding-top:4.25rem!important}.fr-pb-first-17v,.fr-py-first-17v{padding-bottom:4.25rem!important}.fr-p-first-18v,.fr-p-first-9w{padding:4.5rem!important}.fr-pl-first-18v,.fr-pl-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-left:4.5rem!important}.fr-pr-first-18v,.fr-pr-first-9w,.fr-px-first-18v,.fr-px-first-9w{padding-right:4.5rem!important}.fr-pt-first-18v,.fr-pt-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-top:4.5rem!important}.fr-pb-first-18v,.fr-pb-first-9w,.fr-py-first-18v,.fr-py-first-9w{padding-bottom:4.5rem!important}.fr-p-first-19v{padding:4.75rem!important}.fr-pl-first-19v,.fr-px-first-19v{padding-left:4.75rem!important}.fr-pr-first-19v,.fr-px-first-19v{padding-right:4.75rem!important}.fr-pt-first-19v,.fr-py-first-19v{padding-top:4.75rem!important}.fr-pb-first-19v,.fr-py-first-19v{padding-bottom:4.75rem!important}.fr-p-first-10w,.fr-p-first-20v{padding:5rem!important}.fr-pl-first-10w,.fr-pl-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-left:5rem!important}.fr-pr-first-10w,.fr-pr-first-20v,.fr-px-first-10w,.fr-px-first-20v{padding-right:5rem!important}.fr-pt-first-10w,.fr-pt-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-top:5rem!important}.fr-pb-first-10w,.fr-pb-first-20v,.fr-py-first-10w,.fr-py-first-20v{padding-bottom:5rem!important}.fr-p-first-21v{padding:5.25rem!important}.fr-pl-first-21v,.fr-px-first-21v{padding-left:5.25rem!important}.fr-pr-first-21v,.fr-px-first-21v{padding-right:5.25rem!important}.fr-pt-first-21v,.fr-py-first-21v{padding-top:5.25rem!important}.fr-pb-first-21v,.fr-py-first-21v{padding-bottom:5.25rem!important}.fr-p-first-11w,.fr-p-first-22v{padding:5.5rem!important}.fr-pl-first-11w,.fr-pl-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-left:5.5rem!important}.fr-pr-first-11w,.fr-pr-first-22v,.fr-px-first-11w,.fr-px-first-22v{padding-right:5.5rem!important}.fr-pt-first-11w,.fr-pt-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-top:5.5rem!important}.fr-pb-first-11w,.fr-pb-first-22v,.fr-py-first-11w,.fr-py-first-22v{padding-bottom:5.5rem!important}.fr-p-first-23v{padding:5.75rem!important}.fr-pl-first-23v,.fr-px-first-23v{padding-left:5.75rem!important}.fr-pr-first-23v,.fr-px-first-23v{padding-right:5.75rem!important}.fr-pt-first-23v,.fr-py-first-23v{padding-top:5.75rem!important}.fr-pb-first-23v,.fr-py-first-23v{padding-bottom:5.75rem!important}.fr-p-first-12w,.fr-p-first-24v{padding:6rem!important}.fr-pl-first-12w,.fr-pl-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-left:6rem!important}.fr-pr-first-12w,.fr-pr-first-24v,.fr-px-first-12w,.fr-px-first-24v{padding-right:6rem!important}.fr-pt-first-12w,.fr-pt-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-top:6rem!important}.fr-pb-first-12w,.fr-pb-first-24v,.fr-py-first-12w,.fr-py-first-24v{padding-bottom:6rem!important}.fr-p-first-25v{padding:6.25rem!important}.fr-pl-first-25v,.fr-px-first-25v{padding-left:6.25rem!important}.fr-pr-first-25v,.fr-px-first-25v{padding-right:6.25rem!important}.fr-pt-first-25v,.fr-py-first-25v{padding-top:6.25rem!important}.fr-pb-first-25v,.fr-py-first-25v{padding-bottom:6.25rem!important}.fr-p-first-13w,.fr-p-first-26v{padding:6.5rem!important}.fr-pl-first-13w,.fr-pl-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-left:6.5rem!important}.fr-pr-first-13w,.fr-pr-first-26v,.fr-px-first-13w,.fr-px-first-26v{padding-right:6.5rem!important}.fr-pt-first-13w,.fr-pt-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-top:6.5rem!important}.fr-pb-first-13w,.fr-pb-first-26v,.fr-py-first-13w,.fr-py-first-26v{padding-bottom:6.5rem!important}.fr-p-first-27v{padding:6.75rem!important}.fr-pl-first-27v,.fr-px-first-27v{padding-left:6.75rem!important}.fr-pr-first-27v,.fr-px-first-27v{padding-right:6.75rem!important}.fr-pt-first-27v,.fr-py-first-27v{padding-top:6.75rem!important}.fr-pb-first-27v,.fr-py-first-27v{padding-bottom:6.75rem!important}.fr-p-first-14w,.fr-p-first-28v{padding:7rem!important}.fr-pl-first-14w,.fr-pl-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-left:7rem!important}.fr-pr-first-14w,.fr-pr-first-28v,.fr-px-first-14w,.fr-px-first-28v{padding-right:7rem!important}.fr-pt-first-14w,.fr-pt-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-top:7rem!important}.fr-pb-first-14w,.fr-pb-first-28v,.fr-py-first-14w,.fr-py-first-28v{padding-bottom:7rem!important}.fr-p-first-29v{padding:7.25rem!important}.fr-pl-first-29v,.fr-px-first-29v{padding-left:7.25rem!important}.fr-pr-first-29v,.fr-px-first-29v{padding-right:7.25rem!important}.fr-pt-first-29v,.fr-py-first-29v{padding-top:7.25rem!important}.fr-pb-first-29v,.fr-py-first-29v{padding-bottom:7.25rem!important}.fr-p-first-15w,.fr-p-first-30v{padding:7.5rem!important}.fr-pl-first-15w,.fr-pl-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-left:7.5rem!important}.fr-pr-first-15w,.fr-pr-first-30v,.fr-px-first-15w,.fr-px-first-30v{padding-right:7.5rem!important}.fr-pt-first-15w,.fr-pt-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-top:7.5rem!important}.fr-pb-first-15w,.fr-pb-first-30v,.fr-py-first-15w,.fr-py-first-30v{padding-bottom:7.5rem!important}.fr-p-first-31v{padding:7.75rem!important}.fr-pl-first-31v,.fr-px-first-31v{padding-left:7.75rem!important}.fr-pr-first-31v,.fr-px-first-31v{padding-right:7.75rem!important}.fr-pt-first-31v,.fr-py-first-31v{padding-top:7.75rem!important}.fr-pb-first-31v,.fr-py-first-31v{padding-bottom:7.75rem!important}.fr-p-first-16w,.fr-p-first-32v{padding:8rem!important}.fr-pl-first-16w,.fr-pl-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-left:8rem!important}.fr-pr-first-16w,.fr-pr-first-32v,.fr-px-first-16w,.fr-px-first-32v{padding-right:8rem!important}.fr-pt-first-16w,.fr-pt-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-top:8rem!important}.fr-pb-first-16w,.fr-pb-first-32v,.fr-py-first-16w,.fr-py-first-32v{padding-bottom:8rem!important}:root[data-fr-theme=dark]{--shadow-color:rgba(0,0,18,.32);--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}.fr-placement{position:fixed;width:max-content}@-moz-document url-prefix(){:root[data-fr-scrolling] body{position:sticky}:root{--underline-thickness:calc(0.0625em + 0.25px)}}.fr-displayed-lg{display:none!important}.fr-responsive-img--32x9{aspect-ratio:3.5555555556!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--16x9{aspect-ratio:1.7777777778!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x2{aspect-ratio:1.5!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--4x3{aspect-ratio:1.3333333333!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--1x1{aspect-ratio:1!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--3x4{aspect-ratio:.75!important;object-fit:cover;object-position:50% 50%}.fr-responsive-img--2x3{aspect-ratio:.6666666667!important;object-fit:cover;object-position:50% 50%}.fr-responsive-vid--16x9{aspect-ratio:1.7777777778!important}.fr-responsive-vid--4x3{aspect-ratio:1.3333333333!important}.fr-responsive-vid--1x1{aspect-ratio:1!important}.fr-fi--xs:after,.fr-fi--xs:before{--icon-size:0.75rem}.fr-fi--sm:after,.fr-fi--sm:before{--icon-size:1rem}.fr-fi--md:after,.fr-fi--md:before{--icon-size:1.5rem}.fr-fi--lg:after,.fr-fi--lg:before{--icon-size:2rem}.fr-artwork-decorative{fill:var(--artwork-decorative-blue-france)}.fr-artwork-minor{fill:var(--artwork-minor-red-marianne)}.fr-artwork-major{fill:var(--artwork-major-blue-france)}.fr-artwork-background{fill:var(--artwork-background-grey)}.fr-artwork-motif{fill:var(--artwork-motif-grey)}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:var(--artwork-minor-green-tilleul-verveine)}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:var(--artwork-minor-green-bourgeon)}.fr-artwork--green-emeraude .fr-artwork-minor{fill:var(--artwork-minor-green-emeraude)}.fr-artwork--green-menthe .fr-artwork-minor{fill:var(--artwork-minor-green-menthe)}.fr-artwork--green-archipel .fr-artwork-minor{fill:var(--artwork-minor-green-archipel)}.fr-artwork--blue-ecume .fr-artwork-minor{fill:var(--artwork-minor-blue-ecume)}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:var(--artwork-minor-blue-cumulus)}.fr-artwork--purple-glycine .fr-artwork-minor{fill:var(--artwork-minor-purple-glycine)}.fr-artwork--pink-macaron .fr-artwork-minor{fill:var(--artwork-minor-pink-macaron)}.fr-artwork--pink-tuile .fr-artwork-minor{fill:var(--artwork-minor-pink-tuile)}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:var(--artwork-minor-yellow-tournesol)}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:var(--artwork-minor-yellow-moutarde)}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:var(--artwork-minor-orange-terre-battue)}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:var(--artwork-minor-brown-cafe-creme)}.fr-artwork--brown-caramel .fr-artwork-minor{fill:var(--artwork-minor-brown-caramel)}.fr-artwork--brown-opera .fr-artwork-minor{fill:var(--artwork-minor-brown-opera)}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:var(--artwork-minor-beige-gris-galet)}[disabled] .fr-artwork *{fill:var(--text-disabled-grey)}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6,h1,h2,h3,h4,h5,h6{color:var(--text-title-grey)}.fr-upload-group .fr-label .fr-hint-text{margin-top:.75rem}.fr-upload-group .fr-label+.fr-upload{margin-top:1rem}.fr-upload-group .fr-message:first-child{margin-top:.5rem}.fr-upload{display:inline-flex;font-size:.875rem;line-height:1.5rem;margin:0;width:100%}.fr-upload:disabled::-webkit-file-upload-button{cursor:not-allowed;outline-style:none}.fr-upload::-webkit-file-upload-button{-webkit-appearance:button;-moz-appearance:button;appearance:button;cursor:pointer;font:inherit;margin-right:.5rem}.fr-range-group{position:relative}.fr-range-group--error:before,.fr-range-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}.fr-range{--thumb-size:1.5rem;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;position:relative}.fr-range input[type=range]{outline:none;width:100%}.fr-range__output{color:var(--text-active-blue-france);visibility:hidden}.fr-range__max,.fr-range__min,.fr-range__output{font-size:.75rem;line-height:1.25rem;min-width:var(--thumb-size);text-align:center}.fr-range[data-fr-js-range]{--progress-left:0;--progress-right:calc(var(--thumb-size)*0.5)}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border-radius:.375rem;content:"";display:block;forced-color-adjust:none;height:.75rem;left:0;position:absolute;right:0;top:1.625rem;width:100%}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);outline-offset:-1px}.fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);clip-path:polygon(var(--progress-left) 0,var(--progress-right) 0,var(--progress-right) 100%,var(--progress-left) 100%)}.fr-range[data-fr-js-range] input[type=range]{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;height:var(--thumb-size);width:100%;z-index:1}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:none}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-raised-grey);background-color:var(--background-default-grey);border:none;border:1px solid var(--border-action-high-blue-france);border-radius:50%;filter:drop-shadow(var(--raised-shadow));height:var(--thumb-size);pointer-events:auto;width:var(--thumb-size);z-index:calc(var(--ground) + 500)}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb:active{z-index:2}.fr-range[data-fr-js-range] input[type=range]:disabled{border-color:graytext}.fr-range[data-fr-js-range] .fr-range__output{visibility:visible}.fr-range--sm{--thumb-size:1rem}.fr-range--sm[data-fr-js-range]:after,.fr-range--sm[data-fr-js-range]:before{border-radius:.25rem;height:.5rem;top:1.5rem}.fr-range--step[data-fr-js-range]{--step-width:0}.fr-range--step[data-fr-js-range]:after,.fr-range--step[data-fr-js-range]:before{background-clip:content-box;background-position:.625rem 0;background-repeat:repeat-x;background-size:var(--step-width) 100%;padding-left:.625rem;padding-right:.625rem}.fr-range--step.fr-range--sm[data-fr-js-range]:after,.fr-range--step.fr-range--sm[data-fr-js-range]:before{background-position:.375rem 0;padding-left:.375rem;padding-right:.375rem}.fr-range--double .fr-range__output{min-width:calc(var(--thumb-size)*2)}.fr-range--double[data-fr-js-range] input[type=range]{width:calc(100% - var(--thumb-size))}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{margin-right:var(--thumb-size)}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){position:absolute;right:0;top:1.25rem}.fr-range--double.fr-range--step[data-fr-js-range]:after,.fr-range--double.fr-range--step[data-fr-js-range]:before{background-size:0}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{border:1px solid var(--border-disabled-grey)}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{border:1px solid var(--border-disabled-grey)}.fr-range__max,.fr-range__min{color:var(--text-mention-grey)}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-action-high-blue-france) 0,var(--background-action-high-blue-france) 1px,transparent 1px)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-action-low-blue-france) 0,var(--background-action-low-blue-france) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-active-blue-france),inset -10px 0 0 0 var(--border-active-blue-france)}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 var(--border-active-blue-france),inset -6px 0 0 0 var(--border-active-blue-france)}.fr-range-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-range-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,var(--background-disabled-grey) 0,var(--background-disabled-grey) 1px,transparent 1px)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,var(--background-default-grey) 0,var(--background-default-grey) 2px,transparent 2px);box-shadow:inset 10px 0 0 0 var(--border-disabled-grey),inset -10px 0 0 0 var(--border-disabled-grey)}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:var(--text-disabled-grey)}.fr-accordion{position:relative}.fr-accordion:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey),0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-accordion__title{display:block;font-size:unset;line-height:unset;margin:0}.fr-accordion:focus-within{z-index:1}.fr-accordion__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-accordion__btn:after,.fr-accordion__btn:before{display:block}.fr-accordion__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-accordion__btn:before{content:none}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion .fr-collapse{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-bottom:1.5rem;padding-top:1rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordion__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-badge{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:.25rem;color:var(--text-default-grey);display:inline-flex;flex-direction:row;font-size:.875rem;font-weight:700;line-height:1.5rem;max-height:none;max-width:100%;min-height:1.5rem;overflow:initial;padding:0 .5rem;text-transform:uppercase;width:-moz-fit-content;width:fit-content}.fr-badge:after,.fr-badge:before{display:block}.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--icon-left[class^=fr-fi-],.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-badge[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge--sm{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badge--sm,.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"],.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"],.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-],.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-badge--sm.fr-badge--icon-left[class*=" fr-fi-"]:before,.fr-badge--sm.fr-badge--icon-left[class*=" fr-icon-"]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-fi-]:before,.fr-badge--sm.fr-badge--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm[class*=" fr-fi-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class*=" fr-icon-"]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-fi-]:not([class*=fr-badge--icon-]):before,.fr-badge--sm[class^=fr-icon-]:not([class*=fr-badge--icon-]):before{content:none}.fr-badge:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-badge[class*=" fr-fi-"]:before,.fr-badge[class*=" fr-icon-"]:before,.fr-badge[class^=fr-fi-]:before,.fr-badge[class^=fr-icon-]:before{content:""}.fr-badge--sm:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-badge--error:before,.fr-badge--info:before,.fr-badge--new:before,.fr-badge--sm--error:before,.fr-badge--sm--info:before,.fr-badge--sm--new:before,.fr-badge--sm--success:before,.fr-badge--sm--warning:before,.fr-badge--success:before,.fr-badge--warning:before{content:""}.fr-badge--sm.fr-badge--no-icon:before,.fr-badge.fr-badge--no-icon:before{content:none}.fr-badges-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0;margin-left:-.25rem;margin-right:-.25rem}.fr-badges-group>li{display:inline-flex;max-width:100%}.fr-badges-group .fr-badge{margin:0 .25rem .5rem}.fr-badges-group--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-badges-group--sm .fr-badge:after,.fr-badges-group--sm .fr-badge:before{--icon-size:0.75rem}.fr-badge--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-badge--error{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-badge--success{--idle:transparent;--hover:var(--background-contrast-success-hover);--active:var(--background-contrast-success-active);background-color:var(--background-contrast-success);color:var(--text-default-success)}.fr-badge--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-badge--new{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}.fr-badge--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);color:var(--text-label-green-tilleul-verveine)}.fr-badge--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);color:var(--text-label-green-bourgeon)}.fr-badge--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);color:var(--text-label-green-emeraude)}.fr-badge--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);color:var(--text-label-green-menthe)}.fr-badge--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);color:var(--text-label-green-archipel)}.fr-badge--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);color:var(--text-label-blue-ecume)}.fr-badge--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);color:var(--text-label-blue-cumulus)}.fr-badge--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);color:var(--text-label-purple-glycine)}.fr-badge--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);color:var(--text-label-pink-macaron)}.fr-badge--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);color:var(--text-label-pink-tuile)}.fr-badge--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);color:var(--text-label-yellow-tournesol)}.fr-badge--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);color:var(--text-label-yellow-moutarde)}.fr-badge--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);color:var(--text-label-orange-terre-battue)}.fr-badge--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);color:var(--text-label-brown-cafe-creme)}.fr-badge--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);color:var(--text-label-brown-caramel)}.fr-badge--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);color:var(--text-label-brown-opera)}.fr-badge--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);color:var(--text-label-beige-gris-galet)}.fr-badge-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-badge-group>li{display:inline-flex;max-width:100%}.fr-badge-group .fr-badge{margin-bottom:.5rem;margin-right:.5rem}.fr-logo{--text-spacing:0;--underline-img:none;color:var(--text-black-white-grey);display:inline-block;font-size:1.05rem;font-weight:700;letter-spacing:-.01em;line-height:1.0317460317em;text-indent:-.1em;text-transform:uppercase;vertical-align:middle}.fr-logo:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2V15.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.1-.1l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2H14h-.1c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1h0c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000);background-position:0 -.0625rem,0 0,0 0;background-repeat:no-repeat,no-repeat,no-repeat;background-size:2.75rem 1.125rem,2.75rem 1rem,0;content:"";display:block;forced-color-adjust:none;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem;box-shadow:0 0 0 1px #fff}.fr-logo:after{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7H11l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6A5.6 5.6 0 013 19.5zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8C2 3.7 2.8 3 3.3 3c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6 0 2.9-1.4 6.3-3.5 6.3z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%23000' width='126' height='90' x='0' y='0' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E");background-position:0 calc(100% + 1.875rem);background-repeat:no-repeat;background-size:5.25rem 3.75rem;content:"";display:block;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{background-position:0 -.078125rem,0 0,0 0;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;height:1.25rem;margin-bottom:.4166666667rem;width:3.4375rem}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem);background-size:6.5625rem 4.6875rem;min-width:3.28125rem;padding-top:2.7604166667rem}[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:center;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem;width:-moz-fit-content;width:fit-content}.fr-btn:after,.fr-btn:before{display:block}.fr-btn[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--icon-left[class^=fr-fi-],.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.875rem;margin-right:-1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--icon-right[class^=fr-fi-],.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1rem;margin-right:-.875rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btn--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:2rem;max-width:2rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--sm[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--sm[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--sm.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-.625rem;margin-right:-.75rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--sm.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-.75rem;margin-right:-.625rem}.fr-btn--lg{font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btn--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--align-on-content{margin-left:-1.5rem;margin-right:-1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]){max-height:3rem;max-width:3rem;overflow:hidden;padding-left:.5rem;padding-right:.5rem;white-space:nowrap}.fr-btn--lg[class*=" fr-fi-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-fi-]:not([class*=fr-btn--icon-]):before,.fr-btn--lg[class^=fr-icon-]:not([class*=fr-btn--icon-]):before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content[class*=" fr-fi-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class*=" fr-icon-"]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-fi-]:not([class*=fr-btn--icon-]),.fr-btn--lg.fr-btn--align-on-content[class^=fr-icon-]:not([class*=fr-btn--icon-]){margin-left:-.5rem;margin-right:-.5rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-left[class^=fr-icon-]{margin-left:-1.3125rem;margin-right:-1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:after,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:after,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class*=" fr-icon-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-icon-]:before{content:none}.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class*=" fr-icon-"],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-fi-],.fr-btn--lg.fr-btn--align-on-content.fr-btn--icon-right[class^=fr-icon-]{margin-left:-1.5rem;margin-right:-1.3125rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem}.fr-btns-group>div,.fr-btns-group>li{max-width:100%;width:100%}.fr-btns-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-btns-group--inline .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--between,.fr-btns-group--between li{justify-content:space-between;text-align:center}.fr-btns-group--equisized{--equisized-width:auto}.fr-btns-group--equisized .fr-btn{justify-content:center;width:var(--equisized-width)}.fr-btns-group--sm .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;justify-content:flex-start;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:0;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;min-height:3rem;padding:.5rem 1.5rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:1.125rem;justify-content:flex-start;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]{font-size:1.125rem;line-height:1.75rem;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.5rem 1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-icon-]:before{content:none}.fr-fieldset__element>.fr-btns-group{margin-bottom:-1rem}.fr-btn--close{display:flex;font-size:.875rem;line-height:1.5rem;margin-left:auto;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--close:before{content:none}.fr-btn--tooltip{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--tooltip:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--fullscreen:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--fullscreen:before{content:none}.fr-btn--display{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-btn--display:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--account{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--account:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--team{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--team:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--briefcase{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-btn--briefcase:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--sort[aria-sort=descending]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sort=ascending],.fr-btn--sort[aria-sort=descending]{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn:disabled,a.fr-btn:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--secondary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);color:var(--text-action-high-blue-france)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-connect{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active);--external-link-content:none;--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);align-items:flex-start;background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france);display:inline-flex;flex-direction:column;justify-content:center;margin-bottom:.75rem;padding:.625em .75em .625em 4em;position:relative}.fr-connect:hover{background-color:var(--hover-tint)}.fr-connect:active{background-color:var(--active-tint)}.fr-connect:before{background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 48'%3E%3Cpath fill='%232a2f82' d='M34.965 15.1 19.971 6.423 4.977 15.184a.606.606 0 0 0-.306.524v16.948a.666.666 0 0 0 .306.524l14.992 8.6 14.994-8.706a.665.665 0 0 0 .306-.524V15.628a.605.605 0 0 0-.304-.528Z'/%3E%3Cpath fill='%23df1f26' d='m14.614 15.6-5.029 8.628-4.557-9.175 5.39-3.113 4.489 3.16ZM35.27 32.58V15.622a.6.6 0 0 0-.306-.523L19.971 6.423'/%3E%3Cpath fill='%232e65b0' d='m4.673 32.58 15.3-26.157v35.362L4.977 33.18a.666.666 0 0 1-.306-.524V15.708Zm24.669-20.735L34.8 15l-4.489 9.15-5.387-9.236Z'/%3E%3Cpath fill='%23fff' d='m39.606 12.305-19.19-11.02a.933.933 0 0 0-.832 0L.394 12.305A.886.886 0 0 0 0 13v22a.886.886 0 0 0 .394.7l19.189 11.02a.933.933 0 0 0 .832 0L39.606 35.7A.886.886 0 0 0 40 35V13a.886.886 0 0 0-.394-.695ZM10.762 30.061h.079c-.042 0-.079.007-.079.05 0 .1.151 0 .2.1a.912.912 0 0 0-.629.276c0 .051.1.051.151.051-.075.1-.226.05-.277.151a.177.177 0 0 0 .1.05c-.05 0-.1 0-.1.051v.151c-.126 0-.176.1-.277.151.2.151.327 0 .528 0-.528.2-.956.478-1.484.629-.1 0 0 .151-.1.151.151.1.227-.05.377-.05-.654.377-1.333.7-2.037 1.132a.351.351 0 0 0-.1.2h-.2c-.1.05-.05.176-.151.277.226.151.5-.2.654 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1h-.154c-.1.075-.2.126-.2.276a.219.219 0 0 0-.226.1 9.034 9.034 0 0 0 3.144-.578 7.685 7.685 0 0 0 2.088-1.559.176.176 0 0 1 .05.1 2.168 2.168 0 0 1-.806 1.08c-.277.151-.478.377-.7.478a4.045 4.045 0 0 0-.428.276 10.761 10.761 0 0 1-1.939.412l-.305.044c-.225.033-.449.069-.671.108L4.977 33.18a.648.648 0 0 1-.288-.411.574.574 0 0 0 .094-.063.265.265 0 0 0-.113-.071v-.65a12.786 12.786 0 0 0 3.038-.942A8.746 8.746 0 0 0 4.671 29.7v-1.515a11.662 11.662 0 0 1 1.639.392 6.415 6.415 0 0 1 1.182.578 3.113 3.113 0 0 0 .478.377.91.91 0 0 0 .8.05h.33a3.961 3.961 0 0 0 1.937-.905c0 .05.05.05.1.05a3.63 3.63 0 0 1-.428 1.132c.003.051-.048.152.053.202Zm2.817 3.571c.251-.1.4-.277.629-.377-.05.05-.05.151-.1.2a3.691 3.691 0 0 0-.528.4 15.96 15.96 0 0 0-1.585 1.61c-.252.3-.528.578-.8.855a2.385 2.385 0 0 1-.31.245l-2.527-1.45a4.047 4.047 0 0 0 1.076-.053 4.984 4.984 0 0 0 .855-.327v.1c.7-.277 1.232-.906 1.937-1.132.025 0 .126.1.226.05a1.883 1.883 0 0 1 1.509-.7c0 .05 0 .1.05.1h.025c-.151.126-.327.251-.5.377-.057.052-.007.102.043.102Zm-8.908-6.164v-.186a5.814 5.814 0 0 1 1.588-.188 1.52 1.52 0 0 1 .478 0 5.861 5.861 0 0 0-2.066.374Zm30.6 5.088a.665.665 0 0 1-.306.524l-10.079 5.851a32.3 32.3 0 0 1-3.408-1.185 2.826 2.826 0 0 1-.05-2.245 3.794 3.794 0 0 1 .352-.883c.025-.025.05-.05.05-.076a.025.025 0 0 0 .025-.025 4.316 4.316 0 0 1 .377-.555l.015-.015.02-.021.015-.015c0-.025.025-.05.05-.076.025-.051.075-.076.1-.126a3.771 3.771 0 0 1 .579-.5 4.07 4.07 0 0 1 .654-.177 19.817 19.817 0 0 1 2.415.328.751.751 0 0 1 .277.1 1.849 1.849 0 0 0 .905-.05 1.137 1.137 0 0 0 .855-.706 1.212 1.212 0 0 0 .05-1.059c-.178-.276-.013-.437.181-.59l.068-.055a1.17 1.17 0 0 0 .231-.216c.126-.252-.1-.4-.151-.63-.05-.1-.226-.05-.327-.2.352-.151.855-.429.629-.857-.151-.227-.377-.63-.1-.857.352-.2.855-.151 1.006-.479a1.138 1.138 0 0 0-.292-1.085l-.075-.108a4.754 4.754 0 0 1-.211-.32 6.914 6.914 0 0 0-.528-.757 4.3 4.3 0 0 1-.528-1.009c-.151-.378.05-.706.05-1.084a6.347 6.347 0 0 0-.327-2.144c-.126-.353-.176-.731-.327-1.059a1.12 1.12 0 0 0-.226-.58.375.375 0 0 1 0-.328 4.874 4.874 0 0 0 .579-.479.567.567 0 0 0-.2-.706c-.327-.151-.3.328-.528.429h-.151c-.05-.126.05-.177.151-.277 0-.05 0-.151-.05-.151-.2 0-.377-.051-.428-.151a3.957 3.957 0 0 0-1.861-1.286 2.319 2.319 0 0 0 .579.1 1.67 1.67 0 0 0 1.006-.1c.227-.076.277-.479.377-.706a.8.8 0 0 0-.151-.631 2.189 2.189 0 0 0-.906-.756 9.13 9.13 0 0 1-.679-.353.952.952 0 0 0-.251-.126c-2.965-1.485-9.069-.2-9.534 0h-.009a8.244 8.244 0 0 0-1.249.475 3.922 3.922 0 0 0-2.365 2.465 3.829 3.829 0 0 0-1.333 1.509c-.428.8-1.056 1.509-.956 2.414.1.78.277 1.484.428 2.289a4.668 4.668 0 0 0 .2.8c.1.276 0 .629.151.855.075.151.025.327.227.428v.2c.05.05.05.1.151.1v.2a6.446 6.446 0 0 1 1.107 1.434c.1.276-.478.151-.7.05a5.979 5.979 0 0 1-1.132-.956.175.175 0 0 0-.051.1c.2.352.906.78.528 1.006-.2.1-.428-.151-.629.051-.05.075 0 .176 0 .276-.277-.2-.578-.1-.855-.2-.2-.05-.252-.427-.478-.427a15.162 15.162 0 0 0-1.811-.327 15.137 15.137 0 0 0-1.739-.159V15.708a.606.606 0 0 1 .306-.524l14.987-8.761L34.965 15.1a.605.605 0 0 1 .306.524Zm-7.954-8.261a.325.325 0 0 1-.282.149 2.843 2.843 0 0 0-.282.273c.1 0 0 .149.1.149-.205.223.077.694-.205.793a2.176 2.176 0 0 1-1.127 0 .722.722 0 0 1 .167-.016h.085a.382.382 0 0 0 .337-.132v-.2c0-.05-.051-.05-.1-.05a.161.161 0 0 1-.1.05.223.223 0 0 0-.154-.2.807.807 0 0 1-.718-.273.67.67 0 0 1 .436-.05c.128 0 .077-.223.231-.322h.154c.307-.372.871-.471.974-.843 0-.1-.282-.1-.487-.149a2.259 2.259 0 0 0-.82.05 4.65 4.65 0 0 0-1.051.273 3.225 3.225 0 0 1 .923-.471 3.886 3.886 0 0 1 .718-.2l.132-.026.133-.027a.971.971 0 0 1 .556 0c.231.1.615.1.666.248.1.273-.154.545-.435.744-.057.081.148.135.148.23Z'/%3E%3C/svg%3E");background-position:50% 50%;background-repeat:no-repeat;background-size:2.5em 3em;bottom:.25em;content:"";display:block;height:3em;left:.75em;margin-top:-1.5em;position:absolute;top:50%;width:2.5em}.fr-connect__brand,.fr-connect__login{line-height:1;white-space:nowrap;z-index:1}.fr-connect__login{font-size:1.0625em}.fr-connect__brand{font-size:1.125em;font-weight:700}.fr-connect--plus{padding-right:3em}.fr-connect--plus:after{bottom:0;content:"+";display:block;font-size:3em;font-weight:700;line-height:1;position:absolute;right:.25em;transform:translate(5%,-17%)}.fr-connect-group{--text-spacing:0 0 1rem 0}.fr-connect-group p{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-connect-group .fr-connect+p a{color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem}.fr-connect:disabled,a.fr-connect:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-quote{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:.5rem 100%;background-repeat:no-repeat;background-size:50% 1px;margin:0;padding:0 .5rem 2rem;position:relative}.fr-quote:after,.fr-quote:before{--icon-size:2rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-quote:before{color:var(--artwork-minor-blue-france);content:"";display:block;margin-bottom:.5rem}.fr-quote--column{align-items:flex-start;display:flex;flex-direction:column;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{align-items:flex-start;display:flex;flex-direction:column;justify-content:center;min-height:4.25rem}.fr-quote blockquote{--text-spacing:0 0 1rem;margin:0}.fr-quote blockquote p{font-size:1.25rem;font-weight:700;line-height:2rem}.fr-quote__author{--text-spacing:0 0 0.25rem;font-size:1rem;font-weight:700;line-height:1.5rem}.fr-quote__image{background-size:cover;border-radius:50%;display:flex;flex-direction:row;overflow:hidden;position:absolute;width:4.25rem}.fr-quote__image img{height:100%;object-fit:cover;width:100%}.fr-quote cite{font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;flex-wrap:wrap;font-size:.75rem;justify-content:flex-start;line-height:1.25rem}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote--green-tilleul-verveine:before{color:var(--artwork-minor-green-tilleul-verveine)}.fr-quote--green-bourgeon:before{color:var(--artwork-minor-green-bourgeon)}.fr-quote--green-emeraude:before{color:var(--artwork-minor-green-emeraude)}.fr-quote--green-menthe:before{color:var(--artwork-minor-green-menthe)}.fr-quote--green-archipel:before{color:var(--artwork-minor-green-archipel)}.fr-quote--blue-ecume:before{color:var(--artwork-minor-blue-ecume)}.fr-quote--blue-cumulus:before{color:var(--artwork-minor-blue-cumulus)}.fr-quote--purple-glycine:before{color:var(--artwork-minor-purple-glycine)}.fr-quote--pink-macaron:before{color:var(--artwork-minor-pink-macaron)}.fr-quote--pink-tuile:before{color:var(--artwork-minor-pink-tuile)}.fr-quote--yellow-tournesol:before{color:var(--artwork-minor-yellow-tournesol)}.fr-quote--yellow-moutarde:before{color:var(--artwork-minor-yellow-moutarde)}.fr-quote--orange-terre-battue:before{color:var(--artwork-minor-orange-terre-battue)}.fr-quote--brown-cafe-creme:before{color:var(--artwork-minor-brown-cafe-creme)}.fr-quote--brown-caramel:before{color:var(--artwork-minor-brown-caramel)}.fr-quote--brown-opera:before{color:var(--artwork-minor-brown-opera)}.fr-quote--beige-gris-galet:before{color:var(--artwork-minor-beige-gris-galet)}.fr-quote__source{color:var(--text-mention-grey)}.fr-breadcrumb{--text-spacing:0 0 0.5rem;color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin:1rem 0 2rem;position:relative}.fr-breadcrumb__button{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;font-size:.75rem;line-height:1.25rem;margin:0;padding:0;transition:background-size 0s}.fr-breadcrumb__button:active,.fr-breadcrumb__button:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;transform:translateY(4px)}.fr-breadcrumb__list li{display:inline;line-height:1.75rem}.fr-breadcrumb__list li:not(:first-child):before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:.25rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:-.0625em;width:var(--icon-size)}.fr-breadcrumb__link{--hover-tint:var(--idle);--active-tint:var(--idle);background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);font-size:.75rem;line-height:1.25rem;padding:0;position:relative;transition:background-size 0s;vertical-align:.25rem}.fr-breadcrumb__link:active,.fr-breadcrumb__link:hover{--underline-hover-width:var(--underline-max-width)}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){--underline-img:none;color:var(--text-default-grey);cursor:default;pointer-events:none}.fr-label{color:var(--text-label-grey);display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{--text-spacing:0 0 1rem;display:block;font-size:.75rem;line-height:1.25rem}.fr-hint-text+.fr-hint-text{margin-top:.25rem}.fr-fieldset{align-items:flex-end;border:0;display:flex;flex-direction:row;flex-wrap:wrap;margin:0 -.75rem 1rem;padding:0 .25rem;position:relative}.fr-fieldset__legend{color:var(--text-label-grey);font-size:1rem;font-weight:700;line-height:1.5rem;margin-left:-.25rem;margin-right:-.25rem;padding-bottom:1rem;padding-left:.75rem;padding-right:.75rem;width:100%}.fr-fieldset__legend--regular{font-weight:400}.fr-fieldset__legend .fr-hint-text{font-weight:400;margin-top:.5rem}.fr-fieldset--error,.fr-fieldset--info,.fr-fieldset--valid{background-position:0 -2.25rem;background-repeat:no-repeat;background-size:2px calc(100% + 1.25rem)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--valid .fr-fieldset__legend{background-position:0 0;background-repeat:no-repeat;background-size:2px 100%}.fr-fieldset__element{align-self:flex-start;flex:1 1 100%;margin-bottom:1rem;max-width:100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset__element--inline{flex:0 0 auto}.fr-fieldset__element--inline-grow,.fr-fieldset__element--inline\@md.fr-fieldset__element--inline-grow{flex-grow:1}.fr-fieldset__element--year{flex:0 0 8rem}.fr-fieldset__element--year:not(.fr-fieldset__element--inline){margin-right:calc(100% - 8rem)}.fr-fieldset__element--postal{flex:0 0 16rem}.fr-fieldset__element--postal:not(.fr-fieldset__element--inline){margin-right:calc(100% - 16rem)}.fr-fieldset__element--number{flex:0 0 6rem}.fr-fieldset__element--number:not(.fr-fieldset__element--inline){margin-right:calc(100% - 6rem)}.fr-fieldset__element>.fr-fieldset:last-child:after,.fr-fieldset__element>h1:last-child:after,.fr-fieldset__element>h2:last-child:after,.fr-fieldset__element>h3:last-child:after,.fr-fieldset__element>h4:last-child:after,.fr-fieldset__element>h5:last-child:after,.fr-fieldset__element>h6:last-child:after,.fr-fieldset__element>p:last-child:after,.fr-fieldset__legend>.fr-fieldset:last-child:after,.fr-fieldset__legend>h1:last-child:after,.fr-fieldset__legend>h2:last-child:after,.fr-fieldset__legend>h3:last-child:after,.fr-fieldset__legend>h4:last-child:after,.fr-fieldset__legend>h5:last-child:after,.fr-fieldset__legend>h6:last-child:after,.fr-fieldset__legend>p:last-child:after{content:"";display:block;margin-bottom:-1rem}.fr-fieldset>.fr-messages-group{flex:1 1 100%;padding-left:.5rem;padding-right:.5rem}.fr-fieldset>.fr-messages-group>.fr-message:last-child{margin-bottom:1rem}.fr-message{--comma:", ";--content:var(--comma);align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin:0 0 .25rem}.fr-message:after{clip:rect(0,0,0,0);border:0;content:var(--content);display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-message:last-child{--comma:". ";margin-bottom:0}.fr-message--error:before,.fr-message--info:before,.fr-message--valid:before,.fr-message--warning:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;margin-top:.125rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-message--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-message--valid:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:var(--text-default-success)}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:var(--text-default-error)}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:var(--text-default-info)}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:var(--text-disabled-grey)}.fr-label--error{color:var(--text-default-error)}.fr-label--success{color:var(--text-default-success)}.fr-label--info{color:var(--text-default-info)}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:var(--text-disabled-grey)}.fr-hint-text,.fr-message{color:var(--text-mention-grey)}.fr-message--error{color:var(--text-default-error)}.fr-message--valid{color:var(--text-default-success)}.fr-message--info{color:var(--text-default-info)}.fr-message--warning{color:var(--text-default-warning)}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:var(--text-disabled-grey)}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:var(--text-default-error)}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:var(--text-default-success)}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:var(--text-default-info)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem}.fr-fieldset--inline .fr-fieldset__content{align-items:baseline;display:flex;flex-wrap:wrap;justify-content:flex-start;margin:-.75rem .5rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child){margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child{margin-bottom:0}.fr-fieldset__content{margin:0 .5rem;position:relative;width:100%}.fr-fieldset__content .fr-checkbox-group:first-child,.fr-fieldset__content .fr-radio-group:first-child{margin-top:-.75rem}.fr-fieldset__content .fr-checkbox-group label,.fr-fieldset__content .fr-radio-group label{padding:.75rem 0}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]+label:before,.fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label:before{top:.75rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-info-text,.fr-fieldset__content+.fr-valid-text{margin-bottom:1rem;margin-left:.5rem;margin-top:0}.fr-error-text,.fr-info-text,.fr-valid-text{align-items:center;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.25rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-error-text+.fr-error-text,.fr-error-text+.fr-info-text,.fr-error-text+.fr-valid-text,.fr-info-text+.fr-error-text,.fr-info-text+.fr-info-text,.fr-info-text+.fr-valid-text,.fr-valid-text+.fr-error-text,.fr-valid-text+.fr-info-text,.fr-valid-text+.fr-valid-text{margin-top:.25rem}.fr-error-text:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-valid-text:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-info-text:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-error-text{color:var(--text-default-error)}.fr-valid-text{color:var(--text-default-success)}.fr-info-text{color:var(--text-default-info)}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-error)}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 var(--border-plain-info)}.fr-stepper{--title-spacing:0;--text-spacing:0;display:flex;flex-direction:column;margin-bottom:2rem}.fr-stepper__title{--title-spacing:0 0 0.75rem 0;--text-spacing:0 0 0.75rem 0;color:var(--text-title-grey);display:flex;flex-direction:column-reverse;font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-stepper__state{--title-spacing:0 0 0.25rem 0;--text-spacing:0 0 0.25rem 0;color:var(--text-mention-grey);font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-stepper__state:after{content:"\a";line-height:2rem;white-space:pre}.fr-stepper__details{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;margin-top:.75rem}.fr-stepper .fr-stepper__steps[data-fr-steps="2"][data-fr-current-step="2"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="3"][data-fr-current-step="3"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="4"][data-fr-current-step="4"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="5"][data-fr-current-step="5"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="6"][data-fr-current-step="6"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="7"][data-fr-current-step="7"]+.fr-stepper__details,.fr-stepper .fr-stepper__steps[data-fr-steps="8"][data-fr-current-step="8"]+.fr-stepper__details{display:none}.fr-stepper__steps{--stepper-size:0.5rem;--default-outer:calc((100% + var(--stepper-size))/var(--steps));--default-inner:calc(var(--default-outer) - var(--stepper-size));--active-outer:calc((100% + var(--stepper-size))/var(--current-step));--active-inner:calc(var(--active-outer) - var(--stepper-size));--current-step:0;background-image:repeating-linear-gradient(to right,var(--background-active-blue-france) 0,var(--background-active-blue-france) var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,var(--background-contrast-grey) 0,var(--background-contrast-grey) var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));background-position:0 0,0 0;background-repeat:no-repeat;background-size:calc((100% + var(--stepper-size))*var(--current-step)/var(--steps) - var(--stepper-size)) 100%,100% 100%;height:var(--stepper-size);width:100%}.fr-stepper__steps[data-fr-steps="2"]{--steps:2;--step-width:50%}.fr-stepper__steps[data-fr-steps="3"]{--steps:3;--step-width:33.33333%}.fr-stepper__steps[data-fr-steps="4"]{--steps:4;--step-width:25%}.fr-stepper__steps[data-fr-steps="5"]{--steps:5;--step-width:20%}.fr-stepper__steps[data-fr-steps="6"]{--steps:6;--step-width:16.66667%}.fr-stepper__steps[data-fr-steps="7"]{--steps:7;--step-width:14.28571%}.fr-stepper__steps[data-fr-steps="8"]{--steps:8;--step-width:12.5%}.fr-stepper__steps[data-fr-current-step="1"]{--current-step:1}.fr-stepper__steps[data-fr-current-step="2"]{--current-step:2}.fr-stepper__steps[data-fr-current-step="3"]{--current-step:3}.fr-stepper__steps[data-fr-current-step="4"]{--current-step:4}.fr-stepper__steps[data-fr-current-step="5"]{--current-step:5}.fr-stepper__steps[data-fr-current-step="6"]{--current-step:6}.fr-stepper__steps[data-fr-current-step="7"]{--current-step:7}.fr-stepper__steps[data-fr-current-step="8"]{--current-step:8}.fr-tooltip{--arrow-x:0;background-position:calc(50% + var(--arrow-x)) calc(100% - .5rem),calc(50% + var(--arrow-x)) calc(100% - .375rem),50% calc(100% - .75rem),50% calc(100% - .75rem);background-repeat:no-repeat;background-size:.5rem .375rem,.5rem .375rem,100% 1px,100% calc(100% - .75rem);color:var(--text-default-grey);display:block;font-size:.75rem;line-height:1.25rem;max-width:min(24rem,calc(66.66667vw - 1.33333rem));opacity:1;padding:.5rem .5rem 1.25rem;text-align:left;transition:opacity 0s .15s,visibility 0s .15s;visibility:visible;white-space:normal}.fr-tooltip:not(.fr-tooltip--shown){display:none;opacity:0}.fr-tooltip--hidding{opacity:0}.fr-tooltip.fr-placement--bottom{background-position-y:.5rem,.375rem,.75rem,.75rem;padding-bottom:.5rem;padding-top:1.25rem}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey));filter:drop-shadow(var(--overlap-shadow));z-index:calc(var(--ground) + 1000)}@supports (background:conic-gradient(white,black)){.fr-tooltip.fr-placement--top{background-image:conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from -33.69deg at 50% 100%,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}.fr-tooltip.fr-placement--bottom{background-image:conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--background-overlap-grey) 0deg,var(--background-overlap-grey) 67.38deg,transparent 67.38deg),conic-gradient(from 146.31deg at 50% 0,transparent 0deg,var(--border-default-grey) 0deg,var(--border-default-grey) 67.38deg,transparent 67.38deg),linear-gradient(90deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(90deg,var(--background-overlap-grey),var(--background-overlap-grey))}}.fr-link{--text-spacing:0;--title-spacing:0;color:var(--text-action-high-blue-france);display:inline;font-size:1rem;line-height:1.5rem;padding:0}.fr-link[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class*=" fr-icon-"],.fr-link--icon-left[class^=fr-fi-],.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class*=" fr-icon-"],.fr-link--icon-right[class^=fr-fi-],.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--icon-right[class^=fr-icon-]:before,.fr-link[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--xs{font-size:.75rem;line-height:1.25rem;padding:0}.fr-link--xs[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-left[class^=fr-fi-],.fr-link--xs.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.5rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"],.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"],.fr-link--xs.fr-link--icon-right[class^=fr-fi-],.fr-link--xs.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:0.75rem;content:"";margin-left:.5rem;margin-right:-.09375rem}.fr-link--xs.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--xs.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--xs.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--xs.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--xs[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--xs[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--sm{font-size:.875rem;line-height:1.5rem;padding:0}.fr-link--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-],.fr-link--sm.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-],.fr-link--sm.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--sm.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--sm[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--sm[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}.fr-link--lg{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-link--lg[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg[target=_blank]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-],.fr-link--lg.fr-link--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-left[class^=fr-icon-]:before{--icon-size:1.5rem;margin-left:-.1875rem;margin-right:.5rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-],.fr-link--lg.fr-link--icon-right[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:after,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:after,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:after,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:after{--icon-size:1.5rem;content:"";margin-left:.5rem;margin-right:-.1875rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class*=" fr-icon-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before,.fr-link--lg.fr-link--icon-right[class^=fr-icon-]:before,.fr-link--lg[class*=" fr-fi-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class*=" fr-icon-"]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-fi-]:not([class*=fr-link--icon-]):before,.fr-link--lg[class^=fr-icon-]:not([class*=fr-link--icon-]):before{content:none}button.fr-link{text-align:left}.fr-link--download,.fr-links-group--download .fr-link{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0;position:relative}.fr-link--download:after,.fr-links-group--download .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-bottom:1.75rem;margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);vertical-align:calc((.75rem - var(--icon-size))*.5 - 1.75rem);width:var(--icon-size)}.fr-link--download:before,.fr-links-group--download .fr-link:before{content:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;margin-top:1.75rem;pointer-events:none;position:absolute;white-space:nowrap}.fr-link--download .fr-link__detail abbr,.fr-links-group--download .fr-link .fr-link__detail abbr{text-decoration:none}.fr-links-group--download{--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  "}.fr-links-group--download>li{display:block}.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:2.5rem}.fr-links-group{--li-bottom:0.5rem}.fr-links-group--inline{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline;margin:0 -.5rem}.fr-links-group--inline>li{display:inline;line-height:2.75rem}.fr-links-group--inline .fr-link{margin:0 .5rem 1rem}.fr-links-group--sm .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-links-group--sm .fr-link:after,.fr-links-group--sm .fr-link:before{--icon-size:1rem}.fr-links-group--sm .fr-link:not(.fr-link--download){vertical-align:top}.fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;padding:0}.fr-links-group--lg .fr-link:after,.fr-links-group--lg .fr-link:before{--icon-size:1.5rem}.fr-links-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-link--close{--hover:inherit;--active:inherit;align-items:center;background-color:transparent;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-left:auto;margin-right:-1rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-link--close:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-link--close:before{content:none}.fr-link.fr-link--icon-left.fr-fi-theme-fill{font-size:1rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-link.fr-link--icon-left.fr-fi-theme-fill:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-link__detail{color:var(--text-mention-grey)}.fr-links-group li::marker{color:var(--text-action-high-blue-france)}.fr-link--close:disabled,a.fr-link--close:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;--text-spacing:0;--title-spacing:0;box-shadow:inset 0 -1px 0 0 var(--border-default-grey),inset 0 1px 0 0 var(--border-default-grey);margin-left:-1rem;margin-right:-1rem;position:relative}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu .fr-collapse{margin:-.25rem -.25rem 0;padding:.25rem .25rem 0}.fr-sidemenu .fr-collapse.fr-collapsing{margin-bottom:0;margin-top:0;padding-bottom:0;padding-top:0}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.75rem;padding:1rem 0}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{font-weight:400;margin:0 1rem 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;font-weight:400;line-height:1.5rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item:before{content:none}.fr-sidemenu__inner>.fr-collapse{margin:-.25rem .75rem 0;padding:.25rem .75rem 0}.fr-sidemenu__btn,.fr-sidemenu__link{--hover-tint:var(--hover);--active-tint:var(--active);align-items:center;color:var(--text-action-high-blue-france);display:flex;flex-direction:row;font-size:1rem;font-weight:700;line-height:1.5rem;padding:.75rem 1rem;position:relative;text-align:left;width:100%}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--border-active-blue-france-hover);--active:var(--border-active-blue-france-active);background-color:var(--border-active-blue-france);bottom:.75rem;content:"";left:0;position:absolute;top:.75rem;width:2px}.fr-sidemenu__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-sidemenu__btn[aria-expanded]{align-items:center;display:flex;flex-direction:row}.fr-sidemenu__btn[aria-expanded]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{font-weight:500;outline-offset:-2px;width:100%}.fr-sidemenu__inner>.fr-sidemenu__btn:after{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:var(--text-action-high-grey)}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-sidemenu__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-highlight{background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;font-size:1rem;line-height:1.5rem;padding-left:1.25rem}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-tabs__tab{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);align-items:center;background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 calc(100% - 1px),100% calc(100% - 1px),100% 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:0 2px,1px 0,1px 0,100% 1px;box-shadow:0 2px 0 0 var(--background-default-grey);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;line-height:1.5rem;margin:0 .25rem;min-height:2.5rem;overflow:visible;padding:.5rem 1rem;position:relative;white-space:nowrap;width:-moz-fit-content;width:fit-content;z-index:1}.fr-tabs__tab:after,.fr-tabs__tab:before{display:block}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]),.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]){max-height:2.5rem;max-width:2.5rem;overflow:hidden;padding-left:.75rem;padding-right:.75rem;white-space:nowrap}.fr-tabs__tab[class*=" fr-fi-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class*=" fr-icon-"]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-fi-]:not([class*=fr-tabs__tab--icon-]):before,.fr-tabs__tab[class^=fr-icon-]:not([class*=fr-tabs__tab--icon-]):before{--icon-size:1rem;margin-left:0;margin-right:.75rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class*=" fr-icon-"],.fr-tabs__tab--icon-left[class^=fr-fi-],.fr-tabs__tab--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class*=" fr-icon-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before,.fr-tabs__tab--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-tabs{--tabs-height:auto;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--underline-img:none;align-items:flex-start;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;height:var(--tabs-height);margin-left:0;margin-right:0;margin-top:-4px;overflow:hidden;padding-top:4px;position:relative;transition:height .3s}.fr-tabs--viewport-width{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs:before{box-shadow:inset 0 1px 0 0 var(--border-default-grey),inset 1px 0 0 0 var(--border-default-grey),inset -1px 0 0 0 var(--border-default-grey);content:"";display:block;height:100%;margin-top:-1px;order:2;width:100%}.fr-tabs__list{align-items:stretch;display:flex;margin:-4px 0;min-height:3rem;order:1;overflow-x:auto;padding:4px .75rem;width:100%;z-index:1}.fr-tabs__tab[aria-selected=true]{background-size:100% 2px,1px calc(100% - 1px),1px calc(100% - 1px),0 1px}.fr-tabs__panel{--underline-img:linear-gradient(0deg,currentColor,currentColor);--ul-type:disc;--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".  ";display:block;flex:0 0 100%;height:auto;left:-100%;margin-right:-100%;order:3;padding:1rem;position:relative;transition:visibility .3s,transform .3s;width:100%}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel--direction-end{transform:translate(100%)}.fr-tabs__panel--direction-start{transform:translate(-100%)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs__shadow{--tabs-list-height:3rem}.fr-tabs__shadow:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset 0 0 0 0 hsla(0,0%,9%,0);content:"";display:block;height:calc(var(--tabs-list-height) - 8px);left:0;opacity:.8;pointer-events:none;position:absolute;right:0;top:4px;transition:box-shadow .3s;z-index:2}.fr-tabs__shadow--left:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset 0 0 0 0 hsla(0,0%,9%,0)}.fr-tabs__shadow--right:before{box-shadow:inset 0 0 0 0 hsla(0,0%,9%,0),inset -2rem 0 1.5rem -2rem #161616}.fr-tabs__shadow--left.fr-tabs__shadow--right:before{box-shadow:inset 2rem 0 1.5rem -2rem #161616,inset -2rem 0 1.5rem -2rem #161616}:root[data-fr-theme=dark] .fr-tabs__shadow:before{opacity:1}.fr-tabs__tab:not([aria-selected=true]){--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-grey)}.fr-tabs__tab[aria-selected=true]:not(:disabled){--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));color:var(--text-active-blue-france)}.fr-tabs__tab:disabled{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-pagination__link{--text-spacing:0;--title-spacing:0;--hover-tint:var(--hover);--underline-img:none;align-items:center;display:inline-flex;flex-direction:row;font-size:.875rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;min-height:2rem;min-width:2rem;padding:.25rem .75rem;position:relative;width:-moz-fit-content;width:fit-content}.fr-pagination__link:after,.fr-pagination__link:before{display:block}.fr-pagination{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;color:var(--text-action-high-grey)}.fr-pagination__list{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-pagination__link--first{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--first:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--first.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--first.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--prev:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--prev.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--prev.fr-pagination__link--label:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--next:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--next.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--next.fr-pagination__link--label:before{content:none}.fr-pagination__link--last{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-pagination__link--last:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-pagination__link--last.fr-pagination__link--label:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-pagination__link--last.fr-pagination__link--label:before{content:none}.fr-pagination__link[aria-current]:not([aria-current=false]){--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france);color:var(--text-inverted-blue-france)}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:var(--text-disabled-grey)}.fr-summary{--text-spacing:0 0 0.5rem 0;--title-spacing:0 0 0.5rem 0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);font-size:.75rem;line-height:1.25rem;padding:1.5rem}.fr-summary ol{list-style-type:none}.fr-summary li{padding:.5rem 0}.fr-summary li::marker{content:none}.fr-summary__title{color:var(--text-title-grey);font-size:.75rem;font-weight:700;line-height:1.25rem;padding-left:.5rem;text-transform:uppercase}.fr-summary__link{display:inline;font-size:.75rem;line-height:1.25rem;position:relative}.fr-summary__link:before{content:var(--ol-content);font-size:var(--xl-size);font-weight:700;position:absolute;right:100%}.fr-summary__link:not(:hover):not(:active){--underline-idle-width:0}.fr-summary li>a{color:var(--text-action-high-grey)}.fr-table{--table-offset:0px;--row-height:0.125rem;--text-spacing:0;--title-spacing:0;margin-bottom:2.5rem;margin-top:1rem;position:relative}.fr-table,.fr-table__container{padding-top:var(--table-offset)}.fr-table__container{overflow:auto}.fr-table__content .fr-cell--fixed{left:0;position:sticky;z-index:1}.fr-table__content .fr-cell--fixed .fr-checkbox-group+*{margin-left:.5rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{color:transparent;pointer-events:none;width:0}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label:before{left:-1.25rem}.fr-table__content .fr-cell--fixed .fr-checkbox-group input[type=checkbox]{left:.25rem}.fr-table__content .fr-cell--center{text-align:center}.fr-table__content .fr-cell--right{text-align:right}.fr-table__content .fr-cell--top{vertical-align:top}.fr-table__content .fr-cell--bottom{vertical-align:bottom}.fr-table__content .fr-cell__title{font-weight:700}.fr-table__content .fr-cell__desc{font-weight:400}.fr-table__content .fr-cell--inline{align-items:center;display:flex;margin:0 -.5rem}.fr-table__content .fr-cell--inline>*{margin:0 .5rem}.fr-table__content .fr-cell--multiline,.fr-table__content .fr-cell--multiline *{white-space:normal}.fr-table__content .fr-cell--sort{align-items:center;display:flex;justify-content:space-between}.fr-table__content .fr-cell--sort .fr-btn--sort{margin-left:1rem}.fr-table__content .fr-col--xs{min-width:4rem;white-space:normal}.fr-table__content .fr-col--sm{min-width:5rem;white-space:normal}.fr-table__content .fr-col--md{min-width:12.5rem;white-space:normal}.fr-table__content .fr-col--lg{min-width:25rem;white-space:normal}.fr-table__content table{border-collapse:collapse;border-spacing:0;width:100%}.fr-table__content table thead{position:relative}.fr-table__content table thead:before{bottom:0;content:"";display:block;height:1px;left:0;pointer-events:none;position:absolute;right:0;top:inherit;width:100%;z-index:1}.fr-table__content table thead th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey));font-weight:700}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody th,.fr-table__content table thead th[role=columnheader]{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table__content table tbody th{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey))}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france)),linear-gradient(0deg,var(--border-action-high-blue-france),var(--border-action-high-blue-france));background-position:0 0,100% 0,0 0,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:.125rem 100%,.125rem 100%,100% .125rem,0 0;height:var(--row-height);left:0;pointer-events:none;position:absolute;transform:translateY(-.125rem);width:100%;z-index:2}.fr-table__content table tbody tr[aria-selected=true]+tr:after,.fr-table__content table tbody tr[aria-selected=true]:after{content:""}.fr-table__content table tbody tr[aria-selected=true]+tr[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,0 0}.fr-table__content table tbody tr[aria-selected=true]+tr:not([aria-selected=true]):after{background-size:0 0,0 0,100% .125rem,0 0}.fr-table__content table tbody tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,100% .125rem,100% .125rem}.fr-table__content table tbody tr[aria-selected=true]+tr:last-of-type[aria-selected=true]:after{background-size:.125rem 100%,.125rem 100%,0 0,100% .125rem}.fr-table__content td,.fr-table__content th{background-position:100% 100%;background-repeat:no-repeat;background-size:100% 1px;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.5rem 1rem;text-align:left;vertical-align:middle;white-space:nowrap}.fr-table__content td .fr-checkbox-group,.fr-table__content th .fr-checkbox-group{display:inline-block}.fr-table__content td .fr-checkbox-group .fr-label,.fr-table__content th .fr-checkbox-group .fr-label{font-size:.875rem;line-height:1.5rem}.fr-table caption{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing);margin-bottom:1rem;position:static;text-align:left}.fr-table caption .fr-table__caption__desc{font-size:1rem;font-weight:400;line-height:1.5rem;margin-top:1rem}.fr-table__detail{color:var(--text-mention-grey);font-size:.875rem;line-height:1.5rem}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table[data-fr-js-table=true] .fr-table__wrapper{position:relative}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{background-position:0 0,0 0,100% 100%,0 100%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;content:"";display:block;height:calc(100% - var(--table-offset));left:0;pointer-events:none;position:absolute;top:var(--table-offset);width:100%;z-index:1}.fr-table__header .fr-segmented,.fr-table__header .fr-table__detail{margin-bottom:1rem}.fr-table__footer--start{margin-top:1rem}.fr-table__footer--start .fr-table__detail{padding-right:.5rem}.fr-table__footer--middle{align-items:center;display:flex;flex-direction:row;justify-content:center;margin-top:1rem}.fr-table__footer--middle .fr-pagination{margin-top:.75rem}.fr-table__footer--end{flex:1 0 100%;margin-top:1.5rem}.fr-table--sm .fr-table__content td,.fr-table--sm .fr-table__content th{padding:.25rem .75rem}.fr-table--lg .fr-table__content td,.fr-table--lg .fr-table__content th{padding:.75rem 1.5rem}.fr-table.fr-table--no-caption .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--no-caption .fr-table__wrapper caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table.fr-table--caption-bottom{margin-bottom:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper{margin-bottom:calc(var(--table-offset) + 1.5rem);margin-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper:after{bottom:0;height:100%;top:auto}.fr-table.fr-table--caption-bottom .fr-table__wrapper .fr-table__container{padding-top:0}.fr-table.fr-table--caption-bottom .fr-table__wrapper caption{caption-side:bottom;height:min-content;margin-bottom:0;margin-top:1rem}.fr-table.fr-table--caption-bottom[data-fr-js-table=true] caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table.fr-table--bordered .fr-table__content td,.fr-table.fr-table--bordered .fr-table__content th{background-position:0 100%,100% 0;background-repeat:no-repeat,no-repeat;background-size:100% 1px,1px 100%}.fr-table.fr-table--no-scroll .fr-table__wrapper{width:fit-content}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table{width:auto}.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table td,.fr-table.fr-table--no-scroll .fr-table__wrapper .fr-table__content table th{white-space:normal}.fr-table__wrapper:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table__content table caption{color:var(--text-title-grey)}.fr-table__content table tbody td{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table:before{content:"";display:block;height:0;width:100%}.fr-table:not(.fr-table--no-scroll)>table{width:100%}.fr-table>table{border-spacing:0;display:block;overflow:auto;width:100%}.fr-table>table td,.fr-table>table th{border:0;display:table-cell;font-size:.875rem;line-height:1.5rem;padding:.75rem;text-align:left;vertical-align:middle}.fr-table>table th{font-weight:700}.fr-table>table thead{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px;color:var(--text-title-grey)}.fr-table>table thead td,.fr-table>table thead th{font-weight:700;padding-bottom:.875rem}.fr-table[data-fr-js-table=true]>table tbody,.fr-table[data-fr-js-table=true]>table thead{position:relative}.fr-table[data-fr-js-table=true]>table tbody:after,.fr-table[data-fr-js-table=true]>table thead:after{background-repeat:no-repeat,no-repeat,no-repeat;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:1}.fr-table[data-fr-js-table=true]>table thead:after{background-position:0 0,0 0,100% 100%;background-size:100% 1px,1px 100%,1px 100%}.fr-table[data-fr-js-table=true]>table tbody:after{background-position:0 0,0 100%,100% 0;background-size:1px 100%,100% 1px,1px 100%}.fr-table--no-caption{padding-top:0}.fr-table--no-caption>table caption{clip:rect(0,0,0,0);border:0;display:block;height:1px;height:0;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-table--caption-bottom{margin-top:1rem;padding-top:0}.fr-table--caption-bottom>table{margin-bottom:calc(var(--table-offset) + 2.75rem)}.fr-table--caption-bottom>table caption{caption-side:bottom;height:min-content;margin-top:1rem}.fr-table--caption-bottom[data-fr-js-table=true]>table:after{bottom:0;height:100%;top:auto}.fr-table--caption-bottom[data-fr-js-table=true]>table caption{bottom:0;left:0;margin-top:1rem;position:absolute;right:0;top:100%}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll>table{overflow-x:hidden}.fr-table--no-scroll>table caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed>table{display:table;table-layout:fixed}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:bottom;background-repeat:no-repeat;background-size:100% 1px}.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table>table.fr-table__shadow:before{bottom:0;box-shadow:inset 0 0 0 0 #161616,inset 0 0 0 0 #161616;content:"";display:block;left:0;opacity:.32;pointer-events:none;position:absolute;right:0;top:var(--table-offset);transition:box-shadow .3s;z-index:1}.fr-table>table.fr-table__shadow--left:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset 0 0 0 0 #161616}.fr-table>table.fr-table__shadow--left.fr-table__shadow--right:before{box-shadow:inset 2rem 0 1rem -2rem #161616,inset -2rem 0 1rem -2rem #161616;content:"";display:block}.fr-table>table.fr-table__shadow--right:before{box-shadow:inset 0 0 0 0 #161616,inset -2rem 0 1rem -2rem #161616}.fr-table--caption-bottom>table.fr-table__shadow:before,.fr-table--no-caption>table.fr-table__shadow:before{bottom:0;content:"";display:block;left:0;position:absolute;right:0;top:0}:root[data-fr-theme=dark] .fr-table>table.fr-table__shadow:before{opacity:1}.fr-table>table caption{color:var(--text-title-grey)}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey)),linear-gradient(0deg,var(--border-contrast-grey),var(--border-contrast-grey))}.fr-table>table tbody{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-table>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine)),linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table thead{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-plain-green-tilleul-verveine),var(--border-plain-green-tilleul-verveine))}.fr-table--green-tilleul-verveine>table tbody{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover);--active:var(--background-alt-green-tilleul-verveine-active);background-color:var(--background-alt-green-tilleul-verveine)}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine)}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon)),linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon>table thead{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-plain-green-bourgeon),var(--border-plain-green-bourgeon))}.fr-table--green-bourgeon>table tbody{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover);--active:var(--background-alt-green-bourgeon-active);background-color:var(--background-alt-green-bourgeon)}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon)}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude)),linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude>table thead{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-plain-green-emeraude),var(--border-plain-green-emeraude))}.fr-table--green-emeraude>table tbody{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover);--active:var(--background-alt-green-emeraude-active);background-color:var(--background-alt-green-emeraude)}.fr-table--green-emeraude>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude)}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-table--green-emeraude.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe)),linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe>table thead{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-plain-green-menthe),var(--border-plain-green-menthe))}.fr-table--green-menthe>table tbody{--idle:transparent;--hover:var(--background-alt-green-menthe-hover);--active:var(--background-alt-green-menthe-active);background-color:var(--background-alt-green-menthe)}.fr-table--green-menthe>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe)}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-table--green-menthe.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel)),linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel>table thead{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-plain-green-archipel),var(--border-plain-green-archipel))}.fr-table--green-archipel>table tbody{--idle:transparent;--hover:var(--background-alt-green-archipel-hover);--active:var(--background-alt-green-archipel-active);background-color:var(--background-alt-green-archipel)}.fr-table--green-archipel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel)}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-table--green-archipel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume)),linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume>table thead{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-plain-blue-ecume),var(--border-plain-blue-ecume))}.fr-table--blue-ecume>table tbody{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover);--active:var(--background-alt-blue-ecume-active);background-color:var(--background-alt-blue-ecume)}.fr-table--blue-ecume>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume)}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-table--blue-ecume.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus)),linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus>table thead{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-plain-blue-cumulus),var(--border-plain-blue-cumulus))}.fr-table--blue-cumulus>table tbody{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover);--active:var(--background-alt-blue-cumulus-active);background-color:var(--background-alt-blue-cumulus)}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus)}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine)),linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine>table thead{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-plain-purple-glycine),var(--border-plain-purple-glycine))}.fr-table--purple-glycine>table tbody{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover);--active:var(--background-alt-purple-glycine-active);background-color:var(--background-alt-purple-glycine)}.fr-table--purple-glycine>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine)}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-table--purple-glycine.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron)),linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron>table thead{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-plain-pink-macaron),var(--border-plain-pink-macaron))}.fr-table--pink-macaron>table tbody{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover);--active:var(--background-alt-pink-macaron-active);background-color:var(--background-alt-pink-macaron)}.fr-table--pink-macaron>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron)}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-table--pink-macaron.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile)),linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile>table thead{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-plain-pink-tuile),var(--border-plain-pink-tuile))}.fr-table--pink-tuile>table tbody{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover);--active:var(--background-alt-pink-tuile-active);background-color:var(--background-alt-pink-tuile)}.fr-table--pink-tuile>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile)}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-table--pink-tuile.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol)),linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-plain-yellow-tournesol),var(--border-plain-yellow-tournesol))}.fr-table--yellow-tournesol>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover);--active:var(--background-alt-yellow-tournesol-active);background-color:var(--background-alt-yellow-tournesol)}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol)}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde)),linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde>table thead{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-plain-yellow-moutarde),var(--border-plain-yellow-moutarde))}.fr-table--yellow-moutarde>table tbody{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover);--active:var(--background-alt-yellow-moutarde-active);background-color:var(--background-alt-yellow-moutarde)}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde)}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue)),linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue>table thead{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-plain-orange-terre-battue),var(--border-plain-orange-terre-battue))}.fr-table--orange-terre-battue>table tbody{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover);--active:var(--background-alt-orange-terre-battue-active);background-color:var(--background-alt-orange-terre-battue)}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue)}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme)),linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme>table thead{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-plain-brown-cafe-creme),var(--border-plain-brown-cafe-creme))}.fr-table--brown-cafe-creme>table tbody{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover);--active:var(--background-alt-brown-cafe-creme-active);background-color:var(--background-alt-brown-cafe-creme)}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme)}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel)),linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel>table thead{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-plain-brown-caramel),var(--border-plain-brown-caramel))}.fr-table--brown-caramel>table tbody{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover);--active:var(--background-alt-brown-caramel-active);background-color:var(--background-alt-brown-caramel)}.fr-table--brown-caramel>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel)}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-table--brown-caramel.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera)),linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera>table thead{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-plain-brown-opera),var(--border-plain-brown-opera))}.fr-table--brown-opera>table tbody{--idle:transparent;--hover:var(--background-alt-brown-opera-hover);--active:var(--background-alt-brown-opera-active);background-color:var(--background-alt-brown-opera)}.fr-table--brown-opera>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera)}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-table--brown-opera.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet)),linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet>table thead{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-plain-beige-gris-galet),var(--border-plain-beige-gris-galet))}.fr-table--beige-gris-galet>table tbody{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover);--active:var(--background-alt-beige-gris-galet-active);background-color:var(--background-alt-beige-gris-galet)}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet)}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr:last-child{background-image:none}.fr-table--bordered>table tbody tr:nth-child(2n){--hover:inherit;--active:inherit;background-color:transparent}.fr-tag{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);border-radius:1rem;color:var(--text-label-grey);display:inline-flex;flex-direction:row;font-size:.875rem;justify-content:center;line-height:1.5rem;min-height:2rem;min-width:2.25rem;padding:.25rem .75rem;width:-moz-fit-content;width:fit-content}.fr-tag:after,.fr-tag:before{display:block}.fr-tag[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag[target=_blank]:after{--icon-size:1rem;content:"";margin-left:.25rem;margin-right:-.125rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--icon-left[class^=fr-fi-],.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.25rem}.fr-tag[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}.fr-tag--sm{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tag--sm[target=_blank]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm[target=_blank]:after{--icon-size:0.75rem;content:"";margin-left:.25rem;margin-right:-.09375rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-],.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]{max-height:none;max-width:100%;overflow:initial}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class*=" fr-icon-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-icon-]:before{--icon-size:0.75rem;margin-left:-.09375rem;margin-right:.25rem}.fr-tag--sm[class*=" fr-fi-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class*=" fr-icon-"]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-fi-]:not([class*=fr-tag--icon-]):before,.fr-tag--sm[class^=fr-icon-]:not([class*=fr-tag--icon-]):before{content:none}a.fr-tag[aria-pressed=true],button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true],input[type=image].fr-tag[aria-pressed=true],input[type=reset].fr-tag[aria-pressed=true],input[type=submit].fr-tag[aria-pressed=true]{background-position:50%;background-repeat:no-repeat;background-size:100%;overflow:visible;position:relative}a.fr-tag[aria-pressed=true]:after,button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after,input[type=image].fr-tag[aria-pressed=true]:after,input[type=reset].fr-tag[aria-pressed=true]:after,input[type=submit].fr-tag[aria-pressed=true]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.5rem;-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:4px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after{--icon-size:0.75rem;content:"";margin:-.375rem;position:absolute;right:0;top:3px}a.fr-tag--dismiss:before,button.fr-tag--dismiss:before,input[type=button].fr-tag--dismiss:before,input[type=image].fr-tag--dismiss:before,input[type=reset].fr-tag--dismiss:before,input[type=submit].fr-tag--dismiss:before{content:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.25rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.125rem;margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-direction:row;flex-wrap:wrap;margin-left:-.25rem;margin-right:-.25rem}.fr-tags-group>li{line-height:2.75rem}.fr-tags-group .fr-tag{margin:0 .25rem .5rem;vertical-align:top}.fr-tags-group.fr-tags-group--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tags-group.fr-tags-group--sm .fr-tag:after,.fr-tags-group.fr-tags-group--sm .fr-tag:before{--icon-size:0.75rem}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:-.1875rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{--icon-size:0.75rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin:-.375rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;right:0;top:3px;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tag[aria-pressed=false]{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}.fr-tag.fr-tag--dismiss{--idle:transparent;--hover:var(--background-action-high-blue-france-hover);--active:var(--background-action-high-blue-france-active);background-color:var(--background-action-high-blue-france);color:var(--text-inverted-blue-france)}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{--idle:transparent;--hover:var(--background-action-low-blue-france-hover);--active:var(--background-action-low-blue-france-active);background-color:var(--background-action-low-blue-france);color:var(--text-action-high-blue-france)}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover);--active:var(--background-action-low-green-tilleul-verveine-active);background-color:var(--background-action-low-green-tilleul-verveine);color:var(--text-action-high-green-tilleul-verveine)}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover);--active:var(--background-action-low-green-bourgeon-active);background-color:var(--background-action-low-green-bourgeon);color:var(--text-action-high-green-bourgeon)}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover);--active:var(--background-action-low-green-emeraude-active);background-color:var(--background-action-low-green-emeraude);color:var(--text-action-high-green-emeraude)}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover);--active:var(--background-action-low-green-menthe-active);background-color:var(--background-action-low-green-menthe);color:var(--text-action-high-green-menthe)}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover);--active:var(--background-action-low-green-archipel-active);background-color:var(--background-action-low-green-archipel);color:var(--text-action-high-green-archipel)}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover);--active:var(--background-action-low-blue-ecume-active);background-color:var(--background-action-low-blue-ecume);color:var(--text-action-high-blue-ecume)}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover);--active:var(--background-action-low-blue-cumulus-active);background-color:var(--background-action-low-blue-cumulus);color:var(--text-action-high-blue-cumulus)}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover);--active:var(--background-action-low-purple-glycine-active);background-color:var(--background-action-low-purple-glycine);color:var(--text-action-high-purple-glycine)}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover);--active:var(--background-action-low-pink-macaron-active);background-color:var(--background-action-low-pink-macaron);color:var(--text-action-high-pink-macaron)}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover);--active:var(--background-action-low-pink-tuile-active);background-color:var(--background-action-low-pink-tuile);color:var(--text-action-high-pink-tuile)}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover);--active:var(--background-action-low-yellow-tournesol-active);background-color:var(--background-action-low-yellow-tournesol);color:var(--text-action-high-yellow-tournesol)}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover);--active:var(--background-action-low-yellow-moutarde-active);background-color:var(--background-action-low-yellow-moutarde);color:var(--text-action-high-yellow-moutarde)}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover);--active:var(--background-action-low-orange-terre-battue-active);background-color:var(--background-action-low-orange-terre-battue);color:var(--text-action-high-orange-terre-battue)}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover);--active:var(--background-action-low-brown-cafe-creme-active);background-color:var(--background-action-low-brown-cafe-creme);color:var(--text-action-high-brown-cafe-creme)}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover);--active:var(--background-action-low-brown-caramel-active);background-color:var(--background-action-low-brown-caramel);color:var(--text-action-high-brown-caramel)}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover);--active:var(--background-action-low-brown-opera-active);background-color:var(--background-action-low-brown-opera);color:var(--text-action-high-brown-opera)}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover);--active:var(--background-action-low-beige-gris-galet-active);background-color:var(--background-action-low-beige-gris-galet);color:var(--text-action-high-beige-gris-galet)}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france) .625rem);color:var(--text-inverted-blue-france)}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-hover) .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-active-blue-france-active) .625rem)}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{color:var(--text-action-high-blue-france)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,var(--background-disabled-grey) .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:var(--text-disabled-grey)}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{color:var(--text-disabled-grey)}a:not([href]).fr-tag,button.fr-tag:disabled,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled,input[type=button].fr-tag:disabled:hover{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}a:not([href]).fr-tag{color:var(--text-disabled-grey)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-hover) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-active-blue-france-active) .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,var(--background-disabled-grey) .5rem)}.fr-download__link{color:var(--text-action-high-blue-france);display:inline}.fr-download,.fr-download__link{--text-spacing:0;--title-spacing:0}.fr-download{margin:0 0 1rem;padding-bottom:1.5rem;position:relative}.fr-download .fr-download__link{font-size:1rem;font-weight:400;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-download .fr-download__link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-download__desc{display:none;font-size:.875rem;font-weight:400;line-height:1.5rem}.fr-download__detail{bottom:0;color:var(--text-mention-grey);cursor:text;font-size:.75rem;font-weight:400;left:0;line-height:1.25rem;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;white-space:nowrap}.fr-download__detail abbr{text-decoration:none}.fr-download--card{--text-spacing:0;--title-spacing:0;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem 4rem}.fr-download--card .fr-download__link{color:var(--text-action-high-blue-france);font-size:1.25rem;font-weight:700;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1rem;bottom:1.5rem;color:var(--text-action-high-blue-france);margin:0;position:absolute;right:1.5rem}.fr-download--card .fr-download__desc{display:block;margin-top:.5rem}.fr-download--card .fr-download__detail{bottom:1.5rem;left:1.5rem;max-width:calc(100% - 6.25rem);position:absolute}.fr-download--card .fr-download__detail[class*=" fr-fi-"]:before,.fr-download--card .fr-download__detail[class*=" fr-icon-"]:before,.fr-download--card .fr-download__detail[class^=fr-fi-]:before,.fr-download--card .fr-download__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-downloads-group__title{font-size:1.375rem;font-weight:700;line-height:1.75rem;margin:var(--title-spacing)}.fr-downloads-group--bordered{box-shadow:inset 0 0 0 1px var(--border-default-grey);padding:1.5rem 1.5rem .5rem}.fr-downloads-group>ul{margin-bottom:0;margin-top:0}.fr-downloads-group>ul>li{padding-bottom:0}.fr-downloads-group .fr-download{margin-bottom:1rem}.fr-downloads-group li::marker{color:var(--text-action-high-blue-france)}.fr-alert{--title-spacing:0 0 0.25rem;--text-spacing:0 0 0.25rem;background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey)),linear-gradient(0deg,var(--background-flat-grey),var(--background-flat-grey));background-position:0 0,100% 0,0 100%,0 0,100% 100%;background-repeat:no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,2.5rem 100%;padding:1rem 2.25rem .75rem 3.5rem;position:relative}.fr-alert:before{--icon-size:1.5rem;background-color:currentColor;color:var(--text-inverted-grey);display:inline-block;flex:0 0 auto;height:var(--icon-size);left:0;margin:1rem .5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;position:absolute;top:0;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-alert .fr-btn--close{font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert--error:before,.fr-alert--info:before,.fr-alert--success:before,.fr-alert--warning:before{content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{margin:.5rem}.fr-alert .fr-link--close{align-items:center;font-size:.875rem;line-height:1.5rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;position:absolute;right:1.25rem;top:.25rem;white-space:nowrap}.fr-alert .fr-link--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-alert--info{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info)),linear-gradient(0deg,var(--background-flat-info),var(--background-flat-info))}.fr-alert--error{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error)),linear-gradient(0deg,var(--background-flat-error),var(--background-flat-error))}.fr-alert--success{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success)),linear-gradient(0deg,var(--background-flat-success),var(--background-flat-success))}.fr-alert--warning{background-image:linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--border-plain-warning),var(--border-plain-warning)),linear-gradient(0deg,var(--background-flat-warning),var(--background-flat-warning))}.fr-notice{--title-spacing:0;--text-spacing:0;background-color:var(--background-contrast-grey);color:var(--text-title-grey);padding-bottom:1rem;padding-top:1rem;position:relative}.fr-notice__body{align-items:flex-start;display:flex;flex-direction:row;justify-content:space-between;position:relative}.fr-notice__body h1,.fr-notice__body h2,.fr-notice__body h3,.fr-notice__body h4,.fr-notice__body h5,.fr-notice__body h6{color:inherit;font-size:inherit;line-height:inherit}.fr-notice__title{font-weight:700;margin-right:.25rem;position:relative}.fr-notice__title:before{--icon-size:1.5rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice__desc{margin-right:.25rem}.fr-notice__desc,.fr-notice__title{display:block}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:.875rem;line-height:1.5rem}.fr-notice--no-icon .fr-notice__title:before{display:none}.fr-notice .fr-btn--close{color:inherit;font-size:.875rem;line-height:1.5rem;margin-left:.25rem;margin-top:-.25rem;max-height:2rem;max-width:2rem;min-height:2rem;overflow:hidden;padding:.25rem .5rem;white-space:nowrap}.fr-notice .fr-btn--close:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-notice--alert .fr-notice__title:before,.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--info .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--warning .fr-notice__title:before,.fr-notice--weather-orange .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{content:""}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{background-position:0 0;background-repeat:no-repeat;background-size:100% .375rem;padding-top:1.375rem}.fr-notice--attack .fr-notice__title,.fr-notice--cyberattack .fr-notice__title,.fr-notice--kidnapping .fr-notice__title,.fr-notice--witness .fr-notice__title{text-transform:uppercase}.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-notice--kidnapping .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-notice--attack .fr-notice__title:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-notice--info{--idle:transparent;--hover:var(--background-contrast-info-hover);--active:var(--background-contrast-info-active);background-color:var(--background-contrast-info);color:var(--text-default-info)}.fr-notice--warning,.fr-notice--weather-orange{--idle:transparent;--hover:var(--background-contrast-warning-hover);--active:var(--background-contrast-warning-active);background-color:var(--background-contrast-warning);color:var(--text-default-warning)}.fr-notice--alert{--idle:transparent;--hover:var(--background-contrast-error-hover);--active:var(--background-contrast-error-active);background-color:var(--background-contrast-error);color:var(--text-default-error)}.fr-notice--weather-red{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);color:var(--text-inverted-grey)}.fr-notice--weather-red .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--weather-purple{--idle:transparent;--hover:var(--background-flat-purple-glycine-hover);--active:var(--background-flat-purple-glycine-active);background-color:var(--background-flat-purple-glycine);color:var(--text-inverted-grey)}.fr-notice--weather-purple .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover);--active:var(--background-action-high-purple-glycine-active);background-color:var(--background-action-high-purple-glycine)}.fr-notice--witness{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error));color:var(--text-inverted-grey)}.fr-notice--witness .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-notice--attack,.fr-notice--kidnapping{--idle:transparent;--hover:var(--background-flat-error-hover);--active:var(--background-flat-error-active);background-color:var(--background-flat-error);background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));color:var(--text-inverted-grey)}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-error-hover);--active:var(--background-action-high-error-active);background-color:var(--background-action-high-error)}.fr-notice--cyberattack{--idle:transparent;--hover:var(--background-flat-grey-hover);--active:var(--background-flat-grey-active);background-color:var(--background-flat-grey);background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info));color:var(--text-inverted-grey)}.fr-notice--cyberattack .fr-btn--close{--idle:transparent;--hover:var(--background-action-high-grey-hover);--active:var(--background-action-high-grey-active);background-color:var(--background-action-high-grey)}.fr-radio-group{max-width:max-content;position:relative}.fr-radio-group input[type=radio]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-radio-group input[type=radio]+label{align-items:flex-start;background-image:radial-gradient(transparent 10px,var(--border-action-high-blue-france) 11px,transparent 12px);background-position:calc(-.25rem + 1px) calc(-.25rem + 1px),calc(-.25rem + 1px) calc(-.25rem + 1px);background-repeat:no-repeat,no-repeat;background-size:1.875rem 1.875rem,1.875rem 1.875rem;display:flex;flex-direction:column;justify-content:flex-start;padding-left:2rem}.fr-radio-group input[type=radio]+label:before{border-radius:1.5rem;content:"";height:1.5rem;margin-left:-2rem;position:absolute;top:0;width:1.5rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group--sm input[type=radio]{height:1rem;top:.25rem;width:1rem}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 .25rem,0 .25rem;background-size:1rem 1rem,1rem 1rem;padding-left:1.5rem}.fr-radio-group--sm input[type=radio]+label:before{border-radius:.5rem;height:1rem;margin-left:-1.5rem;top:.25rem;width:1rem}.fr-radio-rich{align-items:center;display:flex;flex-direction:row;max-width:100%;position:relative}.fr-radio-rich input[type=radio]{height:1rem;left:1rem;top:calc(50% - .5rem);width:1rem}.fr-radio-rich input[type=radio]+label{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:stretch;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-action-high-blue-france) 7px,transparent 8px);background-position:0 0,100% 0,0 100%,0 0,1rem 50%,1rem 50%;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,100% 1px,1px 100%,1rem 1rem,1rem 1rem;display:flex;flex-direction:column;justify-content:center;margin-left:0;padding:.75rem 1rem .75rem 2.75rem;width:100%}.fr-radio-rich input[type=radio]+label:before{border-radius:0;bottom:0;content:"";display:block;height:100%;left:0;margin-left:0;position:absolute;right:0;top:0;width:100%}.fr-radio-rich input[type=radio]+label .fr-hint-text{margin-left:0}.fr-radio-rich input[type=radio]:not(:disabled)~label{--hover-tint:var(--hover);--active-tint:var(--active)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover{background-color:var(--hover-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active{background-color:var(--active-tint)}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__pictogram{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__pictogram{background-color:var(--active)}.fr-radio-rich__pictogram{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-height:5.5rem;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__pictogram img,.fr-radio-rich__pictogram svg{max-height:3.5rem;max-width:3.5rem}.fr-control>.fr-radio-rich.fr-radio-group{margin-bottom:0;margin-top:0}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-active-blue-france) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-error) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-success) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,var(--border-plain-info) 11px,transparent 12px),radial-gradient(var(--background-active-blue-france) 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,var(--background-disabled-grey) 11px,transparent 12px),radial-gradient(var(--background-disabled-grey) 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(transparent 6px,var(--border-active-blue-france) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--background-disabled-grey),var(--background-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-error) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-success) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),radial-gradient(transparent 6px,var(--border-plain-info) 7px,transparent 8px),radial-gradient(var(--background-active-blue-france) 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),radial-gradient(transparent 6px,var(--background-disabled-grey) 7px,transparent 8px),radial-gradient(var(--background-disabled-grey) 3px,transparent 4px)}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]{top:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-group:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.25rem + 1px) calc(.5rem + 1px),calc(-.25rem + 1px) calc(.5rem + 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]{top:1rem}.fr-fieldset .fr-fieldset__content .fr-radio-group--sm:not(.fr-radio-rich) input[type=radio]+label{background-position:calc(-.125rem + 1px) calc(1rem - 1px),calc(-.125rem + 1px) calc(1rem - 1px)}.fr-fieldset .fr-fieldset__content .fr-radio-rich{margin-bottom:1rem;margin-top:.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich input[type=radio]+label{min-height:5.5rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:last-child{margin-bottom:.75rem}.fr-fieldset .fr-fieldset__content .fr-radio-rich:first-child{margin-top:0}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:not(:last-child){margin-bottom:.5rem;margin-right:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child{margin-top:.75rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich:first-child .fr-radio-rich__img{top:1rem}.fr-fieldset--inline .fr-fieldset__content .fr-radio-rich__img{top:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child{margin-top:1.5rem}.fr-radio-rich__img{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;align-self:stretch;background-color:var(--background-default-grey);background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0,0 100%,100% 0,0 .25rem;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,100% 1px,1px 100%,1px calc(100% - .5rem);display:flex;flex-direction:row;justify-content:center;margin-left:-1px;min-width:5.5rem;padding:.25rem;pointer-events:none;width:5.5rem}.fr-radio-rich__img img,.fr-radio-rich__img svg{max-height:3.5rem;max-width:3.5rem}.fr-radio-rich input[type=radio]:not(:disabled)~label:hover+.fr-radio-rich__img{background-color:var(--hover)}.fr-radio-rich input[type=radio]:not(:disabled)~label:active+.fr-radio-rich__img{background-color:var(--active)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:var(--text-disabled-grey)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--background-action-high-blue-france),var(--background-action-high-blue-france)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--text-disabled-grey),var(--text-disabled-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-card{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);display:flex;flex-direction:column;position:relative}.fr-card.fr-enlarge-button .fr-card__title a:after,.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after,.fr-card.fr-enlarge-link .fr-card__title button:after{--icon-size:1.5rem;bottom:2rem;position:absolute;right:2rem}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:100% 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;padding:1px}.fr-card--no-icon .fr-card__title a:not([target=_blank]):after,.fr-card--no-icon .fr-card__title button:after,.fr-card:not(.fr-enlarge-button):not(.fr-card--download) .fr-card__title button:after,.fr-card:not(.fr-enlarge-link):not(.fr-card--download) .fr-card__title a:not([target=_blank]):after{content:none}.fr-card__body{display:flex;flex:1 1 auto;flex-direction:column;height:100%;order:2;padding:0 2rem}.fr-grid-row .fr-card{height:100%}.fr-card__header{flex:0 0 auto;order:1;position:relative}.fr-card__header .fr-badges-group{left:0;padding:.75rem;position:absolute;top:0}.fr-card.fr-enlarge-link:hover .fr-card__img,.fr-card.fr-enlarge-link:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-link:active .fr-card__img,.fr-card.fr-enlarge-link:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card.fr-enlarge-button:hover .fr-card__img,.fr-card.fr-enlarge-button:hover .fr-card__vid{--brightness:calc(100% + var(--brighten)*10%)}.fr-card.fr-enlarge-button:active .fr-card__img,.fr-card.fr-enlarge-button:active .fr-card__vid{--brightness:calc(100% + var(--brighten)*20%)}.fr-card__img,.fr-card__vid{filter:brightness(var(--brightness))}.fr-card__img img,.fr-card__img svg,.fr-card__vid iframe,.fr-card__vid video{aspect-ratio:1.7777777778;object-fit:cover;object-position:50% 50%}.fr-card__img img{display:block}.fr-card__content{display:flex;flex-direction:column;height:100%;margin:0 -2rem;order:1;padding:2rem}.fr-card__title{color:var(--text-title-grey);font-size:1.25rem;font-weight:700;line-height:1.75rem;margin-bottom:0;order:2}.fr-card__title a:after,.fr-card__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__title button{font-size:inherit;font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-card__title [target=_blank]:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:0;margin-top:.75rem;order:3}.fr-card__start{order:1}.fr-card__start,.fr-card__start .fr-badges-group,.fr-card__start .fr-tags-group{margin-bottom:.25rem}.fr-card__start .fr-card__detail{margin-bottom:.75rem}.fr-card__end{display:flex;flex-direction:column;height:100%;margin-top:1rem;order:4;padding-top:.5rem}.fr-card__detail{align-items:flex-start;color:var(--text-mention-grey);display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0}.fr-card__detail[class*=" fr-fi-"]:before,.fr-card__detail[class*=" fr-icon-"]:before,.fr-card__detail[class^=fr-fi-]:before,.fr-card__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{justify-content:flex-end;margin-bottom:-3rem;min-height:2rem;padding-right:2rem}.fr-card.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:5rem}.fr-card__footer{margin:0 -2rem;order:2;padding:.5rem 2rem 2rem}.fr-card__footer .fr-btns-group,.fr-card__footer .fr-links-group{margin-bottom:-1rem}.fr-card--sm .fr-card__header .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__header .fr-badge:after,.fr-card--sm .fr-card__header .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__header .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__header .fr-tag:after,.fr-card--sm .fr-card__header .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content{padding:1.5rem}.fr-card--sm .fr-card__content .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-card--sm .fr-card__content .fr-badge:after,.fr-card--sm .fr-card__content .fr-badge:before{--icon-size:0.75rem}.fr-card--sm .fr-card__content .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-card--sm .fr-card__content .fr-tag:after,.fr-card--sm .fr-card__content .fr-tag:before{--icon-size:0.75rem}.fr-card--sm .fr-card__title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after{--icon-size:1rem}.fr-card--sm .fr-card__desc{margin-top:.5rem}.fr-card--sm .fr-card__start .fr-badges-group,.fr-card--sm .fr-card__start .fr-tags-group{margin-bottom:0}.fr-card--sm .fr-card__start .fr-card__detail{margin-bottom:.5rem}.fr-card--sm .fr-card__end{margin-top:1.5rem;padding-top:.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-2rem;min-height:1.25rem;padding-right:1.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:3.5rem}.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--sm.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:1rem;bottom:1.5rem;right:1.5rem}.fr-card--sm .fr-card__footer{padding:.5rem 1.5rem 1.5rem}.fr-card--lg .fr-card__content{padding:2.5rem}.fr-card--lg .fr-card__title{font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{--icon-size:1.5rem}.fr-card--lg .fr-card__desc{font-size:1rem;line-height:1.5rem;margin-top:1rem}.fr-card--lg .fr-card__start,.fr-card--lg .fr-card__start .fr-badges-group,.fr-card--lg .fr-card__start .fr-tags-group{margin-bottom:.5rem}.fr-card--lg .fr-card__start .fr-card__detail{margin-bottom:1rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__end,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__end{margin-bottom:-4rem;min-height:2.5rem;padding-right:2.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__content,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__content{padding-bottom:6.5rem}.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-button:not(.fr-card--no-icon) .fr-card__title button:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title a:after,.fr-card--lg.fr-enlarge-link:not(.fr-card--no-icon) .fr-card__title button:after{--icon-size:2rem;bottom:2.5rem;right:2.5rem}.fr-card--lg .fr-card__footer{padding:.5rem 2.5rem 2.5rem}.fr-card--download .fr-card__header{aspect-ratio:16/9}.fr-card--download .fr-card__header .fr-card__img{height:calc(100% - 1rem);left:.5rem;position:absolute;top:.5rem;width:calc(100% - 1rem)}.fr-card--download .fr-card__header .fr-card__img img{max-height:100%;max-width:100%;object-fit:contain}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-card__body>.fr-card__detail,.fr-card__body>.fr-card__title{margin-top:2rem}.fr-card__body>.fr-card__detail{margin-bottom:-1rem}.fr-card__body>.fr-card__desc,.fr-card__body>.fr-card__title{margin-bottom:2rem}.fr-card__body>.fr-card__desc{margin-top:-1rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc,.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__title{margin-bottom:4.5rem}.fr-card.fr-enlarge-link:not(.fr-card--no-arrow) .fr-card__body>.fr-card__desc{margin-top:-3.5rem}.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-card--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-card--shadow.fr-card--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-card--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-card--download:not(.fr-card--no-background) .fr-card__header{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey)}.fr-card__title a[href],.fr-card__title button{color:var(--text-action-high-blue-france)}.fr-card__title button:disabled{color:var(--text-disabled-grey)}.fr-card__title:disabled,a.fr-card__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{height:1.5rem;margin:0;opacity:0;position:absolute;width:1.5rem}.fr-checkbox-group input[type=checkbox]+label{--data-uri-svg:none;align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;margin-left:2rem;position:relative}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg);background-position:0 0,.25rem 0,100% 0,0 .25rem,100% 100%,calc(100% - .25rem) 100%,0 100%,100% .25rem,50%;background-repeat:no-repeat;background-size:.25rem .25rem,calc(100% - .25rem) 1px,.25rem .25rem,1px calc(100% - .5rem),.25rem .25rem,calc(100% - .5rem) 1px,.25rem .25rem,1px calc(100% - .5rem),1rem;border-radius:.25rem;content:"";display:block;height:1.5rem;left:-2rem;margin-right:.5rem;position:absolute;top:0;width:1.5rem}.fr-checkbox-group--sm input[type=checkbox]{height:1rem;top:.25rem;width:1rem}.fr-checkbox-group--sm input[type=checkbox]+label{margin-left:1.5rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{height:1rem;left:-1.5rem;margin-top:.25rem;width:1rem}.fr-checkbox-group--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error)}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-checkbox-group--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success)}.fr-checkbox-group .fr-message:first-child{margin-top:1rem}.fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5f5fe' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-active-blue-france);background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-active-blue-france) 4px,var(--border-active-blue-france) 5px,transparent 6px),linear-gradient(var(--border-active-blue-france),var(--border-active-blue-france)),var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group input[type=checkbox]:disabled+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--background-disabled-grey) 4px,var(--background-disabled-grey) 5px,transparent 6px),linear-gradient(var(--background-disabled-grey),var(--background-disabled-grey)),var(--data-uri-svg)}.fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-color:var(--background-disabled-grey)}:root[data-fr-theme=dark] .fr-checkbox-group input[type=checkbox]:disabled:checked+label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:var(--text-default-error)}.fr-checkbox-group--error input[type=checkbox]+label:before,.fr-checkbox-group--error input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:var(--text-default-success)}.fr-checkbox-group--valid input[type=checkbox]+label:before,.fr-checkbox-group--valid input[type=checkbox]:checked+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset--error .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-error) 4px,var(--border-plain-error) 5px,transparent 6px),linear-gradient(var(--border-plain-error),var(--border-plain-error)),var(--data-uri-svg)}.fr-fieldset--valid .fr-checkbox-group input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-plain-success) 4px,var(--border-plain-success) 5px,transparent 6px),linear-gradient(var(--border-plain-success),var(--border-plain-success)),var(--data-uri-svg)}.fr-fieldset .fr-fieldset__content .fr-checkbox-group--sm label:before{margin-top:.25rem}.fr-fieldset .fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:.75rem}.fr-segmented{align-items:center;border:0;display:inline-flex;margin:0;padding:0;position:relative}.fr-segmented__legend{margin-bottom:.75rem;padding:0}.fr-segmented__legend .fr-hint-text{margin-top:.25rem}.fr-segmented__legend--inline{display:contents;float:left}.fr-segmented__legend--inline+.fr-segmented__elements{margin-left:1rem}.fr-segmented__elements{border-radius:.25rem;box-shadow:inset 0 0 0 1px var(--border-default-grey);display:flex;flex-direction:row}.fr-segmented__element{position:relative}.fr-segmented .fr-segmented__element input{opacity:0}.fr-segmented input{height:100%;margin:0;position:absolute;width:100%;z-index:-1}.fr-segmented input+label{align-items:center;border-radius:.25rem;display:inline-flex;font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem;white-space:nowrap;width:100%}.fr-segmented input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented input:not([disabled]):not(:checked)+label{-webkit-mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");mask-image:linear-gradient(0deg,#fff,#fff),linear-gradient(0deg,#fff,#fff),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,"),url("data:image/svg+xml;charset=uft8,");-webkit-mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);mask-position:.25rem .375rem,.375rem .25rem,.25rem .25rem,calc(100% - .25rem) .25rem,.25rem calc(100% - .25rem),calc(100% - .25rem) calc(100% - .25rem);-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem;mask-size:calc(100% - .5rem)calc(100% - .75rem),calc(100% - .75rem)calc(100% - .5rem),.25rem .25rem,.25rem .25rem,.25rem .25rem,.25rem .25rem}.fr-segmented input:not([disabled]):not(:checked)+label:hover{background-color:var(--hover)}.fr-segmented input:not([disabled]):not(:checked)+label:active{background-color:var(--active)}.fr-segmented--vertical .fr-segmented__elements{flex-direction:column;margin-left:0}.fr-segmented--vertical .fr-segmented__legend--inline{display:block;float:none}.fr-segmented--no-legend legend{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-segmented--no-legend legend+.fr-segmented__elements{margin-left:0}.fr-segmented__element input:focus+label{outline-color:#0a76f6;outline-offset:2px;outline-style:solid;outline-width:2px}.fr-segmented__element input:focus:not(:focus-visible)+label{outline-style:none}.fr-segmented__element input:focus-visible+label{outline-style:solid}.fr-segmented--sm .fr-segmented__legend,.fr-segmented--sm input+label{font-size:.875rem;line-height:1.5rem}.fr-segmented--sm input+label{max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-segmented--sm input+label:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-segmented__element label{color:var(--text-action-high-grey)}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px var(--border-active-blue-france);color:var(--text-active-blue-france)}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px var(--text-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle{--text-spacing:0;--title-spacing:0;display:flex;flex-wrap:wrap;position:relative}.fr-toggle input[type=checkbox]{box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);height:1.5rem;opacity:0;position:absolute;width:2.5rem}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);transform:translateX(1rem)}.fr-toggle label{--toggle-status-width:auto;color:var(--text-label-grey);display:inline-flex;font-size:1rem;line-height:1.5rem;min-height:1.5rem;width:calc(100% - 2rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{word-wrap:normal;content:attr(data-fr-unchecked-label);margin-bottom:1rem;margin-right:calc(var(--toggle-status-width) - .5rem)}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);border-radius:.75rem;display:block;flex-shrink:0;font-size:.75rem;height:calc(1.25rem + 1px);line-height:1.25rem;margin-right:2rem;max-width:2.5rem;min-width:2.5rem;padding-top:1.75rem}.fr-toggle label:after,.fr-toggle label:before{background-repeat:no-repeat;color:var(--text-active-blue-france);content:""}.fr-toggle label:after{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);align-items:center;background-color:var(--background-default-grey);background-position:50%;background-size:1rem;border-radius:50%;box-shadow:inset 0 0 0 1px var(--border-action-high-blue-france);display:flex;height:1.5rem;justify-content:center;left:0;position:absolute;top:0;width:1.5rem}.fr-toggle .fr-hint-text{color:var(--text-mention-grey);display:block;flex-basis:100%;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:1rem}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);padding-bottom:1rem}.fr-toggle--error:before,.fr-toggle--valid:before{content:"";height:100%;left:-.75rem;position:absolute;top:0;width:2px}.fr-toggle .fr-message:first-child{margin-top:1rem}.fr-toggle--label-left .fr-toggle__input{margin:0 0 0 auto;order:1}.fr-toggle--label-left .fr-toggle__input+label[data-fr-checked-label]:before{margin-left:calc(var(--toggle-status-width) - .5rem);margin-right:0}.fr-toggle--label-left .fr-toggle__label{flex:1;justify-content:space-between;padding-left:0;width:calc(100% - 2rem)}.fr-toggle--label-left .fr-toggle__label:before{direction:rtl;flex-shrink:0;margin-left:1rem;margin-right:0;order:1;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__list li{margin-bottom:1rem}.fr-toggle__list li:last-child{margin-bottom:0}:root[data-fr-theme=dark] .fr-toggle label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%238585f6' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%238585f6' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px var(--border-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked{--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey)}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='%232a2a2a' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%232a2a2a' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-toggle--valid:before{--idle:transparent;--hover:var(--border-plain-success-hover);--active:var(--border-plain-success-active);background-color:var(--border-plain-success);content:""}.fr-toggle--error:before{--idle:transparent;--hover:var(--border-plain-error-hover);--active:var(--border-plain-error-active);background-color:var(--border-plain-error);content:""}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:var(--text-default-error)}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-error)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--error label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px var(--border-plain-error)}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ff5655' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:var(--text-default-success)}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);color:var(--text-default-success)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle label:before,:root[data-fr-theme=dark] .fr-toggle--valid label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px var(--border-plain-success)}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,:root[data-fr-theme=dark] .fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2327a658' height='24' fill='%238585f6' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);opacity:0;padding:1rem 0;position:absolute;top:0;transform:translateY(-100%)}.fr-skiplinks:focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column}.fr-skiplinks__list>li{margin-bottom:1rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;padding:0}.fr-skiplinks__list>li .fr-link:after,.fr-skiplinks__list>li .fr-link:before{--icon-size:1rem}.fr-skiplinks__list>li:last-child{margin-bottom:0}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-select{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--background-contrast-grey);background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;width:100%}.fr-select-group{position:relative}.fr-select-group .fr-message:first-child{margin-top:1rem}.fr-select-group--error:before,.fr-select-group--info:before,.fr-select-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-select-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-select-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-select-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-select:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-blue-france)}.fr-callout{--title-spacing:0 0 0.5rem;--text-spacing:0;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);background-image:linear-gradient(0deg,var(--border-default-blue-france),var(--border-default-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:.25rem 100%;margin:0 0 1.5rem;padding:1.5rem;position:relative}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class*=" fr-icon-"]:before,.fr-callout[class^=fr-fi-]:before,.fr-callout[class^=fr-icon-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem}.fr-callout .fr-btn{margin-top:1rem}.fr-callout:before{color:var(--text-title-grey)}.fr-callout--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover);--active:var(--background-contrast-green-tilleul-verveine-active);background-color:var(--background-contrast-green-tilleul-verveine);background-image:linear-gradient(0deg,var(--border-default-green-tilleul-verveine),var(--border-default-green-tilleul-verveine))}.fr-callout--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover);--active:var(--background-contrast-green-bourgeon-active);background-color:var(--background-contrast-green-bourgeon);background-image:linear-gradient(0deg,var(--border-default-green-bourgeon),var(--border-default-green-bourgeon))}.fr-callout--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover);--active:var(--background-contrast-green-emeraude-active);background-color:var(--background-contrast-green-emeraude);background-image:linear-gradient(0deg,var(--border-default-green-emeraude),var(--border-default-green-emeraude))}.fr-callout--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover);--active:var(--background-contrast-green-menthe-active);background-color:var(--background-contrast-green-menthe);background-image:linear-gradient(0deg,var(--border-default-green-menthe),var(--border-default-green-menthe))}.fr-callout--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover);--active:var(--background-contrast-green-archipel-active);background-color:var(--background-contrast-green-archipel);background-image:linear-gradient(0deg,var(--border-default-green-archipel),var(--border-default-green-archipel))}.fr-callout--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover);--active:var(--background-contrast-blue-ecume-active);background-color:var(--background-contrast-blue-ecume);background-image:linear-gradient(0deg,var(--border-default-blue-ecume),var(--border-default-blue-ecume))}.fr-callout--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover);--active:var(--background-contrast-blue-cumulus-active);background-color:var(--background-contrast-blue-cumulus);background-image:linear-gradient(0deg,var(--border-default-blue-cumulus),var(--border-default-blue-cumulus))}.fr-callout--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover);--active:var(--background-contrast-purple-glycine-active);background-color:var(--background-contrast-purple-glycine);background-image:linear-gradient(0deg,var(--border-default-purple-glycine),var(--border-default-purple-glycine))}.fr-callout--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover);--active:var(--background-contrast-pink-macaron-active);background-color:var(--background-contrast-pink-macaron);background-image:linear-gradient(0deg,var(--border-default-pink-macaron),var(--border-default-pink-macaron))}.fr-callout--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover);--active:var(--background-contrast-pink-tuile-active);background-color:var(--background-contrast-pink-tuile);background-image:linear-gradient(0deg,var(--border-default-pink-tuile),var(--border-default-pink-tuile))}.fr-callout--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover);--active:var(--background-contrast-yellow-tournesol-active);background-color:var(--background-contrast-yellow-tournesol);background-image:linear-gradient(0deg,var(--border-default-yellow-tournesol),var(--border-default-yellow-tournesol))}.fr-callout--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover);--active:var(--background-contrast-yellow-moutarde-active);background-color:var(--background-contrast-yellow-moutarde);background-image:linear-gradient(0deg,var(--border-default-yellow-moutarde),var(--border-default-yellow-moutarde))}.fr-callout--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover);--active:var(--background-contrast-orange-terre-battue-active);background-color:var(--background-contrast-orange-terre-battue);background-image:linear-gradient(0deg,var(--border-default-orange-terre-battue),var(--border-default-orange-terre-battue))}.fr-callout--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover);--active:var(--background-contrast-brown-cafe-creme-active);background-color:var(--background-contrast-brown-cafe-creme);background-image:linear-gradient(0deg,var(--border-default-brown-cafe-creme),var(--border-default-brown-cafe-creme))}.fr-callout--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover);--active:var(--background-contrast-brown-caramel-active);background-color:var(--background-contrast-brown-caramel);background-image:linear-gradient(0deg,var(--border-default-brown-caramel),var(--border-default-brown-caramel))}.fr-callout--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover);--active:var(--background-contrast-brown-opera-active);background-color:var(--background-contrast-brown-opera);background-image:linear-gradient(0deg,var(--border-default-brown-opera),var(--border-default-brown-opera))}.fr-callout--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover);--active:var(--background-contrast-beige-gris-galet-active);background-color:var(--background-contrast-beige-gris-galet);background-image:linear-gradient(0deg,var(--border-default-beige-gris-galet),var(--border-default-beige-gris-galet))}.fr-modal{--ground:2000;align-items:stretch;background-color:hsla(0,0%,9%,.64);border:none;bottom:0;color:inherit;display:flex;flex-direction:column;height:100%;justify-content:space-between;left:0;margin:0;opacity:0;padding:0;position:fixed;right:0;top:0;transition:opacity .3s,visibility .3s;visibility:hidden;width:100%;z-index:1750}.fr-modal>.fr-container{pointer-events:none}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;flex:1 0 2rem;height:2rem;width:0}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{height:100%;opacity:1;transition:opacity .3s,visibility .3s;visibility:inherit;width:100%}.fr-modal__body{--modal-max-height:calc(100vh - 2rem);--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);filter:drop-shadow(var(--lifted-shadow));flex:1 1 auto;max-height:var(--modal-max-height);overflow-y:auto;pointer-events:all;z-index:calc(var(--ground) + 2000)}.fr-modal__header{align-items:center;display:flex;flex:auto 0 0;padding:1rem 1rem .5rem}.fr-modal__content{margin-bottom:3.5rem;padding-left:1rem;padding-right:1rem}.fr-modal__footer{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);bottom:0;display:flex;flex:auto 0 0;margin-top:-2.5rem;padding:1rem;position:sticky;transition:box-shadow .3s;z-index:calc(var(--ground) + 1250)}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{--title-spacing:0 0 1rem 0;color:var(--text-title-grey);font-size:1.375rem;font-weight:700;line-height:1.75rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class*=" fr-icon-"],.fr-modal__title[class^=fr-fi-],.fr-modal__title[class^=fr-icon-]{margin-right:.5rem}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px}.fr-nav{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0}.fr-nav__list{margin:0;padding:0}.fr-nav__item,.fr-nav__list{display:flex;flex-direction:column}.fr-nav__item{align-items:stretch;flex:0 1 auto;position:relative}.fr-nav__item:before{bottom:0;box-shadow:0 -1px 0 0 var(--border-default-grey),inset 0 -1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:3rem}.fr-nav__btn,.fr-nav__link{align-items:center;color:var(--text-action-high-grey);display:flex;flex-direction:row;font-size:1rem;font-weight:700;height:100%;justify-content:space-between;line-height:1.5rem;margin:0;padding:.75rem 1rem;text-align:left;width:auto}.fr-nav__link:not([href])[aria-current]:not([aria-current=false]){cursor:default;pointer-events:none}.fr-nav__btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;transition:transform .3s;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{margin:-4px -1rem;padding:4px 1rem;width:auto}.fr-menu.fr-collapsing{margin-top:0;padding-top:0}.fr-menu__list{margin:0;padding:0 1rem 1rem}.fr-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu:focus{outline:none}.fr-mega-menu>.fr-container{padding:.5rem 1rem 0}.fr-mega-menu .fr-btn--close{display:none}.fr-mega-menu .fr-nav__link{font-weight:400;height:auto;min-height:auto;padding:.75rem 1rem;width:100%}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{content:"";display:block;height:1.5rem;left:0;margin-top:-.75rem;position:absolute;top:50%;width:2px}.fr-mega-menu__leader{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0.5rem;--title-spacing:0 0 0.5rem;padding-top:.5rem}.fr-mega-menu__leader .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-mega-menu__leader .fr-link:after,.fr-mega-menu__leader .fr-link:before{--icon-size:1rem}.fr-mega-menu__leader p{font-size:.875rem;line-height:1.5rem}.fr-mega-menu__category .fr-nav__link{font-weight:700}.fr-mega-menu__list{padding-bottom:1rem;position:relative}.fr-mega-menu__list:before{bottom:0;box-shadow:0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:var(--text-active-blue-france)}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{--idle:transparent;--hover:var(--background-active-blue-france-hover);--active:var(--background-active-blue-france-active);background-color:var(--background-active-blue-france)}.fr-nav__btn[aria-expanded=true]:not(:disabled){--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-action-high-blue-france)}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 var(--border-default-grey)}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 var(--border-default-grey)}.fr-share{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;display:flex;flex-direction:column}.fr-share__title{font-size:1rem;line-height:1.5rem;order:1}.fr-share__text{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem;order:3}.fr-share .fr-btns-group{order:2;width:auto}.fr-share .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-btn--mail:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-btn--copy:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;margin-left:-.5rem;margin-right:-.5rem;order:2;width:auto}.fr-share__group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-share__group>li{display:inline-flex;max-width:100%;width:auto}.fr-share__link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france);display:inline-flex;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem}.fr-share__link--facebook{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--facebook:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--twitter{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--twitter:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--linkedin{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--linkedin:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--mail{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--mail:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share__link--copy{font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-share__link--copy:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-share .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]),.fr-share__link:disabled,a.fr-share__link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-footer{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;box-shadow:inset 0 2px 0 0 var(--border-plain-blue-france),inset 0 -1px 0 0 var(--border-default-grey);padding-top:2rem;width:100%}.fr-footer__body{align-items:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{align-items:center;display:flex;flex-direction:row}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1rem;padding:1rem}.fr-footer__brand .fr-logo:before{background-position:0 -.0625rem,0 0,0 0;background-size:2.75rem 1.125rem,2.75rem 1rem,0;height:1rem;margin-bottom:.3333333333rem;width:2.75rem}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem);background-size:5.25rem 3.75rem;min-width:2.625rem;padding-top:2.2083333333rem}[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand-link{--external-link-content:none;display:flex;flex-direction:row}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__logo{height:auto;max-height:100%}.fr-footer__content{display:flex;flex-basis:100%;flex-wrap:wrap;margin-top:1.5rem}.fr-footer__content-desc{--underline-img:linear-gradient(0deg,currentColor,currentColor);--text-spacing:0 0 0 0;font-size:.875rem;line-height:1.5rem;width:100%}.fr-footer__content-list{align-self:center;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:-.5rem;margin-top:1rem}.fr-footer__content-list>li{margin-bottom:.5rem;margin-right:1.25rem;margin-top:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{color:var(--text-default-grey);font-size:.875rem;font-weight:700;line-height:1.5rem}.fr-footer__content-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__top{--idle:transparent;--hover:var(--background-alt-grey-hover);--active:var(--background-alt-grey-active);background-color:var(--background-alt-grey);display:flex;margin:-1.875rem 0 1.5rem;padding:2rem 0 1.25rem}.fr-footer__top-cat{color:var(--text-title-grey);display:block;font-size:.75rem;font-weight:700;line-height:1.25rem;margin:0 0 .75rem;text-align:left}.fr-footer__top-list{font-size:.75rem;line-height:1.25rem;margin:0}.fr-footer__top-list li{margin-bottom:.75rem}.fr-footer__top-link{font-size:.75rem;line-height:1.25rem}.fr-footer__top-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom{align-items:center;box-shadow:inset 0 1px 0 0 var(--border-default-grey);display:flex;flex-direction:row;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom .fr-btn{color:var(--text-mention-grey);display:inline;font-size:.75rem;line-height:1.25rem;max-height:none;max-width:100%;min-height:1.25rem;overflow:initial;padding:0 .5rem}.fr-footer__bottom .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-footer__bottom-list{margin:0;padding:.5rem 0;width:100%}.fr-footer__bottom-item{display:inline;margin:.5rem 0 0 .25rem;position:relative}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:inline-block;height:1rem;margin-bottom:.625rem;margin-right:.25rem;margin-top:.625rem;position:relative;vertical-align:middle;width:1px}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-link{color:var(--text-mention-grey);font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-link:not(:hover):not(:active){--underline-idle-width:0}.fr-footer__bottom-copy{--text-spacing:0 0 1rem 0;color:var(--text-mention-grey);margin-top:.5rem}.fr-footer__bottom-copy *{font-size:.75rem;line-height:1.25rem}.fr-footer__partners{box-shadow:inset 0 1px 0 0 var(--border-default-grey);margin-top:1rem;padding-top:1rem}.fr-footer__partners a{align-items:center;display:flex;justify-content:center}.fr-footer__partners .fr-footer__logo{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);box-shadow:inset 0 0 0 1px var(--border-default-grey);height:auto;width:auto}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{--title-spacing:0 0 0.75rem 0;color:var(--text-default-grey);flex-basis:100%;font-size:.875rem;font-weight:400;line-height:1.5rem;text-align:center}.fr-footer__partners-link{--external-link-content:none}.fr-footer__partners-logos{display:flex;flex-direction:column;flex-wrap:wrap;margin:0 0 -.5rem}.fr-footer__partners-main{display:flex;flex-direction:row;justify-content:center;margin-bottom:2rem}.fr-footer__partners-sub{margin-bottom:.5rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{align-items:center;display:flex;flex-direction:column;flex-wrap:wrap}.fr-footer__partners-sub>li:first-child,.fr-footer__partners-sub>ul>li:first-child{margin-left:0}.fr-footer__partners-sub .fr-footer__partners-link{margin-bottom:1rem}.fr-footer__partners .fr-footer__partners-link,.fr-footer__partners .fr-footer__partners-link:active,.fr-footer__partners .fr-footer__partners-link:hover{background:#fff}.fr-tile{--text-spacing:0;--title-spacing:0 0 0.25rem;--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey);background-position:0 100%,0 0,100% 0,100% 0;background-repeat:no-repeat,no-repeat,no-repeat,no-repeat;background-size:100% 1px,1px 100%,1px 100%,100% 1px;display:flex;flex-direction:column;padding:2rem 2rem 2.25rem;position:relative;text-align:center}.fr-grid-row .fr-tile{height:100%}.fr-tile.fr-enlarge-link:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-link:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile.fr-enlarge-button:hover .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*10%)}.fr-tile.fr-enlarge-button:active .fr-tile__pictogram{--brightness:calc(100% + var(--brighten)*20%)}.fr-tile__header{margin-bottom:1rem;order:1}.fr-tile__pictogram{align-items:center;display:flex;flex-shrink:0;height:5rem;justify-content:center;margin:0 auto;overflow:hidden;width:5rem}.fr-tile__pictogram svg{height:100%;width:100%}.fr-tile__content{align-items:center;display:flex;flex-direction:column;height:100%}.fr-tile__body{flex:1 1 auto;height:100%;order:2}.fr-tile.fr-enlarge-button .fr-tile__title a:after,.fr-tile.fr-enlarge-button .fr-tile__title a:before,.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-button .fr-tile__title button:before,.fr-tile.fr-enlarge-link .fr-tile__title a:after,.fr-tile.fr-enlarge-link .fr-tile__title a:before,.fr-tile.fr-enlarge-link .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title button:before{--icon-size:1.5rem;bottom:2.25rem;position:absolute;right:2rem}.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title button{font-weight:inherit;line-height:inherit;padding:0;text-align:inherit}.fr-tile--no-icon .fr-tile__title a:not([target=_blank]):after,.fr-tile--no-icon .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-button):not(.fr-tile--download) .fr-tile__title button:after,.fr-tile:not(.fr-enlarge-link):not(.fr-tile--download) .fr-tile__title a:not([target=_blank]):after{content:none}.fr-tile__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:.5rem;order:2}.fr-tile__title:before{background-image:linear-gradient(0deg,var(--border-plain-grey),var(--border-plain-grey));bottom:0;content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1}.fr-tile__title a:before,.fr-tile__title button:before,.fr-tile__title:before{background-position:0 100%;background-repeat:no-repeat;background-size:100% .25rem}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,var(--border-active-blue-france),var(--border-active-blue-france))}.fr-tile__title a:after,.fr-tile__title button:after{margin-left:.5rem;-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile__title [target=_blank]:after{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{flex:1 1 auto;font-size:1rem;line-height:1.5rem;order:3}.fr-tile__start{margin-bottom:.75rem;order:1}.fr-tile__start .fr-badges-group,.fr-tile__start .fr-tags-group{margin-bottom:-.5rem}.fr-tile__detail{align-items:flex-start;display:flex;flex-direction:row;font-size:.75rem;line-height:1.25rem;margin-bottom:0;margin-top:.75rem;order:4}.fr-tile__detail[class*=" fr-fi-"]:before,.fr-tile__detail[class*=" fr-icon-"]:before,.fr-tile__detail[class^=fr-fi-]:before,.fr-tile__detail[class^=fr-icon-]:before{--icon-size:1rem;margin-right:.5rem}.fr-tile.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--sm{padding:1.5rem 1.5rem 1.75rem}.fr-tile--sm .fr-badge{font-size:.75rem;line-height:1.25rem;min-height:1.125rem;padding:0 .375rem}.fr-tile--sm .fr-badge:after,.fr-tile--sm .fr-badge:before{--icon-size:0.75rem}.fr-tile--sm .fr-tag{border-radius:.75rem;font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem}.fr-tile--sm .fr-tag:after,.fr-tile--sm .fr-tag:before{--icon-size:0.75rem}.fr-tile--sm .fr-tile__title{font-size:1rem;line-height:1.5rem;margin-bottom:.25rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{--icon-size:1rem}.fr-tile--sm .fr-tile__desc{font-size:.875rem;line-height:1.5rem}.fr-tile--sm .fr-tile__start{margin-bottom:.5rem}.fr-tile--sm .fr-tile__pictogram{height:3.5rem;width:3.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__header{margin-right:1.5rem}.fr-tile--sm.fr-tile--horizontal .fr-tile__pictogram{height:2.5rem;width:2.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__title button:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title a:after,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__title button:after{--icon-size:1rem;bottom:1.75rem;position:absolute;right:1.5rem}.fr-tile--sm.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--sm.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2rem}.fr-tile--download,.fr-tile--horizontal{align-items:flex-start;flex-direction:row;justify-content:center;text-align:left}.fr-tile--download .fr-tile__header,.fr-tile--horizontal .fr-tile__header{margin-bottom:0;margin-right:2rem}.fr-tile--download .fr-tile__pictogram,.fr-tile--horizontal .fr-tile__pictogram{height:4rem;width:4rem}.fr-tile--download .fr-tile__content,.fr-tile--horizontal .fr-tile__content{align-items:flex-start}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:-2.5rem;margin-top:1.25rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__detail{margin-bottom:-2rem;margin-top:.75rem;padding-right:2rem}.fr-tile--download:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content,.fr-tile--horizontal:not(.fr-tile--no-icon).fr-tile--sm .fr-tile__content{padding-bottom:2rem}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey)),linear-gradient(0deg,var(--border-default-grey),var(--border-default-grey))}.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey)}.fr-tile--shadow{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 500)}.fr-tile--shadow.fr-tile--grey{--idle:transparent;--hover:var(--background-contrast-raised-grey-hover);--active:var(--background-contrast-raised-grey-active);background-color:var(--background-contrast-raised-grey)}.fr-tile--no-background{--hover:inherit;--active:inherit;background-color:transparent}.fr-tile__title:disabled,a.fr-tile__title:not([href]){--idle:transparent;--hover:var(--background-disabled-grey-hover);--active:var(--background-disabled-grey-active);background-color:var(--background-disabled-grey);color:var(--text-disabled-grey)}.fr-tile__title a,.fr-tile__title button{color:var(--text-action-high-blue-france)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:var(--text-disabled-grey)}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,var(--border-disabled-grey),var(--border-disabled-grey))}.fr-tile__img{align-items:center;display:flex;filter:brightness(var(--brightness));flex-shrink:0;height:5rem;justify-content:center;margin:0 auto 1.5rem;overflow:hidden;width:5rem}.fr-tile__img>svg{height:100%;width:100%}.fr-tile__body>.fr-tile__desc{padding-bottom:2.5rem}.fr-tile--horizontal .fr-tile__img{height:3rem;margin:0 1.5rem 0 0;width:3rem}.fr-translate{--rows:8;position:relative}.fr-translate .fr-translate__btn{font-size:1rem;font-weight:500;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;min-height:3rem;overflow:initial;padding:.5rem 1rem;width:100%}.fr-translate .fr-translate__btn:before{margin-left:-.125rem;margin-right:.5rem;-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-translate .fr-translate__btn:after{margin-left:auto;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-translate .fr-translate__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-translate__language{white-space:nowrap}.fr-translate__language[aria-current]:not([aria-current=false]){display:none}.fr-translate__menu{margin:-.25rem 0}.fr-translate .fr-nav__item:before{content:none}.fr-translate .fr-menu__list{padding:0;width:auto}.fr-translate .fr-translate__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france);color:var(--text-active-blue-france)}.fr-translate .fr-translate__btn[aria-expanded=true]:hover{background-color:var(--hover-tint)}.fr-translate .fr-translate__btn[aria-expanded=true]:active{background-color:var(--active-tint)}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative;width:100%}.fr-transcription:before{bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__btn{--text-spacing:0;--title-spacing:0;align-items:center;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;font-size:1rem;font-weight:500;line-height:1.5rem;margin:0;max-height:none;max-width:100%;min-height:3rem;overflow:initial;padding:.75rem 1rem;text-align:left;width:-moz-fit-content;width:fit-content;width:100%}.fr-transcription__btn:after,.fr-transcription__btn:before{display:block}.fr-transcription__btn:after{content:"";margin-left:auto;margin-right:0;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);transition:transform .3s}.fr-transcription__btn:after,.fr-transcription__btn:before{--icon-size:1rem;background-color:currentColor;display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-transcription__btn:before{content:none;content:"";margin-right:.5rem;-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-transcription__content:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__footer{margin:0;padding:.75rem 1rem;position:relative}.fr-transcription__footer:before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription__actions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:center;display:flex;flex-wrap:nowrap;justify-content:flex-end}.fr-transcription__actions-group>div,.fr-transcription__actions-group>li{max-width:100%;width:100%}.fr-transcription__actions-group .fr-btn{font-size:.875rem;justify-content:center;line-height:1.5rem;margin:0 0 0 .5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem;width:calc(100% - 1rem);width:auto}.fr-transcription__actions-group>li{display:inline-flex;max-width:100%;width:auto}.fr-transcription__actions-group .fr-btn:after{--icon-size:1rem;content:"";margin-left:.5rem;margin-right:-.125rem}.fr-transcription__actions-group .fr-btn:before{content:none}.fr-transcription__actions-group .fr-link{font-size:.875rem;line-height:1.5rem;padding:0}.fr-transcription__actions-group .fr-link:after,.fr-transcription__actions-group .fr-link:before{--icon-size:1rem}.fr-transcription__actions-group>:not(:first-child){margin-left:1rem}.fr-transcription .fr-collapse{display:flex;flex-direction:column-reverse}.fr-transcription .fr-collapse--expanded{margin:0 .0625rem}.fr-transcription .fr-modal:not(.fr-modal--opened){background-color:inherit;opacity:inherit;position:relative;visibility:inherit;z-index:auto}.fr-transcription .fr-modal:not(.fr-modal--opened):after{content:none}.fr-transcription .fr-modal:not(.fr-modal--opened):before{bottom:0;box-shadow:inset 0 1px 0 0 var(--border-default-grey);content:"";display:block;height:100%;left:0;pointer-events:none;position:absolute;right:0;top:0;width:100%}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container{padding:.0625rem 0}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row{display:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>.fr-col,.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class*=" fr-col-"],.fr-transcription .fr-modal:not(.fr-modal--opened)>.fr-container>.fr-grid-row>[class^=fr-col-]{flex:inherit;max-width:inherit;width:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__body{background-color:inherit;filter:inherit;max-height:inherit}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__header{display:none}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{--transcription-max-height:9.5rem;margin:0;max-height:var(--transcription-max-height);overflow-y:auto;padding:1rem}.fr-transcription .fr-modal--opened .fr-transcription__footer,.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__title{display:none}.fr-transcription__btn[aria-expanded=true]{--idle:transparent;--hover:var(--background-open-blue-france-hover);--active:var(--background-open-blue-france-active);background-color:var(--background-open-blue-france)}.fr-input{--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);background-color:var(--background-contrast-grey);border-radius:.25rem .25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-plain-grey);color:var(--text-default-grey);display:block;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;width:100%}.fr-input:not(textarea){max-height:2.5rem}.fr-input::placeholder{color:var(--text-mention-grey);font-style:italic;opacity:1}.fr-input::-webkit-contacts-auto-fill-button{--idle:transparent;--hover:var(--text-label-grey-hover);--active:var(--text-label-grey-active);background-color:var(--text-label-grey);cursor:pointer}.fr-input[type=date]{min-height:2.5rem}@supports selector(::-webkit-calendar-picker-indicator){.fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);background-position:calc(100% - 1rem) 50%;background-repeat:no-repeat;background-size:1rem 1rem;padding-right:3rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2.5rem;opacity:0;padding:1rem}}.fr-input-wrap{display:block;position:relative}.fr-input-wrap[class*=" fr-fi-"] .fr-input,.fr-input-wrap[class*=" fr-icon-"] .fr-input,.fr-input-wrap[class^=fr-fi-] .fr-input,.fr-input-wrap[class^=fr-icon-] .fr-input{padding-right:3rem}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class*=" fr-icon-"]:before,.fr-input-wrap[class^=fr-fi-]:before,.fr-input-wrap[class^=fr-icon-]:before{--icon-size:1rem;bottom:.75rem;margin:auto;pointer-events:none;position:absolute;right:1rem;top:.75rem}.fr-input-wrap--action,.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap--addon>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap--addon>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-input-wrap--action .fr-btn{margin-left:1rem}.fr-input-wrap+.fr-hint-text{margin-top:1rem}.fr-input-group{position:relative}.fr-input-group .fr-message:first-child{margin-top:1rem}.fr-input-group--error:before,.fr-input-group--info:before,.fr-input-group--valid:before{background-position:0 0;background-repeat:no-repeat;background-size:.125rem 100%;bottom:0;content:"";display:block;left:-.75rem;pointer-events:none;position:absolute;right:-.75rem;top:0}textarea.fr-input{min-height:3.75rem}.fr-input:disabled{box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:var(--text-label-grey);box-shadow:inset 0 -2px 0 0 var(--border-plain-grey),inset 0 0 0 1000px var(--background-contrast-info)}@supports selector(::-webkit-calendar-picker-indicator){:root[data-fr-theme=dark] .fr-input[type=date]{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}.fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);box-shadow:inset 0 -2px 0 0 var(--border-disabled-grey);color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-input[type=date]:disabled{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M17 3h4c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h4V1h2v2h6V1h2v2zm-2 2H9v2H7V5H4v4h16V5h-3v2h-2V5zm5 6H4v8h16v-8z'/%3E%3C/svg%3E")}}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france)}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}.fr-input-group--error:before{background-image:linear-gradient(0deg,var(--border-plain-error),var(--border-plain-error))}.fr-input-group--valid:before{background-image:linear-gradient(0deg,var(--border-plain-success),var(--border-plain-success))}.fr-input-group--info:before{background-image:linear-gradient(0deg,var(--border-plain-info),var(--border-plain-info))}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-search-bar .fr-input{border-radius:.25rem 0 0;box-shadow:inset 0 -2px 0 0 var(--border-action-high-blue-france);margin:0;max-height:2.5rem}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E");-webkit-appearance:none;background-image:var(--data-uri-svg);background-repeat:no-repeat;background-size:1rem 1rem;height:1rem;width:1rem}.fr-search-bar .fr-btn{border-radius:0 .25rem 0 0;flex:1 0 auto;font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-search-bar .fr-btn:before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--border-plain-success)}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 var(--border-plain-error)}:root[data-fr-theme=dark] .fr-search-bar .fr-input::-webkit-search-cancel-button{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23fff' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media{--text-spacing:0;--title-spacing:0;align-items:center;display:flex;flex-direction:column;margin:2.5rem 0;width:100%}.fr-content-media__img{width:100%}.fr-content-media [class*=" fr-responsive-img"],.fr-content-media [class*=" fr-responsive-vid"],.fr-content-media [class^=fr-responsive-img],.fr-content-media [class^=fr-responsive-vid]{aspect-ratio:1.7777777778}.fr-content-media__caption{display:flex;flex-direction:column;font-size:.75rem;line-height:1.25rem;margin-top:.75rem;width:100%}.fr-content-media__caption .fr-link{font-size:.75rem;line-height:1.25rem;margin-right:auto;padding:0}.fr-content-media__caption .fr-link:after,.fr-content-media__caption .fr-link:before{--icon-size:0.75rem}.fr-content-media .fr-transcription{margin-top:1.5rem}.fr-content-media+.fr-transcription{margin-bottom:2.5rem;margin-top:-1rem}.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-responsive-vid{width:83.3333333333%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw;width:116.6666666667%}.fr-content-media__transcription .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-content-media__transcription .fr-link:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.5rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-content-media__transcription .fr-link:before{content:none}.fr-content-media .fr-link,.fr-content-media__caption{color:var(--text-mention-grey)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-consent-placeholder{--text-spacing:0 0 1.5rem;--title-spacing:0 0 0.5rem;--idle:transparent;--hover:var(--background-contrast-grey-hover);--active:var(--background-contrast-grey-active);align-items:center;background-color:var(--background-contrast-grey);display:flex;flex-direction:column;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{--text-spacing:0 0 1rem;--title-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-overlap-grey-hover);--active:var(--background-alt-overlap-grey-active);background-color:var(--background-alt-overlap-grey);bottom:0;box-shadow:inset 0 0 0 1px var(--border-default-grey);filter:drop-shadow(var(--overlap-shadow));left:0;max-height:calc(100% - 8rem);overflow:auto;padding:1rem;position:fixed;width:100%;z-index:calc(var(--ground) + 1500)}.fr-consent-banner__title{font-size:1.125rem;font-weight:700;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-bottom:-1rem;margin-top:1.5rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{align-items:flex-start;display:flex;flex-direction:column;margin:0;padding:0 0 1.25rem;position:static;width:100%}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{color:var(--text-title-grey);font-size:1.125rem;font-weight:700;line-height:1.5rem;margin:0;padding:2rem 0 .75rem}.fr-consent-service__desc{--text-spacing:0.75rem 0 0.5rem 0;font-size:.875rem;line-height:1.5rem}.fr-consent-service__collapse{margin-bottom:.75rem;margin-top:-.25rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;overflow:initial;padding:0}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{--icon-size:1rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:.25rem;margin-right:-.125rem;-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{content:none}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child){margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;height:1.5rem;left:calc(-1.5rem - 1px);position:absolute;top:0;width:1px}.fr-consent-service .fr-consent-service__collapse-btn{--text-spacing:0;--title-spacing:0;--underline-img:none;--hover-tint:var(--hover);--hover-tint:var(--idle);--active-tint:var(--idle);align-items:center;background:transparent;background-image:var(--underline-img),var(--underline-img);background-position:var(--underline-x) 100%,var(--underline-x) calc(100% - var(--underline-thickness));background-repeat:no-repeat,no-repeat;background-size:var(--underline-hover-width) calc(var(--underline-thickness)*2),var(--underline-idle-width) var(--underline-thickness);color:inherit;color:var(--text-action-high-blue-france);display:inline-flex;flex-direction:row;padding:0 .25rem 0 0;transition:background-size 0s;width:-moz-fit-content;width:fit-content}.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-consent-service .fr-consent-service__collapse-btn:before{display:block}.fr-consent-service .fr-consent-service__collapse-btn:active,.fr-consent-service .fr-consent-service__collapse-btn:hover{--underline-hover-width:var(--underline-max-width)}.fr-consent-service .fr-consent-service__collapse-btn:after{margin-right:-1.25rem;transition:transform .3s}.fr-consent-service .fr-consent-service__collapse-btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-consent-services{margin-bottom:-.5rem;margin-top:.5rem;width:100%}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{--text-spacing:0.25rem 0 0.75rem 0}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{font-size:1rem;font-weight:400;line-height:1.5rem;padding:0 0 .75rem;width:100%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-start;position:static;top:0;width:100%}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-default-grey)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px var(--border-default-grey)}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-follow{--title-spacing:0 0 0.5rem;--text-spacing:0 0 1rem;--idle:transparent;--hover:var(--background-alt-blue-france-hover);--active:var(--background-alt-blue-france-active);background-color:var(--background-alt-blue-france);padding:1.5rem 0}.fr-follow__newsletter .fr-input-group{margin-bottom:1rem}.fr-follow__newsletter .fr-hint-text{margin-bottom:0}.fr-follow__newsletter .fr-label{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;margin-top:0;max-width:37.5rem}.fr-follow__newsletter .fr-input-wrap .fr-input{border-radius:.25rem .25rem 0 0;margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0;justify-content:center;width:100%}.fr-follow__newsletter .fr-messages-group{margin-top:1rem}.fr-follow__social{--text-spacing:0 0 0.75rem;--title-spacing:0 0 0.75rem}.fr-follow__social .fr-btns-group{margin-bottom:-1rem;width:auto}.fr-follow__social .fr-btns-group .fr-btn{justify-content:flex-start;margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow__social .fr-btns-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1.5rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:2rem;background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);margin-left:0;margin-right:.5rem;-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--border-default-blue-france);margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-btn--dailymotion:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin:0 -1rem -1rem;width:auto}.fr-follow .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-follow .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-follow .fr-error-text,.fr-follow .fr-hint-text,.fr-follow .fr-valid-text{margin-top:1rem}.fr-follow__social .fr-link{--underline-img:none;--hover-tint:var(--hover);--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);display:inline-flex;font-size:1rem;line-height:1.5rem;margin-bottom:1rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-link:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.125rem;line-height:1.75rem;max-height:3rem;max-width:3rem;min-height:3rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-follow__social .fr-links-group--lg .fr-link:before{--icon-size:2rem;margin-left:0;margin-right:.5rem}.fr-follow .fr-link--facebook:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-link--facebook:before,.fr-follow .fr-link--twitter:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--twitter:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-link--twitter-x:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-link--instagram:before,.fr-follow .fr-link--twitter-x:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--instagram:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-link--linkedin:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-link--linkedin:before,.fr-follow .fr-link--youtube:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-follow .fr-link--youtube:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-input{--idle:transparent;--hover:var(--background-default-grey-hover);--active:var(--background-default-grey-active);background-color:var(--background-default-grey)}.fr-follow__title{color:var(--text-title-grey)}.fr-follow__newsletter-legal{color:var(--text-mention-grey)}.fr-follow__social .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-follow__social .fr-btn:disabled,.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-btn:not([href]),.fr-follow__social a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-password{--text-spacing:0 0 0.5rem 0;display:flex;flex-direction:row;flex-wrap:wrap;position:relative}.fr-password [data-fr-capslock] .fr-password__input{padding-right:3rem}.fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E");background-image:var(--data-uri-svg);content:"";display:block;height:1rem;pointer-events:none;position:absolute;right:1rem;top:.75rem;width:1rem}.fr-password__checkbox{align-self:flex-end;flex:0;margin-left:auto;order:-1;padding-left:.5rem}.fr-password__checkbox .fr-label{text-wrap:nowrap}.fr-password .fr-input-wrap{flex:1 0 100%}.fr-password__input{margin-bottom:.75rem}.fr-password__input::-webkit-caps-lock-indicator{content:none}.fr-password__input::-ms-reveal{display:none}.fr-password>.fr-label{flex:1;min-width:50%;order:-1}.fr-password .fr-message:first-child{--comma:" "}.fr-password .fr-message--valid[data-fr-valid]{--content:" - "attr(data-fr-valid) var(--comma)}.fr-password .fr-message--error[data-fr-error]{--content:" - "attr(data-fr-error) var(--comma)}.fr-password__btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}:root[data-fr-theme=dark] .fr-password [data-fr-capslock]:before{--data-uri-svg:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:var(--text-label-grey)}.fr-password .fr-password__checkbox input[type=checkbox]+label:before{background-image:radial-gradient(at 5px 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) 4px,transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at calc(100% - 5px) calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),radial-gradient(at 5px calc(100% - 4px),transparent 4px,var(--border-action-high-blue-france) 4px,var(--border-action-high-blue-france) 5px,transparent 6px),linear-gradient(var(--border-action-high-blue-france),var(--border-action-high-blue-france)),var(--data-uri-svg)}.fr-header{--underline-img:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--text-spacing:0;--title-spacing:0;position:relative;width:100%}.fr-header__body-row{margin:0 -1rem}.fr-header__body-row,.fr-header__brand{align-items:center;display:flex;flex-direction:row;justify-content:flex-start}.fr-header__brand{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));flex-wrap:wrap;padding-left:.25rem;padding-right:.25rem;width:100%;z-index:calc(var(--ground) + 750)}.fr-header__brand:after{align-self:stretch;content:"";display:block;flex:1;position:relative;z-index:1}.fr-header__brand-top{align-items:center;display:flex;flex-direction:row;justify-content:flex-start;overflow:hidden;width:100%}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:-2px}.fr-header__logo{flex:0 0 auto;order:1;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-.75rem;padding:.75rem}.fr-header__logo .fr-logo:before{background-position:0 -.046875rem,0 0,0 0;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;height:.75rem;margin-bottom:.25rem;width:2.0625rem}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem);background-size:3.9375rem 2.8125rem;min-width:1.96875rem;padding-top:1.65625rem}[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{flex:0 1 auto;order:2;padding:.75rem}.fr-header__operator img{display:block;min-width:3.5rem}.fr-header__service{--external-link-content:none;color:var(--text-title-grey);margin-left:.75rem;margin-right:.75rem;padding-bottom:.75rem;padding-top:.75rem}.fr-header__service:before{--idle:transparent;--hover:var(--border-default-grey-hover);--active:var(--border-default-grey-active);background-color:var(--border-default-grey);content:"";display:block;height:1px;position:absolute;transform:translateY(-.75rem);width:calc(100% - 2rem)}.fr-header__service-title{font-size:1.125rem;font-weight:700;line-height:1.5rem}.fr-header__service-title .fr-badge{margin:-.25rem 0 0 .25rem;vertical-align:middle}.fr-header__service-tagline{font-size:.875rem;line-height:1.5rem}.fr-header .fr-modal{--idle:transparent;--hover:var(--background-lifted-grey-hover);--active:var(--background-lifted-grey-active);background-color:var(--background-lifted-grey);justify-content:normal;overflow:auto}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-btn--close{margin-bottom:1.5rem}.fr-header .fr-modal>.fr-container{height:100%;overflow:inherit;padding-bottom:4.5rem;padding-top:1rem;pointer-events:all}.fr-header__navbar{align-items:flex-start;align-self:stretch;display:flex;flex:1;flex-direction:row;justify-content:flex-end;margin-right:-.5rem;margin-top:.25rem;order:3;padding:.25rem;z-index:calc(var(--ground) + 1000)}.fr-header__navbar .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france);flex:0 0 auto;font-size:1rem;line-height:1.5rem;margin-left:.5rem;margin-right:.5rem;max-height:2.5rem;max-width:2.5rem;min-height:2.5rem;overflow:hidden;padding:.5rem;white-space:nowrap}.fr-header__navbar .fr-btn:before{--icon-size:1.5rem;margin-left:0;margin-right:.5rem}.fr-header__navbar .fr-btn--menu:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:currentColor;content:"";display:inline-block;flex:0 0 auto;height:var(--icon-size);-webkit-mask-size:100% 100%;mask-size:100% 100%;vertical-align:calc((.75em - var(--icon-size))*.5);width:var(--icon-size)}.fr-header__navbar .fr-btn--search:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{font-size:1rem;justify-content:flex-start;line-height:1.5rem;max-height:none;max-width:100%;min-height:2.5rem;overflow:initial;padding:.5rem 1rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:none}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"],.fr-header__tools-links>.fr-btn[class*=" fr-icon-"],.fr-header__tools-links>.fr-btn[class^=fr-fi-],.fr-header__tools-links>.fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn[class*=" fr-fi-"]:before,.fr-header__tools-links>.fr-btn[class*=" fr-icon-"]:before,.fr-header__tools-links>.fr-btn[class^=fr-fi-]:before,.fr-header__tools-links>.fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header__tools-links>.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links:after{content:"";display:block;height:1px;margin:.75rem -1rem;width:calc(100% + 2rem)}.fr-header .fr-header__menu-links .fr-translate{margin-left:-.5rem;margin-right:-.5rem}.fr-header .fr-header__menu-links .fr-translate__btn{padding-left:.5rem;padding-right:.5rem}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]){display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn{margin-bottom:0}.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]),.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-header__menu-links .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{min-height:3rem;padding-left:0;padding-right:0}.fr-header .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;align-items:stretch;display:flex;flex-wrap:wrap}.fr-header .fr-links-group>div,.fr-header .fr-links-group>li{max-width:100%;width:100%}.fr-header .fr-links-group .fr-btn{justify-content:center;margin:0 .5rem 1rem;width:calc(100% - 1rem)}.fr-header .fr-links-group .fr-link{--underline-img:none;--hover-tint:var(--hover);--active-tint:var(--active)}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-header .fr-links-group .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"],.fr-header .fr-links-group .fr-link[class*=" fr-icon-"],.fr-header .fr-links-group .fr-link[class^=fr-fi-],.fr-header .fr-links-group .fr-link[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-links-group .fr-link[class*=" fr-fi-"]:before,.fr-header .fr-links-group .fr-link[class*=" fr-icon-"]:before,.fr-header .fr-links-group .fr-link[class^=fr-fi-]:before,.fr-header .fr-links-group .fr-link[class^=fr-icon-]:before{--icon-size:1rem;content:"";margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-header__menu-links .fr-links-group .fr-link{margin-bottom:0;min-height:3rem;padding-left:0;width:100%}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 var(--border-default-grey)}.fr-header__menu-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:none;color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__navbar .fr-service__title{color:var(--text-title-grey)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__navbar .fr-btn--menu{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 0 0 1px var(--border-disabled-grey);color:var(--text-disabled-grey)}.fr-header__menu-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;box-shadow:inset 0 -1px 0 0 var(--border-default-grey);color:var(--text-action-high-blue-france)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}.fr-header__tools-links .fr-link{--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-action-high-blue-france)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){--hover:inherit;--active:inherit;background-color:transparent;color:var(--text-disabled-grey)}@media (min-width:36em){ /*! media sm */ /*! media sm */ /*! media sm */.fr-hidden-sm{display:none!important}.fr-unhidden-sm{display:inherit!important}.fr-sr-only-sm{clip:rect(0,0,0,0);border:0;display:block;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;white-space:nowrap;width:1px}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{max-width:none;overflow:hidden;padding-left:0;padding-right:0}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;max-width:8.33333%;width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-sm-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;max-width:16.66667%;width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-sm-2--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;max-width:25%;width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-sm-3--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;max-width:33.33333%;width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-sm-4--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;max-width:41.66667%;width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-sm-5--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;max-width:50%;width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-sm-6--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;max-width:58.33333%;width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-sm-7--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;max-width:66.66667%;width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-sm-8--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;max-width:75%;width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-sm-9--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;max-width:83.33333%;width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-sm-10--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;max-width:91.66667%;width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-sm-11--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;max-width:100%;width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-sm-12--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%} @@ -120,7 +120,7 @@ /*! media md */.fr-stepper__title{font-size:1.25rem;line-height:1.75rem} /*! media md */ /*! media md */.fr-links-group .fr-link--download,.fr-links-group--download .fr-link{margin-bottom:3rem}.fr-links-group__title{font-size:1.5rem;line-height:2rem}.fr-links-group--bordered{padding:2rem 2rem .5rem} - /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{max-height:100vh;overflow:auto;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;overflow:auto;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} + /*! media md */.fr-sidemenu{box-shadow:none;margin-left:0;margin-right:0;padding-right:2rem}.fr-sidemenu .fr-collapse{margin-left:-.25rem;margin-right:-.25rem;padding-left:.25rem;padding-right:.25rem}.fr-sidemenu__title{box-shadow:none;margin:0 0 1.5rem;padding:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem 1rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item:before{content:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 var(--border-default-grey);padding:0 1.5rem 0 0}.fr-sidemenu__inner>.fr-collapse{margin:0;max-height:none;overflow:initial;padding:0}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{border-right:0;box-shadow:inset 1px 0 0 0 var(--border-default-grey);padding:0 1rem 0 2rem}.fr-sidemenu--sticky{position:sticky;top:0}.fr-sidemenu--sticky .fr-sidemenu__inner{margin-bottom:-.25rem;margin-left:-.25rem;max-height:100vh;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu--sticky-full-height{height:100vh;position:sticky;top:0}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{height:100%;margin-bottom:-.25rem;margin-left:-.25rem;overflow:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.5rem}.fr-sidemenu__btn,.fr-sidemenu__link{margin:0;width:100%}.fr-sidemenu__btn[aria-expanded]{padding:.75rem 2.5rem .75rem 1rem}.fr-sidemenu__btn[aria-expanded]:after{margin-right:-1.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none} /*! media md */.fr-highlight{margin-left:2rem;padding-left:2.25rem} /*! media md */.fr-tabs--viewport-width{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)} /*! media md */ @@ -130,7 +130,7 @@ /*! media md */ /*! media md */.fr-download--card{padding:2rem 2rem 5rem}.fr-download--card .fr-download__link{font-size:1.375rem;line-height:1.75rem}.fr-download--card .fr-download__link:after{--icon-size:1.5rem;bottom:2rem;right:2rem}.fr-download--card .fr-download__desc{margin-top:.75rem}.fr-download--card .fr-download__detail{bottom:2rem;left:2rem}.fr-downloads-group__title{font-size:1.5rem;line-height:2rem}.fr-downloads-group--bordered{padding:2rem 2rem .5rem}.fr-downloads-group .fr-download{margin-bottom:1.5rem} /*! media md */.fr-alert__title{font-size:1.25rem;line-height:1.75rem} - /*! media md */.fr-notice__body{padding:0 3rem 0 0}.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem} + /*! media md */.fr-notice__desc,.fr-notice__link,.fr-notice__title{font-size:1rem;line-height:1.5rem}.fr-notice .fr-btn--close{margin-left:1rem} /*! media md */ /*! media md */.fr-card__title{font-size:1.375rem;line-height:1.75rem}.fr-card--sm .fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--lg .fr-card__title{font-size:1.5rem;line-height:2rem}.fr-card--horizontal,.fr-card--horizontal-half,.fr-card--horizontal-tier{flex-direction:row}.fr-card--horizontal .fr-card__img,.fr-card--horizontal-half .fr-card__img,.fr-card--horizontal-tier .fr-card__img{height:100%}.fr-card--horizontal .fr-card__img img,.fr-card--horizontal-half .fr-card__img img,.fr-card--horizontal-tier .fr-card__img img{height:100%;object-fit:cover}.fr-card--horizontal .fr-card__header{flex:0 0 40%;width:40%}.fr-card--horizontal-half .fr-card__header{flex:0 0 50%;width:50%}.fr-card--horizontal-tier .fr-card__header{flex:0 0 33.3333333333%;width:33.3333333333%}.fr-card--download{flex-direction:row}.fr-card--download .fr-card__header{aspect-ratio:auto;flex:0 0 40%;width:40%}.fr-card--download .fr-card__header .fr-card__img img{object-position:50% 0}.fr-card--download .fr-card__img{height:100%}.fr-card--download .fr-card__img img{height:100%;object-fit:cover} /*! media md */ @@ -240,11 +240,11 @@ /*! media lg */ /*! media lg */ /*! media lg */ - /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:400;height:100%;margin:0;min-height:3.5rem;padding:1rem;width:auto}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{justify-content:flex-start;padding:1rem .75rem 1rem 1rem}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;padding:0;pointer-events:auto;width:20rem}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey);padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;padding:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} + /*! media lg */.fr-nav__list{flex-direction:row;flex-wrap:nowrap}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__item .fr-btn,.fr-nav__item .fr-link{min-height:auto}.fr-nav__item{align-items:flex-start;position:static}.fr-nav__item:before{content:none}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{--hover-tint:var(--hover);--active-tint:var(--active);font-size:.875rem;font-weight:400;line-height:1.5rem;min-height:3.5rem;padding:1rem}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){position:relative}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{bottom:0;content:"";height:2px;left:0;margin-top:0;position:absolute;top:auto;width:100%}.fr-nav__btn{justify-content:flex-start}.fr-menu{filter:drop-shadow(var(--overlap-shadow));pointer-events:none;position:absolute;top:100%;z-index:calc(var(--ground) + 1000)}.fr-menu__list{background-image:linear-gradient(0deg,var(--background-open-blue-france),var(--background-open-blue-france));background-position:0 0;background-repeat:no-repeat;background-size:100% 1px;margin-bottom:2rem;pointer-events:auto;width:20rem}.fr-mega-menu,.fr-menu__list{--idle:transparent;--hover:var(--background-overlap-grey-hover);--active:var(--background-overlap-grey-active);background-color:var(--background-overlap-grey);padding:0}.fr-mega-menu{box-shadow:inset 0 1px 0 0 var(--border-open-blue-france);filter:drop-shadow(var(--overlap-shadow));left:0;margin:0;position:absolute;right:0;top:100%;z-index:calc(var(--ground) + 1000)}.fr-mega-menu:after{content:"";display:block;padding-bottom:1.5rem}.fr-mega-menu>.fr-container{padding:0 1.5rem}.fr-mega-menu>.fr-container:before{content:"";display:block;padding-top:1rem}.fr-mega-menu .fr-btn--close{display:flex}.fr-mega-menu__leader{margin-top:-1.25rem;padding-top:0}.fr-mega-menu__list:before{content:none}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--border-default-grey)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--border-default-grey)} /*! media lg */ /*! media lg */.fr-footer__content{flex-basis:50%;margin-top:0;max-width:36.75rem} /*! media lg */.fr-tile--vertical\@lg{align-items:center;flex-direction:column;text-align:center}.fr-tile--vertical\@lg .fr-tile__header{margin-bottom:1rem;margin-right:0!important}.fr-tile--vertical\@lg .fr-tile__pictogram{height:5rem;width:5rem}.fr-tile--vertical\@lg .fr-tile__content{align-items:center}.fr-tile--vertical\@lg .fr-tile__detail{margin-top:.75rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__content,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__content{padding-bottom:2.5rem}.fr-tile--vertical\@lg.fr-enlarge-button:not(.fr-tile--no-icon) .fr-tile__detail,.fr-tile--vertical\@lg.fr-enlarge-link:not(.fr-tile--no-icon) .fr-tile__detail{margin-bottom:0;padding-right:0} - /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem 0}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} + /*! media lg */.fr-translate .fr-translate__btn{font-size:.875rem;line-height:1.5rem;min-height:auto;padding:.25rem .75rem;width:auto}.fr-translate .fr-translate__btn:after{margin-left:.25rem;margin-right:-.25rem}.fr-translate .fr-translate__btn:before{--icon-size:1rem}.fr-translate__language[aria-current]:not([aria-current=false]){display:inline-flex}.fr-translate__menu{margin:-.25rem -1rem}.fr-translate .fr-menu__list{display:grid;grid-auto-flow:column;grid-template-rows:repeat(var(--rows),auto)}.fr-btns-group .fr-translate__menu{margin:-1.25rem -.75rem 0} /*! media lg */ /*! media lg */ /*! media lg */ @@ -253,7 +253,7 @@ /*! media lg */.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{justify-content:flex-end;position:absolute;width:56%} /*! media lg */ /*! media lg */ - /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} + /*! media lg */.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{background:transparent;filter:none;flex-wrap:nowrap;margin-bottom:-1rem;margin-top:-1rem;padding-left:0;padding-right:0;width:auto;z-index:auto}.fr-header__brand-top{width:auto}.fr-header__brand.fr-enlarge-link a[href]:before{outline-offset:2px}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__service{box-shadow:none;margin-left:0;margin-right:0}.fr-header__service:before{content:none}.fr-header .fr-modal{background-color:transparent;height:auto;margin:0;opacity:1;overflow:initial;position:static;visibility:inherit;width:auto}.fr-header .fr-modal>*>.fr-btn--close{display:none}.fr-header .fr-modal>.fr-container{height:auto;padding-bottom:0;padding-top:0}.fr-header__navbar{display:none}.fr-header__tools{align-items:flex-end;flex:1 0 auto;flex-direction:column;margin-left:auto;padding-left:1rem;padding-right:1rem;text-align:right}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{margin-left:auto;max-width:24rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-],.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]{font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;max-height:none;max-width:100%;min-height:2rem;overflow:initial;padding:.25rem .75rem}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{--icon-size:1rem;margin-left:-.125rem;margin-right:.5rem}.fr-header__tools-links{display:flex;flex-direction:row;gap:.5rem;justify-content:flex-end}.fr-header__tools-links .fr-btns-group{justify-content:flex-end;margin:0 -.25rem -1rem}.fr-header__tools-links .fr-btns-group .fr-btn{margin-left:.25rem;margin-right:.25rem;max-width:100%;width:auto}.fr-header__tools-links .fr-btns-group>li{align-items:flex-start;display:inline-flex;max-width:100%;width:auto}.fr-header .fr-header__menu-links .fr-translate{margin-bottom:-1rem;margin-left:0;margin-right:0}.fr-header .fr-header__menu-links{display:none}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{margin:0 -1rem;max-width:calc(100% + 1rem)}.fr-header .fr-links-group{justify-content:flex-end}.fr-header .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group{justify-content:flex-end;margin:0 -.25rem}.fr-header__tools-links .fr-links-group .fr-btn{margin-left:.5rem;margin-right:.5rem;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group>li{display:inline-flex;max-width:100%;width:auto}.fr-header__tools-links .fr-links-group .fr-link{margin-left:.25rem;margin-right:.25rem}.fr-header .fr-modal>*>.fr-link--close{display:none}.fr-header{--idle:transparent;--hover:var(--background-raised-grey-hover);--active:var(--background-raised-grey-active);background-color:var(--background-raised-grey);filter:drop-shadow(var(--raised-shadow));z-index:calc(var(--ground) + 750)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--border-default-grey)} /*! media lg */ /*! media lg */ /*! media lg */ @@ -401,4 +401,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range[data-fr-js-range]:after,.fr-range[data-fr-js-range]:before{border:1px solid buttontext}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__list>.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination__link{background-color:transparent}.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort:before{transition:transform .3s}.fr-btn--sort[aria-sorting=desc]:before{transform:rotate(-180deg)}.fr-btn--sort[aria-sorting=asc]:after,.fr-btn--sort[aria-sorting=asc]:before,.fr-btn--sort[aria-sorting=desc]:after,.fr-btn--sort[aria-sorting=desc]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group,ul.fr-links-group{list-style-type:none}ol.fr-links-group,ul.fr-links-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption,.fr-table[data-fr-js-table=true].fr-table--no-caption caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table thead th:last-child{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/tornado-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__operator img{height:auto!important}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__item{position:static}.fr-nav__item--align-right .fr-collapse{transform:translateX(-100%)}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file + /*! media xl */}@media (-ms-high-contrast:active),(forced-colors:active){a:not([href]){color:graytext}[href],[href]:visited{color:linktext}[target=_blank]:after,[target=_blank][class*=" fr-fi-"]:after,[target=_blank][class*=" fr-icon-"]:after,[target=_blank][class^=fr-fi-]:after,[target=_blank][class^=fr-icon-]:after{background-color:linktext;forced-color-adjust:none}button{color:buttontext}button:disabled{color:graytext}input,select,textarea{border:1px solid}.fr-artwork-background,.fr-artwork-motif{fill:graytext}.fr-artwork-decorative{fill:none}.fr-artwork-major,.fr-artwork-minor{fill:canvastext}ul>li::marker{color:graytext}.fr-hr,hr{border-top:1px solid}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:graytext}.fr-range-group--disabled .fr-range[data-fr-js-range]:after,.fr-range-group--disabled .fr-range[data-fr-js-range]:before{border:1px solid graytext}.fr-range-group--disabled .fr-label,.fr-range-group--disabled .fr-label .fr-hint-text{color:graytext}.fr-range input[type=range]{border:none}.fr-range[data-fr-js-range]:before{box-shadow:0 0 0 1px buttontext}.fr-range[data-fr-js-range]:after{background-color:highlight}.fr-range[data-fr-js-range] input[type=range]{border:none}.fr-range[data-fr-js-range] input[type=range]:focus::-webkit-slider-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]:focus::-moz-range-thumb{outline-color:highlight}.fr-range[data-fr-js-range] input[type=range]::-webkit-slider-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]::-moz-range-thumb{background:buttontext;box-shadow:none}.fr-range[data-fr-js-range] input[type=range]:disabled::-webkit-slider-thumb{background:graytext}.fr-range[data-fr-js-range] input[type=range]:disabled::-moz-range-thumb{background:graytext}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,buttontext 0,buttontext 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,highlighttext 0,highlighttext 2px,transparent 0);box-shadow:inset 10px 0 0 0 highlight,inset -10px 0 0 0 highlight}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 highlight,inset -6px 0 0 0 highlight}.fr-range--double[data-fr-js-range] input[type=range]:first-of-type{border-right:none}.fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2){border-left:none}.fr-accordion__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-accordion{border-bottom:1px solid;border-top:1px solid}.fr-accordion+.fr-accordion{border-top:none}.fr-badge:after,.fr-badge:before{background-color:canvastext}.fr-badge{outline:1px solid}.fr-btn:after,.fr-btn:before{background-color:buttontext}.fr-btn:disabled:after,.fr-btn:disabled:before,a.fr-btn:not([href]):after,a.fr-btn:not([href]):before{background-color:graytext}.fr-btn:disabled,a.fr-btn:not([href]){border-color:graytext;color:graytext}a[href].fr-btn:after,a[href].fr-btn:before{background-color:linktext}button.fr-btn{border:1px solid buttontext}.fr-btn--account:before,.fr-btn--briefcase:before,.fr-btn--close:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--sort:before,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:before,.fr-btn--team:before,.fr-btn--tooltip:before{background-color:buttontext;forced-color-adjust:none}.fr-connect{border:1px solid}.fr-connect__brand,.fr-connect__login{line-height:1.1}.fr-connect--plus:after{color:buttontext;forced-color-adjust:none}.fr-connect-group .fr-connect+p a{text-decoration:underline;text-underline-offset:5px}.fr-quote{border-left:1px solid}.fr-breadcrumb__list li:not(:first-child):before{background-color:canvastext;forced-color-adjust:none}.fr-breadcrumb__link{text-decoration:underline;text-underline-offset:5px}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){text-decoration:none}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:graytext}.fr-message--error:after,.fr-message--error:before,.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before,.fr-message--warning:after,.fr-message--warning:before{background-color:canvasText;forced-color-adjust:none}.fr-error-text:before,.fr-info-text:before,.fr-valid-text:before{background-color:canvastext;forced-color-adjust:none}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,highlight 0,highlight var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,graytext 0,graytext var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));forced-color-adjust:none}.fr-tooltip{background:canvas;outline:1px solid}.fr-tooltip.fr-placement{padding:.5rem}a.fr-link{text-decoration:underline;text-underline-offset:5px}a.fr-link:not([href]):after,a.fr-link:not([href]):before{background-color:graytext}.fr-link--download:after,.fr-links-group--download .fr-link:after{background-color:linktext;forced-color-adjust:none}.fr-link--download .fr-link__detail,.fr-links-group--download .fr-link .fr-link__detail{color:canvastext}.fr-link--download:not([href]) .fr-link__detail,.fr-links-group--download .fr-link:not([href]) .fr-link__detail{color:graytext}.fr-link--close:after{background-color:buttontext;forced-color-adjust:none}.fr-sidemenu__inner{border-right:1px solid}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:highlight;forced-color-adjust:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:buttontext;forced-color-adjust:none}.fr-highlight{border-left:4px solid;padding-left:1rem}.fr-tabs{border-bottom:1px solid}.fr-tabs:before{border:1px solid graytext}.fr-tabs__tab{border:1px solid}.fr-tabs__tab[aria-selected=true]:not(:disabled){border-bottom:1px solid highlight;border-top:1px solid highlight;border-color:highlight highlight canvas;border-style:solid;border-width:4px 1px 1px;color:highlight}.fr-pagination__link:not([href]):disabled:not([aria-current]),a.fr-pagination__link:not([href]):not([aria-current]){color:graytext}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--first:before,.fr-pagination__link--last.fr-pagination__link--label:after,.fr-pagination__link--last:before,.fr-pagination__link--next.fr-pagination__link--label:after,.fr-pagination__link--next:before,.fr-pagination__link--prev.fr-pagination__link--label:before,.fr-pagination__link--prev:before{forced-color-adjust:none}.fr-summary{outline:1px solid}.fr-summary__link{text-decoration:underline;text-underline-offset:5px}.fr-table__content .fr-cell--fixed .fr-checkbox-group .fr-label{opacity:0}.fr-table__content .fr-cell--fixed{outline:1px solid}.fr-table__content table tbody tr:after{border:2px solid highlight}.fr-table__content td,.fr-table__content th{border:1px solid}.fr-tag:after,.fr-tag:before{background-color:canvastext}.fr-tag{border:1px solid}.fr-tag:disabled,a.fr-tag:not([href]){color:graytext}a.fr-tag[aria-pressed=true]:not(:disabled),button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled),input[type=image].fr-tag[aria-pressed=true]:not(:disabled),input[type=reset].fr-tag[aria-pressed=true]:not(:disabled),input[type=submit].fr-tag[aria-pressed=true]:not(:disabled){border:1px solid highlight;border-top:4px solid highlight;color:highlight}a.fr-tag[aria-pressed=true].fr-tag--sm:after,a.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true].fr-tag--sm:after,button.fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after{display:none}a.fr-tag--dismiss:after,button.fr-tag--dismiss:after,input[type=button].fr-tag--dismiss:after,input[type=image].fr-tag--dismiss:after,input[type=reset].fr-tag--dismiss:after,input[type=submit].fr-tag--dismiss:after{background-color:buttontext;forced-color-adjust:none}a.fr-tag--dismiss:disabled:after,button.fr-tag--dismiss:disabled:after,input[type=button].fr-tag--dismiss:disabled:after,input[type=image].fr-tag--dismiss:disabled:after,input[type=reset].fr-tag--dismiss:disabled:after,input[type=submit].fr-tag--dismiss:disabled:after{background-color:graytext}a.fr-tag--dismiss.fr-tag--sm:after,button.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag--dismiss.fr-tag--sm:after,input[type=image].fr-tag--dismiss.fr-tag--sm:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:after{background-color:buttontext}a.fr-tag--dismiss.fr-tag--sm:disabled:after,button.fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=button].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=image].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=reset].fr-tag--dismiss.fr-tag--sm:disabled:after,input[type=submit].fr-tag--dismiss.fr-tag--sm:disabled:after{background-color:graytext}.fr-tags-group.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after{background-color:buttontext}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after{display:none}.fr-download .fr-download__link:after{forced-color-adjust:none}.fr-alert{outline:1px solid}.fr-alert:before{background-color:graytext;left:8px}.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice{outline:1px solid}.fr-notice__title:before{background-color:canvastext;forced-color-adjust:none}.fr-notice .fr-btn--close:before{background-color:buttontext;forced-color-adjust:none}.fr-notice--weather-purple,.fr-notice--weather-red{color:highlight}.fr-notice--attack .fr-notice__title:before,.fr-notice--cyberattack .fr-notice__title:before,.fr-notice--kidnapping .fr-notice__title:before,.fr-notice--weather-purple .fr-notice__title:before,.fr-notice--weather-red .fr-notice__title:before,.fr-notice--witness .fr-notice__title:before{background-color:highlight;forced-color-adjust:none}.fr-notice--attack,.fr-notice--cyberattack,.fr-notice--kidnapping,.fr-notice--witness{color:highlight}.fr-radio-group input[type=radio]{opacity:1}.fr-radio-group input[type=radio]:disabled+label{color:graytext}.fr-radio-group input[type=radio]+label:before{display:none}.fr-radio-rich input[type=radio]:disabled+label{outline:1px solid}.fr-radio-rich input[type=radio]:disabled+label:before{background-color:transparent}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram{outline:1px solid graytext}.fr-radio-rich input[type=radio]+label,.fr-radio-rich__img,.fr-radio-rich__pictogram{outline:1px solid}.fr-card{border:1px solid}.fr-card__title a:after,.fr-card__title button:after{background-color:linktext;forced-color-adjust:none}.fr-card__title a,.fr-card__title button{text-decoration:underline;text-underline-offset:5px}.fr-card__title a:not([href]):after,.fr-card__title button:not([href]):after{background-color:graytext}.fr-card__title [target=_blank]:after{background-color:linktext}.fr-card.fr-enlarge-button .fr-card__title button,.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card--download .fr-card__title a:after,.fr-card--download .fr-card__title button:after{background-color:linktext}.fr-card--download .fr-card__title a:disabled:after,.fr-card--download .fr-card__title a:not([href]):after,.fr-card--download .fr-card__title button:disabled:after{background-color:graytext}.fr-checkbox-group input[type=checkbox]{opacity:1}.fr-checkbox-group input[type=checkbox]:disabled+label{color:graytext}.fr-checkbox-group input[type=checkbox]+label:before{display:none}.fr-segmented__elements{outline:1px solid}.fr-segmented input+label:before{background-color:buttontext}.fr-segmented input:checked:focus+label{outline:4px solid;outline-offset:0}.fr-segmented input:checked+label{color:highlight;outline:2px solid}.fr-segmented input:checked:disabled+label,.fr-segmented input:disabled+label{color:graytext}.fr-segmented input:not([disabled]):not(:checked)+label{color:buttontext}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-color:transparent;background-image:none;border:2px solid highlight;color:canvastext;forced-color-adjust:none}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-color:highlight;background-image:url('data:image/svg+xml;charset=utf-8,');border:2px solid highlight}.fr-toggle input[type=checkbox]:focus~.fr-toggle__label:before{outline-color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label{color:graytext}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none;color:graytext}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after,.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:none;border:2px solid graytext;box-shadow:none}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-color:graytext;background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-toggle label[data-fr-unchecked-label][data-fr-checked-label]:before{background-image:none;color:canvastext}.fr-toggle label:before{background-image:none;height:1.5rem;padding-top:1.25rem}.fr-toggle label:after,.fr-toggle label:before{background-color:transparent;border:2px solid buttontext;forced-color-adjust:none}.fr-toggle label:after{box-shadow:none}.fr-select{background-image:url('data:image/svg+xml;charset=utf-8,')}.fr-callout{border-left:4px solid;padding-left:1.25rem}.fr-modal--opened .fr-modal__body{border:1px solid}.fr-modal__footer,.fr-nav__list{border-top:1px solid}.fr-nav__list{border-bottom:1px solid}.fr-nav__btn:after{background-color:buttontext;forced-color-adjust:none}.fr-mega-menu .fr-nav__link[aria-current]:not([aria-current=false]):before,.fr-menu .fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;width:.25rem}.fr-share .fr-btns-group .fr-btn{border:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:disabled:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a[href].fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-share__link--facebook:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--facebook:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--facebook:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--twitter:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--twitter:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--twitter:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--linkedin:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--linkedin:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--linkedin:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--mail:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--mail:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--mail:before{background-color:graytext;forced-color-adjust:none}.fr-share__link--copy:before{background-color:buttontext;forced-color-adjust:none}a[href].fr-share__link--copy:before{background-color:linktext;forced-color-adjust:none}a:not([href]).fr-share__link--copy:before{background-color:graytext;forced-color-adjust:none}.fr-footer{border-top:2px solid;padding-top:1.875rem}.fr-footer__bottom{border-top:1px solid}.fr-footer__bottom-item .fr-btn{border:none}.fr-footer__partners{border-top:1px solid}.fr-tile{outline:1px solid}.fr-tile.fr-enlarge-button .fr-tile__title a,.fr-tile.fr-enlarge-button .fr-tile__title button,.fr-tile.fr-enlarge-link .fr-tile__title a,.fr-tile.fr-enlarge-link .fr-tile__title button{text-decoration:none}.fr-tile__title a,.fr-tile__title button{text-decoration:underline;text-underline-offset:5px}.fr-tile__title a:after,.fr-tile__title button:after{background-color:linktext;forced-color-adjust:none}.fr-tile__title a:disabled:after,.fr-tile__title a:not([href]):after,.fr-tile__title button:disabled:after{background-color:graytext}.fr-tile.fr-tile--download .fr-tile__title a:after,.fr-tile.fr-tile--download .fr-tile__title button:after,.fr-tile__title [target=_blank]:after{background-color:linktext}.fr-tile.fr-tile--download .fr-tile__title a:disabled:after,.fr-tile.fr-tile--download .fr-tile__title a:not([href]):after,.fr-tile.fr-tile--download .fr-tile__title button:disabled:after{background-color:graytext}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:buttontext;forced-color-adjust:none}.fr-transcription__btn:after{forced-color-adjust:none}.fr-transcription__btn{border:1px solid}.fr-transcription .fr-collapse{outline:1px solid}.fr-transcription .fr-modal:not(.fr-modal--opened){border-bottom:1px solid}.fr-input-wrap--addon>:last-child:not(:first-child){max-height:2.5rem}.fr-content-media__transcription .fr-link:after,.fr-search-bar .fr-btn:before{background-color:buttontext;forced-color-adjust:none}.fr-consent-banner{outline:1px solid}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after{forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-follow__social .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:buttontext;forced-color-adjust:none}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:linktext}.fr-follow__social .fr-btns-group--lg a.fr-btn:not([href]):not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:graytext}.fr-header{outline:1px solid}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:buttontext;forced-color-adjust:none}.fr-header .fr-header__menu-links .fr-btn{border:none}}@media (hover:hover) and (pointer:fine){:root{--brighten:-1}a[href]:hover,button:not(:disabled):hover,input[type=button]:not(:disabled):hover,input[type=image]:not(:disabled):hover,input[type=reset]:not(:disabled):hover,input[type=submit]:not(:disabled):hover{background-color:var(--hover-tint)}a[href]:active,button:not(:disabled):active,input[type=button]:not(:disabled):active,input[type=image]:not(:disabled):active,input[type=reset]:not(:disabled):active,input[type=submit]:not(:disabled):active{background-color:var(--active-tint)}a[href]:active,a[href]:hover{--underline-hover-width:var(--underline-max-width)}.fr-enlarge-link a:active,.fr-enlarge-link a:hover{background:none}.fr-enlarge-link:hover{background-color:var(--hover)}.fr-enlarge-link:active{background-color:var(--active)}.fr-enlarge-button button:active,.fr-enlarge-button button:hover{background:none}.fr-enlarge-button:hover{background-color:var(--hover)}.fr-enlarge-button:active{background-color:var(--active)}:root[data-fr-theme=dark]{--brighten:1}.fr-card--download.fr-enlarge-button:hover .fr-card__header,.fr-card--download.fr-enlarge-link:hover .fr-card__header{background-color:var(--hover)}.fr-card--download.fr-enlarge-button:active .fr-card__header,.fr-card--download.fr-enlarge-link:active .fr-card__header{background-color:var(--active)}.fr-header__brand.fr-enlarge-link a[href]:hover{--a:0.1}.fr-header__brand.fr-enlarge-link a[href]:active{--a:0.2}}@media (-ms-high-contrast:active) and (-ms-high-contrast:active),(-ms-high-contrast:active) and (forced-colors:active),(forced-colors:active) and (-ms-high-contrast:active),(forced-colors:active) and (forced-colors:active){[class*=" fr-fi-"]:after,[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:after,[class*=" fr-icon-"]:before,[class^=fr-fi-]:after,[class^=fr-fi-]:before,[class^=fr-icon-]:after,[class^=fr-icon-]:before{background-color:canvastext;forced-color-adjust:none}button[class*=" fr-fi-"]:not([disabled]):after,button[class*=" fr-fi-"]:not([disabled]):before,button[class*=" fr-icon-"]:not([disabled]):after,button[class*=" fr-icon-"]:not([disabled]):before,button[class^=fr-fi-]:not([disabled]):after,button[class^=fr-fi-]:not([disabled]):before,button[class^=fr-icon-]:not([disabled]):after,button[class^=fr-icon-]:not([disabled]):before{background-color:buttontext}a[href][class*=" fr-fi-"]:after,a[href][class*=" fr-fi-"]:before,a[href][class*=" fr-icon-"]:after,a[href][class*=" fr-icon-"]:before,a[href][class^=fr-fi-]:after,a[href][class^=fr-fi-]:before,a[href][class^=fr-icon-]:after,a[href][class^=fr-icon-]:before{background-color:linktext}a[class*=" fr-fi-"]:not([href]):after,a[class*=" fr-fi-"]:not([href]):before,a[class*=" fr-icon-"]:not([href]):after,a[class*=" fr-icon-"]:not([href]):before,a[class^=fr-fi-]:not([href]):after,a[class^=fr-fi-]:not([href]):before,a[class^=fr-icon-]:not([href]):after,a[class^=fr-icon-]:not([href]):before,audio[class*=" fr-fi-"]:not([href]):after,audio[class*=" fr-fi-"]:not([href]):before,audio[class*=" fr-icon-"]:not([href]):after,audio[class*=" fr-icon-"]:not([href]):before,audio[class^=fr-fi-]:not([href]):after,audio[class^=fr-fi-]:not([href]):before,audio[class^=fr-icon-]:not([href]):after,audio[class^=fr-icon-]:not([href]):before,button[class*=" fr-fi-"]:disabled:after,button[class*=" fr-fi-"]:disabled:before,button[class*=" fr-icon-"]:disabled:after,button[class*=" fr-icon-"]:disabled:before,button[class^=fr-fi-]:disabled:after,button[class^=fr-fi-]:disabled:before,button[class^=fr-icon-]:disabled:after,button[class^=fr-icon-]:disabled:before,input[class*=" fr-fi-"]:disabled:after,input[class*=" fr-fi-"]:disabled:before,input[class*=" fr-icon-"]:disabled:after,input[class*=" fr-icon-"]:disabled:before,input[class^=fr-fi-]:disabled:after,input[class^=fr-fi-]:disabled:before,input[class^=fr-icon-]:disabled:after,input[class^=fr-icon-]:disabled:before,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:after,input[type=checkbox]:disabled+label[class*=" fr-fi-"]:before,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:after,input[type=checkbox]:disabled+label[class*=" fr-icon-"]:before,input[type=checkbox]:disabled+label[class^=fr-fi-]:after,input[type=checkbox]:disabled+label[class^=fr-fi-]:before,input[type=checkbox]:disabled+label[class^=fr-icon-]:after,input[type=checkbox]:disabled+label[class^=fr-icon-]:before,input[type=checkbox][class*=" fr-fi-"]:disabled:after,input[type=checkbox][class*=" fr-fi-"]:disabled:before,input[type=checkbox][class*=" fr-icon-"]:disabled:after,input[type=checkbox][class*=" fr-icon-"]:disabled:before,input[type=checkbox][class^=fr-fi-]:disabled:after,input[type=checkbox][class^=fr-fi-]:disabled:before,input[type=checkbox][class^=fr-icon-]:disabled:after,input[type=checkbox][class^=fr-icon-]:disabled:before,input[type=radio]:disabled+label[class*=" fr-fi-"]:after,input[type=radio]:disabled+label[class*=" fr-fi-"]:before,input[type=radio]:disabled+label[class*=" fr-icon-"]:after,input[type=radio]:disabled+label[class*=" fr-icon-"]:before,input[type=radio]:disabled+label[class^=fr-fi-]:after,input[type=radio]:disabled+label[class^=fr-fi-]:before,input[type=radio]:disabled+label[class^=fr-icon-]:after,input[type=radio]:disabled+label[class^=fr-icon-]:before,input[type=radio][class*=" fr-fi-"]:disabled:after,input[type=radio][class*=" fr-fi-"]:disabled:before,input[type=radio][class*=" fr-icon-"]:disabled:after,input[type=radio][class*=" fr-icon-"]:disabled:before,input[type=radio][class^=fr-fi-]:disabled:after,input[type=radio][class^=fr-fi-]:disabled:before,input[type=radio][class^=fr-icon-]:disabled:after,input[type=radio][class^=fr-icon-]:disabled:before,select[class*=" fr-fi-"]:disabled:after,select[class*=" fr-fi-"]:disabled:before,select[class*=" fr-icon-"]:disabled:after,select[class*=" fr-icon-"]:disabled:before,select[class^=fr-fi-]:disabled:after,select[class^=fr-fi-]:disabled:before,select[class^=fr-icon-]:disabled:after,select[class^=fr-icon-]:disabled:before,textarea[class*=" fr-fi-"]:disabled:after,textarea[class*=" fr-fi-"]:disabled:before,textarea[class*=" fr-icon-"]:disabled:after,textarea[class*=" fr-icon-"]:disabled:before,textarea[class^=fr-fi-]:disabled:after,textarea[class^=fr-fi-]:disabled:before,textarea[class^=fr-icon-]:disabled:after,textarea[class^=fr-icon-]:disabled:before,video[class*=" fr-fi-"]:not([href]):after,video[class*=" fr-fi-"]:not([href]):before,video[class*=" fr-icon-"]:not([href]):after,video[class*=" fr-icon-"]:not([href]):before,video[class^=fr-fi-]:not([href]):after,video[class^=fr-fi-]:not([href]):before,video[class^=fr-icon-]:not([href]):after,video[class^=fr-icon-]:not([href]):before{background-color:graytext}.fr-segmented input:checked+label:before,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-fi-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class*=" fr-icon-"]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-fi-]:not(:disabled):before,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):after,.fr-tabs__tab[aria-selected=true][class^=fr-icon-]:not(:disabled):before,a.fr-tag[aria-pressed=true]:not(:disabled):after,a.fr-tag[aria-pressed=true]:not(:disabled):before,button.fr-tag[aria-pressed=true]:not(:disabled):after,button.fr-tag[aria-pressed=true]:not(:disabled):before,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=image].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=reset].fr-tag[aria-pressed=true]:not(:disabled):before,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):after,input[type=submit].fr-tag[aria-pressed=true]:not(:disabled):before{background-color:highlight}.fr-segmented input:checked:disabled+label:before{background-color:graytext}}@media (prefers-reduced-motion:reduce){.fr-accordion .fr-collapse,.fr-accordion__btn:after,.fr-collapse,.fr-collapse:before,.fr-consent-service .fr-consent-service__collapse-btn:after,.fr-modal,.fr-modal--opened,.fr-modal__footer,.fr-nav__btn:after,.fr-tabs,.fr-tabs__panel,.fr-translate .fr-translate__btn:after,.fr-translate__menu{transition:none}}@media (prefers-color-scheme:dark) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}}@media (prefers-color-scheme:light) and (forced-colors:active){.fr-logo:after,[data-fr-theme=dark] .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-logo--sm:after,[data-fr-theme=dark] .fr-logo--sm:after{background-position:0 calc(100% + 1.40625rem)}.fr-logo--lg:after,[data-fr-theme=dark] .fr-logo--lg:after{background-position:0 calc(100% + 2.34375rem)}.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 1.875rem)}.fr-header__logo .fr-logo:after,[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:0 calc(100% + 1.40625rem)}}@media (min-width:48em) and (-ms-high-contrast:active),(min-width:48em) and (forced-colors:active){.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid}}@media (-ms-high-contrast:active) and (min-width:48em),(forced-colors:active) and (min-width:48em){.fr-highlight{padding-left:2rem}.fr-callout{padding-left:2.75rem}}@media (min-width:62em) and (-ms-high-contrast:active),(min-width:62em) and (forced-colors:active){.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--last.fr-pagination__link--lg-label:after,.fr-pagination__link--next.fr-pagination__link--lg-label:after,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{forced-color-adjust:none}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:highlight;height:.25rem}.fr-mega-menu,.fr-menu__list{outline:1px solid}.fr-translate .fr-menu__list{border-top:1px solid}}@media (forced-colors:active),(prefers-contrast:more){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid var(--border-active-blue-france);justify-content:center;padding:calc(.25rem - 1px) calc(.75rem - 1px)}}@media (min-width:48em) and (prefers-color-scheme:dark) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}}@media (min-width:48em) and (prefers-color-scheme:light) and (forced-colors:active){.fr-footer__brand .fr-logo:after,[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:0 calc(100% + 2.34375rem)}}@media (-ms-high-contrast:active) and (min-width:62em),(forced-colors:active) and (min-width:62em){.fr-header{outline:none}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button,.fr-enlarge-link{background-color:transparent}.fr-enlarge-button:hover,.fr-enlarge-link:hover{background-color:rgba(0,0,0,.05)}.fr-enlarge-button:active,.fr-enlarge-link:active{background-color:rgba(0,0,0,.1)}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{background-color:#000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-fill-lower{background-color:#e5e5e5}.fr-range[data-fr-js-range].fr-range--double{background-image:linear-gradient(90deg,#000091 0,#000091)}.fr-range-group--disabled .fr-range--double[data-fr-js-range]{background-image:linear-gradient(90deg,#e5e5e5 0,#e5e5e5)}.fr-pagination a[href].fr-pagination__link,.fr-pagination button.fr-pagination__link{background-color:transparent}.fr-pagination a[href].fr-pagination__link:hover,.fr-pagination button.fr-pagination__link:hover{background-color:rgba(0,0,0,.05)}.fr-pagination a[href].fr-pagination__link:active,.fr-pagination button.fr-pagination__link:active{background-color:rgba(0,0,0,.1)}.fr-table__content table{border-left:1px solid #929292;border-right:1px solid #929292}.fr-table__content table thead tr:first-child th{border-top:1px solid #929292}.fr-table__content table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table--bordered table td,.fr-table--bordered table th{border-right:1px solid #929292}.fr-table>table thead tr:first-child th{border-top:1px solid #929292}.fr-table>table thead tr:last-child th{border-bottom:1px solid #3a3a3a}.fr-table>table tbody tr:last-child td,.fr-table>table tbody tr:last-child th{border-bottom:1px solid #929292}.fr-table>table td:first-child,.fr-table>table th:first-child{border-left:1px solid #929292}.fr-table>table td:last-child,.fr-table>table th:last-child{border-right:1px solid #929292}.fr-table--bordered>table td,.fr-table--bordered>table th{border-bottom:1px solid #929292}.fr-nav__btn,.fr-nav__link{background-color:transparent}.fr-nav__btn:hover,.fr-nav__link:hover{background-color:rgba(0,0,0,.05)}.fr-nav__btn:active,.fr-nav__link:active{background-color:rgba(0,0,0,.1)}.fr-input:-ms-input-placeholder{color:#666}}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-enlarge-button [href],.fr-enlarge-link [href]{text-decoration:none}.fr-raw-link [href]:after,.fr-raw-link[href]:after{content:none}[target=_blank]:after{background-color:transparent;background-image:url(../icons/system/external-link-line.svg);background-repeat:no-repeat;background-size:100%;content:"";height:1rem;vertical-align:sub;width:1rem}.fr-responsive-vid:before{content:"";display:block;padding-bottom:56.25%}ul{list-style-type:disc}ol{list-style-type:decimal}ol,ul{margin-bottom:.5rem;margin-top:.5rem;padding-left:1rem}h1,h2,h3,h4,h5,h6{color:#161616;margin:0 0 1.5rem}p{margin:0 0 1rem}[class*=" fr-fi-"]:before,[class*=" fr-icon-"]:before,[class^=fr-fi-]:before,[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-icon--xs:before{height:.75rem;width:.75rem}.fr-icon--sm:before{height:1rem;width:1rem}.fr-icon--md:before{height:1.5rem;width:1.5rem}.fr-icon--lg:before{height:2rem;width:2rem}body{background-color:#fff;color:#3a3a3a}a:not([href]),audio:not([href]),button:disabled,input:disabled,input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label,select:disabled,textarea:disabled,video:not([href]){color:#929292}.fr-artwork-decorative{fill:#ececfe}.fr-artwork-minor{fill:#e1000f}.fr-artwork-major{fill:#000091}.fr-artwork-background{fill:#f6f6f6}.fr-artwork-motif{fill:#e5e5e5}.fr-artwork--green-tilleul-verveine .fr-artwork-minor{fill:#b7a73f}.fr-artwork--green-bourgeon .fr-artwork-minor{fill:#68a532}.fr-artwork--green-emeraude .fr-artwork-minor{fill:#00a95f}.fr-artwork--green-menthe .fr-artwork-minor{fill:#009081}.fr-artwork--green-archipel .fr-artwork-minor{fill:#009099}.fr-artwork--blue-ecume .fr-artwork-minor{fill:#465f9d}.fr-artwork--blue-cumulus .fr-artwork-minor{fill:#417dc4}.fr-artwork--purple-glycine .fr-artwork-minor{fill:#a558a0}.fr-artwork--pink-macaron .fr-artwork-minor{fill:#e18b76}.fr-artwork--pink-tuile .fr-artwork-minor{fill:#ce614a}.fr-artwork--yellow-tournesol .fr-artwork-minor{fill:#c8aa39}.fr-artwork--yellow-moutarde .fr-artwork-minor{fill:#c3992a}.fr-artwork--orange-terre-battue .fr-artwork-minor{fill:#e4794a}.fr-artwork--brown-cafe-creme .fr-artwork-minor{fill:#d1b781}.fr-artwork--brown-caramel .fr-artwork-minor{fill:#c08c65}.fr-artwork--brown-opera .fr-artwork-minor{fill:#bd987a}.fr-artwork--beige-gris-galet .fr-artwork-minor{fill:#aea397}[disabled] .fr-artwork *{fill:#929292}.fr-display-lg,.fr-display-md,.fr-display-sm,.fr-display-xl,.fr-display-xs,.fr-h1,.fr-h2,.fr-h3,.fr-h4,.fr-h5,.fr-h6{color:#161616}hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-hr-or:after,.fr-hr-or:before{background-color:#ddd}.fr-hr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-range__max,.fr-range__min,.fr-range__output{min-width:1.5rem}.fr-range input[type=range]{padding:0}.fr-range[data-fr-js-range]{justify-content:flex-start}.fr-range[data-fr-js-range]:after{background-color:#000091;content:none}.fr-range[data-fr-js-range] .fr-range__max{margin-left:auto}.fr-range[data-fr-js-range] input[type=range]{margin-top:-.25rem}.fr-range[data-fr-js-range] input[type=range]::-ms-track{background:transparent;border-color:transparent;border-width:.625rem 0;color:transparent;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-fill-lower{border-radius:.375rem;height:.75rem}.fr-range[data-fr-js-range] input[type=range]::-ms-thumb{background-color:#fff;border:1px solid #000091;border-radius:50%;box-shadow:0 0 0 1px rgba(0,0,18,.16);height:1.5rem;width:1.5rem;z-index:500}.fr-range[data-fr-js-range] input[type=range]:not(:only-of-type){pointer-events:auto}.fr-range[data-fr-js-range].fr-range--double{background-position-y:1.625rem;background-repeat:no-repeat}.fr-range[data-fr-js-range].fr-range--double .fr-range__output{min-width:3rem}.fr-range[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1.5rem)}.fr-range[data-fr-js-range].fr-range--double input[type=range]::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1.5rem;z-index:2}.fr-range[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1.5rem}.fr-range--sm[data-fr-js-range] .fr-range__max,.fr-range--sm[data-fr-js-range] .fr-range__min,.fr-range--sm[data-fr-js-range] .fr-range__output{min-width:1rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-track{border-width:.5rem 0;height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-fill-lower{height:.5rem}.fr-range--sm[data-fr-js-range] input[type=range]::-ms-thumb{height:1rem;width:1rem}.fr-range--sm[data-fr-js-range].fr-range--double{background-position-y:1.5rem}.fr-range--sm[data-fr-js-range].fr-range--double .fr-range__output{min-width:2rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]{width:calc(100% - 1rem)}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:first-of-type{margin-right:1rem}.fr-range--sm[data-fr-js-range].fr-range--double input[type=range]:nth-of-type(2){left:1rem}.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:first-of-type::-ms-fill-lower,.fr-range-group--disabled .fr-range--double[data-fr-js-range] input[type=range]:nth-of-type(2)::-ms-fill-lower{background-color:transparent}.fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #000091}.fr-range[data-fr-js-range] input[type=range]:disabled::-ms-thumb{border:1px solid #e5e5e5}.fr-range__output{color:#000091}.fr-range__max,.fr-range__min{color:#666}.fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#000091 0,#000091 1px,transparent 0)}.fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#e3e3fd 0,#e3e3fd 2px,transparent 0);box-shadow:inset 10px 0 0 0 #000091,inset -10px 0 0 0 #000091}.fr-range--step.fr-range--sm[data-fr-js-range]:after{box-shadow:inset 6px 0 0 0 #000091,inset -6px 0 0 0 #000091}.fr-range-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-range-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-range-group--disabled .fr-range[data-fr-js-range]:before{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-range-group--disabled .fr-range[data-fr-js-range]:after{background-color:#e5e5e5}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:before{background-image:radial-gradient(circle at 2px 50%,#e5e5e5 0,#e5e5e5 1px,transparent 0)}.fr-range-group--disabled .fr-range--step[data-fr-js-range]:after{background-image:radial-gradient(circle at 2px 50%,#fff 0,#fff 2px,transparent 0);box-shadow:inset 10px 0 0 0 #e5e5e5,inset -10px 0 0 0 #e5e5e5}.fr-range-group--disabled .fr-range__max,.fr-range-group--disabled .fr-range__min,.fr-range-group--disabled .fr-range__output{color:#929292}.fr-accordions-group ol,.fr-accordions-group ul{list-style-type:none}.fr-accordions-group ol,.fr-accordions-group ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-accordion__btn:after,.fr-accordion__btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-accordion__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-accordion:before{box-shadow:inset 0 1px 0 0 #ddd,0 1px 0 0 #ddd}.fr-accordion__btn{color:#000091}.fr-accordion__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-badge:after,.fr-badge:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-badge--sm:before{height:.75rem;width:.75rem}.fr-badge--sm.fr-badge--info:after,.fr-badge--sm.fr-badge--info:before,.fr-badge.fr-badge--info:after,.fr-badge.fr-badge--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-badge--sm.fr-badge--success:after,.fr-badge--sm.fr-badge--success:before,.fr-badge.fr-badge--success:after,.fr-badge.fr-badge--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-badge--sm.fr-badge--error:after,.fr-badge--sm.fr-badge--error:before,.fr-badge.fr-badge--error:after,.fr-badge.fr-badge--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-badge--sm.fr-badge--warning:after,.fr-badge--sm.fr-badge--warning:before,.fr-badge.fr-badge--warning:after,.fr-badge.fr-badge--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-badge--sm.fr-badge--new:after,.fr-badge--sm.fr-badge--new:before,.fr-badge.fr-badge--new:after,.fr-badge.fr-badge--new:before{background-image:url(../icons/weather/flashlight-fill.svg)}ol.fr-badges-group,ul.fr-badges-group{list-style-type:none}ol.fr-badges-group,ul.fr-badges-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-badge{background-color:#eee;color:#3a3a3a}.fr-badge--info{background-color:#e8edff;color:#0063cb}.fr-badge--error{background-color:#ffe9e9;color:#ce0500}.fr-badge--success{background-color:#b8fec9;color:#18753c}.fr-badge--warning{background-color:#ffe9e6;color:#b34000}.fr-badge--new{background-color:#feebd0;color:#695240}.fr-badge--green-tilleul-verveine{background-color:#fceeac;color:#66673d}.fr-badge--green-bourgeon{background-color:#c9fcac;color:#447049}.fr-badge--green-emeraude{background-color:#c3fad5;color:#297254}.fr-badge--green-menthe{background-color:#bafaee;color:#37635f}.fr-badge--green-archipel{background-color:#c7f6fc;color:#006a6f}.fr-badge--blue-ecume{background-color:#e9edfe;color:#2f4077}.fr-badge--blue-cumulus{background-color:#e6eefe;color:#3558a2}.fr-badge--purple-glycine{background-color:#fee7fc;color:#6e445a}.fr-badge--pink-macaron{background-color:#fee9e6;color:#8d533e}.fr-badge--pink-tuile{background-color:#fee9e7;color:#a94645}.fr-badge--yellow-tournesol{background-color:#feecc2;color:#716043}.fr-badge--yellow-moutarde{background-color:#feebd0;color:#695240}.fr-badge--orange-terre-battue{background-color:#fee9e5;color:#755348}.fr-badge--brown-cafe-creme{background-color:#f7ecdb;color:#685c48}.fr-badge--brown-caramel{background-color:#f7ebe5;color:#845d48}.fr-badge--brown-opera{background-color:#f7ece4;color:#745b47}.fr-badge--beige-gris-galet{background-color:#f3ede5;color:#6a6156}.fr-logo{color:#000}.fr-btn:after,.fr-btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn[href]{text-decoration:none}.fr-btn.fr-btn--secondary:disabled:hover,.fr-btn.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn.fr-btn--tertiary:disabled:hover{background-color:transparent}.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--sm:after,.fr-btn--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--sm[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--lg:after,.fr-btn--lg:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-fi-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class*=" fr-icon-"]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-fi-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):after,.fr-btn--lg[class^=fr-icon-]:not([class^=fr-btn--icon-]):not([class*=" fr-btn--icon-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn--close:after,.fr-btn--close:before{background-image:url(../icons/system/close-line.svg)}.fr-btn--close:after,.fr-btn--close:before,.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--tooltip:after,.fr-btn--tooltip:before{background-image:url(../icons/system/question-line.svg)}.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-btn--display:after,.fr-btn--display:before,.fr-btn--fullscreen:after,.fr-btn--fullscreen:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--display:after,.fr-btn--display:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-btn--account:after,.fr-btn--account:before,.fr-btn--briefcase:after,.fr-btn--briefcase:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--account:after,.fr-btn--account:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-btn--team:after,.fr-btn--team:before{background-image:url(../icons/user/team-line.svg)}.fr-btn--sort:after,.fr-btn--sort:before,.fr-btn--team:after,.fr-btn--team:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btn--sort:after,.fr-btn--sort:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-btn--sort[aria-sort=ascending]:after,.fr-btn--sort[aria-sort=ascending]:before,.fr-btn--sort[aria-sort=descending]:after,.fr-btn--sort[aria-sort=descending]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}ol.fr-btns-group,ul.fr-btns-group{list-style-type:none}ol.fr-btns-group,ul.fr-btns-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:after,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-btn{background-color:#000091;color:#f5f5fe}.fr-btn:hover{background-color:#1212ff}.fr-btn:active{background-color:#2323ff}.fr-btn:disabled,a.fr-btn:not([href]){background-color:#e5e5e5;color:#929292}.fr-btn--secondary{background-color:transparent;box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-btn--secondary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:active{background-color:rgba(0,0,0,.1)}.fr-btn--secondary:disabled,a.fr-btn--secondary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--secondary:disabled:hover,a.fr-btn--secondary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--secondary:disabled:active,a.fr-btn--secondary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--account,.fr-btn--sort,.fr-btn--tertiary{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-btn--account:hover,.fr-btn--sort:hover,.fr-btn--tertiary:hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:active,.fr-btn--sort:active,.fr-btn--tertiary:active{background-color:rgba(0,0,0,.1)}.fr-btn--account:disabled,.fr-btn--sort:disabled,.fr-btn--tertiary:disabled,a.fr-btn--account:not([href]),a.fr-btn--sort:not([href]),a.fr-btn--tertiary:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-btn--account:disabled:hover,.fr-btn--sort:disabled:hover,.fr-btn--tertiary:disabled:hover,a.fr-btn--account:not([href]):hover,a.fr-btn--sort:not([href]):hover,a.fr-btn--tertiary:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--account:disabled:active,.fr-btn--sort:disabled:active,.fr-btn--tertiary:disabled:active,a.fr-btn--account:not([href]):active,a.fr-btn--sort:not([href]):active,a.fr-btn--tertiary:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase,.fr-btn--close,.fr-btn--display,.fr-btn--fullscreen,.fr-btn--team,.fr-btn--tertiary-no-outline,.fr-btn--tooltip{background-color:transparent;color:#000091}.fr-btn--briefcase:hover,.fr-btn--close:hover,.fr-btn--display:hover,.fr-btn--fullscreen:hover,.fr-btn--team:hover,.fr-btn--tertiary-no-outline:hover,.fr-btn--tooltip:hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:active,.fr-btn--close:active,.fr-btn--display:active,.fr-btn--fullscreen:active,.fr-btn--team:active,.fr-btn--tertiary-no-outline:active,.fr-btn--tooltip:active{background-color:rgba(0,0,0,.1)}.fr-btn--briefcase:disabled,.fr-btn--close:disabled,.fr-btn--display:disabled,.fr-btn--fullscreen:disabled,.fr-btn--team:disabled,.fr-btn--tertiary-no-outline:disabled,.fr-btn--tooltip:disabled,a.fr-btn--briefcase:not([href]),a.fr-btn--close:not([href]),a.fr-btn--display:not([href]),a.fr-btn--fullscreen:not([href]),a.fr-btn--team:not([href]),a.fr-btn--tertiary-no-outline:not([href]),a.fr-btn--tooltip:not([href]){background-color:transparent;color:#929292}.fr-btn--briefcase:disabled:hover,.fr-btn--close:disabled:hover,.fr-btn--display:disabled:hover,.fr-btn--fullscreen:disabled:hover,.fr-btn--team:disabled:hover,.fr-btn--tertiary-no-outline:disabled:hover,.fr-btn--tooltip:disabled:hover,a.fr-btn--briefcase:not([href]):hover,a.fr-btn--close:not([href]):hover,a.fr-btn--display:not([href]):hover,a.fr-btn--fullscreen:not([href]):hover,a.fr-btn--team:not([href]):hover,a.fr-btn--tertiary-no-outline:not([href]):hover,a.fr-btn--tooltip:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-btn--briefcase:disabled:active,.fr-btn--close:disabled:active,.fr-btn--display:disabled:active,.fr-btn--fullscreen:disabled:active,.fr-btn--team:disabled:active,.fr-btn--tertiary-no-outline:disabled:active,.fr-btn--tooltip:disabled:active,a.fr-btn--briefcase:not([href]):active,a.fr-btn--close:not([href]):active,a.fr-btn--display:not([href]):active,a.fr-btn--fullscreen:not([href]):active,a.fr-btn--team:not([href]):active,a.fr-btn--tertiary-no-outline:not([href]):active,a.fr-btn--tooltip:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-connect{background-color:#000091;color:#f5f5fe}.fr-connect:disabled,a.fr-connect:not([href]){background-color:#e5e5e5;color:#929292}.fr-connect-group .fr-connect+p a{color:#000091}.fr-connect-group p{color:#666}.fr-quote:after,.fr-quote:before{background-color:transparent;background-image:url(../icons/editor/fr--quote-line.svg);background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}ol.fr-quote__source,ul.fr-quote__source{list-style-type:none}ol.fr-quote__source,ul.fr-quote__source{margin-bottom:0;margin-top:0;padding-left:0}.fr-quote blockquote{max-width:100%}.fr-quote:before{color:#6a6af4}.fr-quote--green-tilleul-verveine:before{color:#b7a73f}.fr-quote--green-bourgeon:before{color:#68a532}.fr-quote--green-emeraude:before{color:#00a95f}.fr-quote--green-menthe:before{color:#009081}.fr-quote--green-archipel:before{color:#009099}.fr-quote--blue-ecume:before{color:#465f9d}.fr-quote--blue-cumulus:before{color:#417dc4}.fr-quote--purple-glycine:before{color:#a558a0}.fr-quote--pink-macaron:before{color:#e18b76}.fr-quote--pink-tuile:before{color:#ce614a}.fr-quote--yellow-tournesol:before{color:#c8aa39}.fr-quote--yellow-moutarde:before{color:#c3992a}.fr-quote--orange-terre-battue:before{color:#e4794a}.fr-quote--brown-cafe-creme:before{color:#d1b781}.fr-quote--brown-caramel:before{color:#c08c65}.fr-quote--brown-opera:before{color:#bd987a}.fr-quote--beige-gris-galet:before{color:#aea397}.fr-quote{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-quote__source{color:#666}.fr-breadcrumb ol,.fr-breadcrumb ul{list-style-type:none}.fr-breadcrumb ol,.fr-breadcrumb ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-breadcrumb__link:not([aria-current]):after,.fr-breadcrumb__link[aria-current=false]:after{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;content:"";display:inline-block;height:1rem;margin-left:.5rem;margin-right:-.25rem;pointer-events:none;vertical-align:-4px;width:1rem}.fr-breadcrumb{color:#666}.fr-breadcrumb__link[aria-current]:not([aria-current=false]){color:#3a3a3a}.fr-fieldset__legend{color:#161616;max-width:100%}.fr-message--error:after,.fr-message--error:before{background-color:transparent;background-image:url(../icons/system/fr--error-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--valid:after,.fr-message--valid:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-message--info:after,.fr-message--info:before,.fr-message--valid:after,.fr-message--valid:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-message--info:after,.fr-message--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-message--warning:after,.fr-message--warning:before{background-color:transparent;background-image:url(../icons/system/fr--warning-fill.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-input-group--valid label,.fr-range-group--valid label,.fr-select-group--valid label,.fr-upload-group--valid label{color:#18753c}.fr-input-group--error label,.fr-range-group--error label,.fr-select-group--error label,.fr-upload-group--error label{color:#ce0500}.fr-input-group--info label,.fr-range-group--info label,.fr-select-group--info label,.fr-upload-group--info label{color:#0063cb}.fr-input-group--disabled .fr-hint-text,.fr-input-group--disabled label,.fr-range-group--disabled .fr-hint-text,.fr-range-group--disabled label,.fr-select-group--disabled .fr-hint-text,.fr-select-group--disabled label,.fr-upload-group--disabled .fr-hint-text,.fr-upload-group--disabled label{color:#929292}.fr-label{color:#161616}.fr-label--error{color:#ce0500}.fr-label--success{color:#18753c}.fr-label--info{color:#0063cb}.fr-label--disabled,.fr-label--disabled .fr-hint-text{color:#929292}.fr-hint-text,.fr-message{color:#666}.fr-message--error{color:#ce0500}.fr-message--valid{color:#18753c}.fr-message--info{color:#0063cb}.fr-message--warning{color:#b34000}.fr-fieldset input:disabled+label,.fr-fieldset input:disabled+label .fr-hint-text,.fr-fieldset input:disabled+label+.fr-hint-text,.fr-fieldset:disabled .fr-fieldset__legend,.fr-fieldset:disabled .fr-hint-text,.fr-fieldset:disabled .fr-label{color:#929292}.fr-fieldset--error,.fr-fieldset--error .fr-fieldset__legend{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-fieldset--error .fr-fieldset__legend,.fr-fieldset--error .fr-label{color:#ce0500}.fr-fieldset--valid,.fr-fieldset--valid .fr-fieldset__legend{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-fieldset--valid .fr-fieldset__legend,.fr-fieldset--valid .fr-label{color:#18753c}.fr-fieldset--info,.fr-fieldset--info .fr-fieldset__legend{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-fieldset--info .fr-fieldset__legend,.fr-fieldset--info .fr-label{color:#0063cb}.fr-error-text:after,.fr-error-text:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-error-text:after,.fr-error-text:before,.fr-valid-text:after,.fr-valid-text:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-valid-text:after,.fr-valid-text:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-error-text{color:#ce0500}.fr-valid-text{color:#18753c}.fr-info-text{color:#0063cb}.fr-fieldset--valid .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #18753c}.fr-fieldset--error .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #ce0500}.fr-fieldset--info .fr-fieldset__content:before{box-shadow:inset 2px 0 0 0 #0063cb}.fr-stepper__title{color:#161616;margin-bottom:.75rem}.fr-stepper__steps{background-image:repeating-linear-gradient(to right,#000091 0,#000091 var(--active-inner),transparent var(--active-inner),transparent var(--active-outer)),repeating-linear-gradient(to right,#eee 0,#eee var(--default-inner),transparent var(--default-inner),transparent var(--default-outer));display:none}.fr-stepper__details,.fr-stepper__state{color:#666}.fr-tooltip{color:#3a3a3a;margin-top:.5rem;position:relative}.fr-tooltip.fr-placement{background-image:linear-gradient(90deg,#fff,#fff);box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:1000}.fr-link{background-image:none;color:#000091;text-decoration:underline}.fr-link--sm:before,.fr-link:before{height:1rem;width:1rem}.fr-link--lg:before,.fr-link--sm:before,.fr-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-link--lg:before{height:1.5rem;width:1.5rem}ol.fr-links-group--inline,ul.fr-links-group--inline{list-style-type:none}ol.fr-links-group--inline,ul.fr-links-group--inline{margin-bottom:0;margin-top:0;padding-left:0}.fr-link__detail{color:#666}.fr-links-group li::marker{color:#000091}.fr-links-group--bordered{box-shadow:inset 0 0 0 1px #ddd}.fr-link--close{background-color:transparent;color:#000091}.fr-link--close:hover{background-color:rgba(0,0,0,.05)}.fr-link--close:active{background-color:rgba(0,0,0,.1)}.fr-link--close:disabled,a.fr-link--close:not([href]){background-color:transparent;color:#929292}.fr-link--close:disabled:hover,a.fr-link--close:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-link--close:disabled:active,a.fr-link--close:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-sidemenu{box-shadow:inset 0 -1px 0 0 #ddd,inset 0 1px 0 0 #ddd;height:auto}.fr-sidemenu ol,.fr-sidemenu ul{list-style-type:none}.fr-sidemenu ol,.fr-sidemenu ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-sidemenu [href]{text-decoration:none}.fr-sidemenu__btn[aria-expanded]:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-sidemenu__title{box-shadow:inset 0 -1px 0 0 #ddd;color:#161616}.fr-sidemenu__item .fr-sidemenu__btn,.fr-sidemenu__item .fr-sidemenu__link{color:#161616}.fr-sidemenu__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-sidemenu__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-sidemenu__btn,.fr-sidemenu__btn[aria-current]:not([aria-current=false]),.fr-sidemenu__link,.fr-sidemenu__link[aria-current]:not([aria-current=false]){color:#000091}.fr-sidemenu__btn[aria-current]:not([aria-current=false]):before,.fr-sidemenu__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-sidemenu__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-highlight{background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-highlight--green-tilleul-verveine{background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-highlight--green-bourgeon{background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-highlight--green-emeraude{background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-highlight--green-menthe{background-image:linear-gradient(0deg,#009081,#009081)}.fr-highlight--green-archipel{background-image:linear-gradient(0deg,#009099,#009099)}.fr-highlight--blue-ecume{background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-highlight--blue-cumulus{background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-highlight--purple-glycine{background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-highlight--pink-macaron{background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-highlight--pink-tuile{background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-highlight--yellow-tournesol{background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-highlight--yellow-moutarde{background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-highlight--orange-terre-battue{background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-highlight--brown-cafe-creme{background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-highlight--brown-caramel{background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-highlight--brown-opera{background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-highlight--beige-gris-galet{background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-tabs ol,.fr-tabs ul{list-style-type:none}.fr-tabs ol,.fr-tabs ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-tabs:before{bottom:0;box-shadow:inset 0 1px 0 0 #ddd,inset 1px 0 0 0 #ddd,inset -1px 0 0 0 #ddd;left:0;position:absolute;right:0;top:3rem}.fr-tabs .fr-tabs__list{padding:.25rem .75rem}.fr-tabs__tab:after,.fr-tabs__tab:before{height:1rem;width:1rem}.fr-tabs__panel{left:0;padding:0 .1px}.fr-tabs__panel [href]{text-decoration:underline}.fr-tabs__panel>*{margin-left:1rem;margin-right:1rem}.fr-tabs__panel>:first-child{margin-top:.75rem}.fr-tabs__panel>:last-child{margin-bottom:1rem}.fr-tabs{box-shadow:inset 0 -1px 0 0 #ddd}.fr-tabs__tab{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);box-shadow:0 2px 0 0 #fff}.fr-tabs__tab:not([aria-selected=true]){background-color:#e3e3fd;color:#161616}.fr-tabs__tab[aria-selected=true]:not(:disabled){background-color:#fff;background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd);color:#000091}.fr-tabs__tab:disabled{background-color:#e5e5e5;color:#929292}.fr-pagination [href]{text-decoration:none}.fr-pagination ol,.fr-pagination ul{list-style-type:none}.fr-pagination ol,.fr-pagination ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-pagination .fr-pagination__link--first:after,.fr-pagination .fr-pagination__link--first:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-left-s-first-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--prev:after,.fr-pagination .fr-pagination__link--prev:before{background-color:transparent;background-image:url(../icons/system/arrow-left-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--next:after,.fr-pagination .fr-pagination__link--next:before{background-color:transparent;background-image:url(../icons/system/arrow-right-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination .fr-pagination__link--last:after,.fr-pagination .fr-pagination__link--last:before{background-color:transparent;background-image:url(../icons/system/fr--arrow-right-s-last-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-pagination{color:#161616}.fr-pagination__link[aria-current]:not([aria-current=false]){background-color:#000091;color:#f5f5fe}.fr-pagination__link[aria-current]:not([aria-current=false]):hover{background-color:#1212ff}.fr-pagination__link[aria-current]:not([aria-current=false]):active{background-color:#2323ff}.fr-pagination__link:not([aria-current]):disabled,.fr-pagination__link[aria-current=false]:disabled,a.fr-pagination__link:not([aria-current]):not([href]),a.fr-pagination__link[aria-current=false]:not([href]){color:#929292}.fr-summary ol{list-style-type:decimal}.fr-summary__link:before{content:none}.fr-summary{background-color:#eee}.fr-summary li>a,.fr-summary__title{color:#161616}.fr-table__header .fr-segmented{flex:1}.fr-table__header .fr-table__detail{flex:2}.fr-table__content table,.fr-table__content table thead tr th,.fr-table__content table thead tr th:last-child{background-image:none}.fr-table__content table thead tr th[role=columnheader]{background-position:100% 0;background-repeat:no-repeat;background-size:1px 100%}.fr-table__content table tbody tr{background-image:none}.fr-table__content table tbody tr[aria-selected=true]:after{content:none}.fr-table__content table tbody tr[aria-selected=true] td,.fr-table__content table tbody tr[aria-selected=true] th{border-bottom:2px solid #000091;border-top:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:first-child,.fr-table__content table tbody tr[aria-selected=true] th:first-child{border-left:2px solid #000091}.fr-table__content table tbody tr[aria-selected=true] td:last-child,.fr-table__content table tbody tr[aria-selected=true] th:last-child{border-right:2px solid #000091}.fr-table[data-fr-js-table=true] .fr-table__wrapper:after{content:none}.fr-table[data-fr-js-table=true] caption,.fr-table[data-fr-js-table=true].fr-table--caption-bottom caption{margin-bottom:1rem;position:relative}.fr-table--bordered table td:last-child,.fr-table--bordered table th:last-child{border-right:none}.fr-table__wrapper:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table caption{color:#161616}.fr-table__content table thead th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#929292,#929292)}.fr-table__content table thead th[role=columnheader]{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__content table tbody tr:after{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091)}.fr-table__content table tbody td{background-color:#fff;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table__content table tbody th{background-color:#f6f6f6;background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-table__detail{color:#666}.fr-table>table caption{color:#161616}.fr-table>table tbody:after,.fr-table>table thead:after{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292)}.fr-table>table thead{background-color:#f6f6f6;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);background-image:none;color:#161616}.fr-table>table tbody{background-color:#fff}.fr-table>table tbody tr:nth-child(2n){background-color:#f6f6f6}.fr-table--green-tilleul-verveine>table:after{background-image:linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f),linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-table--green-tilleul-verveine>table thead{background-color:#fceeac;background-image:linear-gradient(0deg,#66673d,#66673d);background-image:none}.fr-table--green-tilleul-verveine>table tbody{background-color:#fef7da}.fr-table--green-tilleul-verveine>table tbody tr:nth-child(2n){background-color:#fceeac}.fr-table--green-tilleul-verveine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#b7a73f,#b7a73f);background-image:none}.fr-table--green-bourgeon>table:after{background-image:linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532),linear-gradient(0deg,#68a532,#68a532)}.fr-table--green-bourgeon>table thead{background-color:#c9fcac;background-image:linear-gradient(0deg,#447049,#447049);background-image:none}.fr-table--green-bourgeon>table tbody{background-color:#e6feda}.fr-table--green-bourgeon>table tbody tr:nth-child(2n){background-color:#c9fcac}.fr-table--green-bourgeon.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#68a532,#68a532);background-image:none}.fr-table--green-emeraude>table:after{background-image:linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f),linear-gradient(0deg,#00a95f,#00a95f)}.fr-table--green-emeraude>table thead{background-color:#c3fad5;background-image:linear-gradient(0deg,#297254,#297254);background-image:none}.fr-table--green-emeraude>table tbody{background-color:#e3fdeb}.fr-table--green-emeraude>table tbody tr:nth-child(2n){background-color:#c3fad5}.fr-table--green-emeraude.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#00a95f,#00a95f);background-image:none}.fr-table--green-menthe>table:after{background-image:linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081),linear-gradient(0deg,#009081,#009081)}.fr-table--green-menthe>table thead{background-color:#bafaee;background-image:linear-gradient(0deg,#37635f,#37635f);background-image:none}.fr-table--green-menthe>table tbody{background-color:#dffdf7}.fr-table--green-menthe>table tbody tr:nth-child(2n){background-color:#bafaee}.fr-table--green-menthe.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009081,#009081);background-image:none}.fr-table--green-archipel>table:after{background-image:linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099),linear-gradient(0deg,#009099,#009099)}.fr-table--green-archipel>table thead{background-color:#c7f6fc;background-image:linear-gradient(0deg,#006a6f,#006a6f);background-image:none}.fr-table--green-archipel>table tbody{background-color:#e5fbfd}.fr-table--green-archipel>table tbody tr:nth-child(2n){background-color:#c7f6fc}.fr-table--green-archipel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#009099,#009099);background-image:none}.fr-table--blue-ecume>table:after{background-image:linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d),linear-gradient(0deg,#465f9d,#465f9d)}.fr-table--blue-ecume>table thead{background-color:#e9edfe;background-image:linear-gradient(0deg,#2f4077,#2f4077);background-image:none}.fr-table--blue-ecume>table tbody{background-color:#f4f6fe}.fr-table--blue-ecume>table tbody tr:nth-child(2n){background-color:#e9edfe}.fr-table--blue-ecume.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#465f9d,#465f9d);background-image:none}.fr-table--blue-cumulus>table:after{background-image:linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4),linear-gradient(0deg,#417dc4,#417dc4)}.fr-table--blue-cumulus>table thead{background-color:#e6eefe;background-image:linear-gradient(0deg,#3558a2,#3558a2);background-image:none}.fr-table--blue-cumulus>table tbody{background-color:#f3f6fe}.fr-table--blue-cumulus>table tbody tr:nth-child(2n){background-color:#e6eefe}.fr-table--blue-cumulus.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#417dc4,#417dc4);background-image:none}.fr-table--purple-glycine>table:after{background-image:linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0),linear-gradient(0deg,#a558a0,#a558a0)}.fr-table--purple-glycine>table thead{background-color:#fee7fc;background-image:linear-gradient(0deg,#6e445a,#6e445a);background-image:none}.fr-table--purple-glycine>table tbody{background-color:#fef3fd}.fr-table--purple-glycine>table tbody tr:nth-child(2n){background-color:#fee7fc}.fr-table--purple-glycine.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#a558a0,#a558a0);background-image:none}.fr-table--pink-macaron>table:after{background-image:linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76),linear-gradient(0deg,#e18b76,#e18b76)}.fr-table--pink-macaron>table thead{background-color:#fee9e6;background-image:linear-gradient(0deg,#8d533e,#8d533e);background-image:none}.fr-table--pink-macaron>table tbody{background-color:#fef4f2}.fr-table--pink-macaron>table tbody tr:nth-child(2n){background-color:#fee9e6}.fr-table--pink-macaron.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e18b76,#e18b76);background-image:none}.fr-table--pink-tuile>table:after{background-image:linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a),linear-gradient(0deg,#ce614a,#ce614a)}.fr-table--pink-tuile>table thead{background-color:#fee9e7;background-image:linear-gradient(0deg,#a94645,#a94645);background-image:none}.fr-table--pink-tuile>table tbody{background-color:#fef4f3}.fr-table--pink-tuile>table tbody tr:nth-child(2n){background-color:#fee9e7}.fr-table--pink-tuile.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ce614a,#ce614a);background-image:none}.fr-table--yellow-tournesol>table:after{background-image:linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39),linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-table--yellow-tournesol>table thead{background-color:#feecc2;background-image:linear-gradient(0deg,#716043,#716043);background-image:none}.fr-table--yellow-tournesol>table tbody{background-color:#fef6e3}.fr-table--yellow-tournesol>table tbody tr:nth-child(2n){background-color:#feecc2}.fr-table--yellow-tournesol.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c8aa39,#c8aa39);background-image:none}.fr-table--yellow-moutarde>table:after{background-image:linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a),linear-gradient(0deg,#c3992a,#c3992a)}.fr-table--yellow-moutarde>table thead{background-color:#feebd0;background-image:linear-gradient(0deg,#695240,#695240);background-image:none}.fr-table--yellow-moutarde>table tbody{background-color:#fef5e8}.fr-table--yellow-moutarde>table tbody tr:nth-child(2n){background-color:#feebd0}.fr-table--yellow-moutarde.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c3992a,#c3992a);background-image:none}.fr-table--orange-terre-battue>table:after{background-image:linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a),linear-gradient(0deg,#e4794a,#e4794a)}.fr-table--orange-terre-battue>table thead{background-color:#fee9e5;background-image:linear-gradient(0deg,#755348,#755348);background-image:none}.fr-table--orange-terre-battue>table tbody{background-color:#fef4f2}.fr-table--orange-terre-battue>table tbody tr:nth-child(2n){background-color:#fee9e5}.fr-table--orange-terre-battue.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#e4794a,#e4794a);background-image:none}.fr-table--brown-cafe-creme>table:after{background-image:linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781),linear-gradient(0deg,#d1b781,#d1b781)}.fr-table--brown-cafe-creme>table thead{background-color:#f7ecdb;background-image:linear-gradient(0deg,#685c48,#685c48);background-image:none}.fr-table--brown-cafe-creme>table tbody{background-color:#fbf6ed}.fr-table--brown-cafe-creme>table tbody tr:nth-child(2n){background-color:#f7ecdb}.fr-table--brown-cafe-creme.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#d1b781,#d1b781);background-image:none}.fr-table--brown-caramel>table:after{background-image:linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65),linear-gradient(0deg,#c08c65,#c08c65)}.fr-table--brown-caramel>table thead{background-color:#f7ebe5;background-image:linear-gradient(0deg,#845d48,#845d48);background-image:none}.fr-table--brown-caramel>table tbody{background-color:#fbf5f2}.fr-table--brown-caramel>table tbody tr:nth-child(2n){background-color:#f7ebe5}.fr-table--brown-caramel.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#c08c65,#c08c65);background-image:none}.fr-table--brown-opera>table:after{background-image:linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a),linear-gradient(0deg,#bd987a,#bd987a)}.fr-table--brown-opera>table thead{background-color:#f7ece4;background-image:linear-gradient(0deg,#745b47,#745b47);background-image:none}.fr-table--brown-opera>table tbody{background-color:#fbf5f2}.fr-table--brown-opera>table tbody tr:nth-child(2n){background-color:#f7ece4}.fr-table--brown-opera.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#bd987a,#bd987a);background-image:none}.fr-table--beige-gris-galet>table:after{background-image:linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397),linear-gradient(0deg,#aea397,#aea397)}.fr-table--beige-gris-galet>table thead{background-color:#f3ede5;background-image:linear-gradient(0deg,#6a6156,#6a6156);background-image:none}.fr-table--beige-gris-galet>table tbody{background-color:#f9f6f2}.fr-table--beige-gris-galet>table tbody tr:nth-child(2n){background-color:#f3ede5}.fr-table--beige-gris-galet.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#aea397,#aea397);background-image:none}.fr-table--bordered>table tbody tr{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-table--bordered>table tbody tr:nth-child(2n){background-color:transparent}.fr-table--bordered>table tbody tr:nth-child(2n):hover{background-color:rgba(0,0,0,.05)}.fr-table--bordered>table tbody tr:nth-child(2n):active{background-color:rgba(0,0,0,.1)}.fr-table:before{content:none}.fr-table--beige-gris-galet>table,.fr-table--beige-gris-galet>table tbody tr,.fr-table--blue-cumulus>table,.fr-table--blue-cumulus>table tbody tr,.fr-table--blue-ecume>table,.fr-table--blue-ecume>table tbody tr,.fr-table--brown-cafe-creme>table,.fr-table--brown-cafe-creme>table tbody tr,.fr-table--brown-caramel>table,.fr-table--brown-caramel>table tbody tr,.fr-table--brown-opera>table,.fr-table--brown-opera>table tbody tr,.fr-table--green-archipel>table,.fr-table--green-archipel>table tbody tr,.fr-table--green-bourgeon>table,.fr-table--green-bourgeon>table tbody tr,.fr-table--green-emeraude>table,.fr-table--green-emeraude>table tbody tr,.fr-table--green-menthe>table,.fr-table--green-menthe>table tbody tr,.fr-table--green-tilleul-verveine>table,.fr-table--green-tilleul-verveine>table tbody tr,.fr-table--orange-terre-battue>table,.fr-table--orange-terre-battue>table tbody tr,.fr-table--pink-macaron>table,.fr-table--pink-macaron>table tbody tr,.fr-table--pink-tuile>table,.fr-table--pink-tuile>table tbody tr,.fr-table--purple-glycine>table,.fr-table--purple-glycine>table tbody tr,.fr-table--yellow-moutarde>table,.fr-table--yellow-moutarde>table tbody tr,.fr-table--yellow-tournesol>table,.fr-table--yellow-tournesol>table tbody tr,.fr-table>table tbody tr,.fr-table>table tbody:after,.fr-table>table thead:after{background-image:none}.fr-tag{background-color:#eee;color:#161616;text-decoration:none}.fr-tag:after,.fr-tag:before{height:1rem;width:1rem}.fr-tag.fr-tag--sm:before,.fr-tag:after,.fr-tag:before{background-color:transparent;background-repeat:no-repeat;background-size:100%}.fr-tag.fr-tag--sm:before{height:.75rem;width:.75rem}button.fr-tag[aria-pressed=true],input[type=button].fr-tag[aria-pressed=true]{background-size:100% 100%,100% 100%}button.fr-tag[aria-pressed=true]:after,input[type=button].fr-tag[aria-pressed=true]:after{background-color:transparent;background-image:url(../icons/system/checkbox-circle-line.svg);background-repeat:no-repeat;background-size:100%;color:#000091;height:1rem;width:1rem}button.fr-tag[aria-pressed=true].fr-tag--sm:after,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}button.fr-tag.fr-tag--dismiss:after,input[type=button].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-color:currentColor;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;margin-left:.625rem;width:1rem}button.fr-tag.fr-tag--dismiss.fr-tag--sm:after,input[type=button].fr-tag.fr-tag--dismiss.fr-tag--sm:after{background-color:transparent;background-color:currentColor;background-repeat:no-repeat;background-size:100%;height:.75rem;margin-left:.5rem;width:.75rem}ol.fr-tags-group,ul.fr-tags-group{list-style-type:none}ol.fr-tags-group,ul.fr-tags-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-tags-group--sm:after,.fr-tags-group--sm:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tags-group--sm a.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm button.fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=button].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=image].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=reset].fr-tag.fr-tag--dismiss:after,.fr-tags-group--sm input[type=submit].fr-tag.fr-tag--dismiss:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tags-group--sm a.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm button.fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=image].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=reset].fr-tag[aria-pressed=true]:after,.fr-tags-group--sm input[type=submit].fr-tag[aria-pressed=true]:after{background-color:transparent;background-color:transparent!important;background-repeat:no-repeat;background-size:100%;height:.75rem;width:.75rem}.fr-tag[aria-pressed=false]{background-color:#e3e3fd;color:#000091}.fr-tag[aria-pressed=false]:hover{background-color:#c1c1fb}.fr-tag[aria-pressed=false]:active{background-color:#adadf9}.fr-tag.fr-tag--dismiss{background-color:#000091;color:#f5f5fe}.fr-tag.fr-tag--dismiss:hover{background-color:#1212ff}.fr-tag.fr-tag--dismiss:active{background-color:#2323ff}a.fr-tag,button.fr-tag,input[type=button].fr-tag,input[type=image].fr-tag,input[type=reset].fr-tag,input[type=submit].fr-tag{background-color:#e3e3fd;color:#000091}a.fr-tag:hover,button.fr-tag:hover,input[type=button].fr-tag:hover,input[type=image].fr-tag:hover,input[type=reset].fr-tag:hover,input[type=submit].fr-tag:hover{background-color:#c1c1fb}a.fr-tag:active,button.fr-tag:active,input[type=button].fr-tag:active,input[type=image].fr-tag:active,input[type=reset].fr-tag:active,input[type=submit].fr-tag:active{background-color:#adadf9}a.fr-tag--green-tilleul-verveine,button.fr-tag--green-tilleul-verveine,input[type=button].fr-tag--green-tilleul-verveine,input[type=image].fr-tag--green-tilleul-verveine,input[type=reset].fr-tag--green-tilleul-verveine,input[type=submit].fr-tag--green-tilleul-verveine{background-color:#fbe769;color:#66673d}a.fr-tag--green-tilleul-verveine:hover,button.fr-tag--green-tilleul-verveine:hover,input[type=button].fr-tag--green-tilleul-verveine:hover,input[type=image].fr-tag--green-tilleul-verveine:hover,input[type=reset].fr-tag--green-tilleul-verveine:hover,input[type=submit].fr-tag--green-tilleul-verveine:hover{background-color:#d7c655}a.fr-tag--green-tilleul-verveine:active,button.fr-tag--green-tilleul-verveine:active,input[type=button].fr-tag--green-tilleul-verveine:active,input[type=image].fr-tag--green-tilleul-verveine:active,input[type=reset].fr-tag--green-tilleul-verveine:active,input[type=submit].fr-tag--green-tilleul-verveine:active{background-color:#c2b24c}a.fr-tag--green-bourgeon,button.fr-tag--green-bourgeon,input[type=button].fr-tag--green-bourgeon,input[type=image].fr-tag--green-bourgeon,input[type=reset].fr-tag--green-bourgeon,input[type=submit].fr-tag--green-bourgeon{background-color:#a9fb68;color:#447049}a.fr-tag--green-bourgeon:hover,button.fr-tag--green-bourgeon:hover,input[type=button].fr-tag--green-bourgeon:hover,input[type=image].fr-tag--green-bourgeon:hover,input[type=reset].fr-tag--green-bourgeon:hover,input[type=submit].fr-tag--green-bourgeon:hover{background-color:#8ed654}a.fr-tag--green-bourgeon:active,button.fr-tag--green-bourgeon:active,input[type=button].fr-tag--green-bourgeon:active,input[type=image].fr-tag--green-bourgeon:active,input[type=reset].fr-tag--green-bourgeon:active,input[type=submit].fr-tag--green-bourgeon:active{background-color:#7fc04b}a.fr-tag--green-emeraude,button.fr-tag--green-emeraude,input[type=button].fr-tag--green-emeraude,input[type=image].fr-tag--green-emeraude,input[type=reset].fr-tag--green-emeraude,input[type=submit].fr-tag--green-emeraude{background-color:#9ef9be;color:#297254}a.fr-tag--green-emeraude:hover,button.fr-tag--green-emeraude:hover,input[type=button].fr-tag--green-emeraude:hover,input[type=image].fr-tag--green-emeraude:hover,input[type=reset].fr-tag--green-emeraude:hover,input[type=submit].fr-tag--green-emeraude:hover{background-color:#69df97}a.fr-tag--green-emeraude:active,button.fr-tag--green-emeraude:active,input[type=button].fr-tag--green-emeraude:active,input[type=image].fr-tag--green-emeraude:active,input[type=reset].fr-tag--green-emeraude:active,input[type=submit].fr-tag--green-emeraude:active{background-color:#5ec988}a.fr-tag--green-menthe,button.fr-tag--green-menthe,input[type=button].fr-tag--green-menthe,input[type=image].fr-tag--green-menthe,input[type=reset].fr-tag--green-menthe,input[type=submit].fr-tag--green-menthe{background-color:#8bf8e7;color:#37635f}a.fr-tag--green-menthe:hover,button.fr-tag--green-menthe:hover,input[type=button].fr-tag--green-menthe:hover,input[type=image].fr-tag--green-menthe:hover,input[type=reset].fr-tag--green-menthe:hover,input[type=submit].fr-tag--green-menthe:hover{background-color:#6ed5c5}a.fr-tag--green-menthe:active,button.fr-tag--green-menthe:active,input[type=button].fr-tag--green-menthe:active,input[type=image].fr-tag--green-menthe:active,input[type=reset].fr-tag--green-menthe:active,input[type=submit].fr-tag--green-menthe:active{background-color:#62bfb1}a.fr-tag--green-archipel,button.fr-tag--green-archipel,input[type=button].fr-tag--green-archipel,input[type=image].fr-tag--green-archipel,input[type=reset].fr-tag--green-archipel,input[type=submit].fr-tag--green-archipel{background-color:#a6f2fa;color:#006a6f}a.fr-tag--green-archipel:hover,button.fr-tag--green-archipel:hover,input[type=button].fr-tag--green-archipel:hover,input[type=image].fr-tag--green-archipel:hover,input[type=reset].fr-tag--green-archipel:hover,input[type=submit].fr-tag--green-archipel:hover{background-color:#62dbe5}a.fr-tag--green-archipel:active,button.fr-tag--green-archipel:active,input[type=button].fr-tag--green-archipel:active,input[type=image].fr-tag--green-archipel:active,input[type=reset].fr-tag--green-archipel:active,input[type=submit].fr-tag--green-archipel:active{background-color:#58c5cf}a.fr-tag--blue-ecume,button.fr-tag--blue-ecume,input[type=button].fr-tag--blue-ecume,input[type=image].fr-tag--blue-ecume,input[type=reset].fr-tag--blue-ecume,input[type=submit].fr-tag--blue-ecume{background-color:#dee5fd;color:#2f4077}a.fr-tag--blue-ecume:hover,button.fr-tag--blue-ecume:hover,input[type=button].fr-tag--blue-ecume:hover,input[type=image].fr-tag--blue-ecume:hover,input[type=reset].fr-tag--blue-ecume:hover,input[type=submit].fr-tag--blue-ecume:hover{background-color:#b4c5fb}a.fr-tag--blue-ecume:active,button.fr-tag--blue-ecume:active,input[type=button].fr-tag--blue-ecume:active,input[type=image].fr-tag--blue-ecume:active,input[type=reset].fr-tag--blue-ecume:active,input[type=submit].fr-tag--blue-ecume:active{background-color:#99b3f9}a.fr-tag--blue-cumulus,button.fr-tag--blue-cumulus,input[type=button].fr-tag--blue-cumulus,input[type=image].fr-tag--blue-cumulus,input[type=reset].fr-tag--blue-cumulus,input[type=submit].fr-tag--blue-cumulus{background-color:#dae6fd;color:#3558a2}a.fr-tag--blue-cumulus:hover,button.fr-tag--blue-cumulus:hover,input[type=button].fr-tag--blue-cumulus:hover,input[type=image].fr-tag--blue-cumulus:hover,input[type=reset].fr-tag--blue-cumulus:hover,input[type=submit].fr-tag--blue-cumulus:hover{background-color:#a9c8fb}a.fr-tag--blue-cumulus:active,button.fr-tag--blue-cumulus:active,input[type=button].fr-tag--blue-cumulus:active,input[type=image].fr-tag--blue-cumulus:active,input[type=reset].fr-tag--blue-cumulus:active,input[type=submit].fr-tag--blue-cumulus:active{background-color:#8ab8f9}a.fr-tag--purple-glycine,button.fr-tag--purple-glycine,input[type=button].fr-tag--purple-glycine,input[type=image].fr-tag--purple-glycine,input[type=reset].fr-tag--purple-glycine,input[type=submit].fr-tag--purple-glycine{background-color:#fddbfa;color:#6e445a}a.fr-tag--purple-glycine:hover,button.fr-tag--purple-glycine:hover,input[type=button].fr-tag--purple-glycine:hover,input[type=image].fr-tag--purple-glycine:hover,input[type=reset].fr-tag--purple-glycine:hover,input[type=submit].fr-tag--purple-glycine:hover{background-color:#fbaff5}a.fr-tag--purple-glycine:active,button.fr-tag--purple-glycine:active,input[type=button].fr-tag--purple-glycine:active,input[type=image].fr-tag--purple-glycine:active,input[type=reset].fr-tag--purple-glycine:active,input[type=submit].fr-tag--purple-glycine:active{background-color:#fa96f2}a.fr-tag--pink-macaron,button.fr-tag--pink-macaron,input[type=button].fr-tag--pink-macaron,input[type=image].fr-tag--pink-macaron,input[type=reset].fr-tag--pink-macaron,input[type=submit].fr-tag--pink-macaron{background-color:#fddfda;color:#8d533e}a.fr-tag--pink-macaron:hover,button.fr-tag--pink-macaron:hover,input[type=button].fr-tag--pink-macaron:hover,input[type=image].fr-tag--pink-macaron:hover,input[type=reset].fr-tag--pink-macaron:hover,input[type=submit].fr-tag--pink-macaron:hover{background-color:#fbb8ab}a.fr-tag--pink-macaron:active,button.fr-tag--pink-macaron:active,input[type=button].fr-tag--pink-macaron:active,input[type=image].fr-tag--pink-macaron:active,input[type=reset].fr-tag--pink-macaron:active,input[type=submit].fr-tag--pink-macaron:active{background-color:#faa18d}a.fr-tag--pink-tuile,button.fr-tag--pink-tuile,input[type=button].fr-tag--pink-tuile,input[type=image].fr-tag--pink-tuile,input[type=reset].fr-tag--pink-tuile,input[type=submit].fr-tag--pink-tuile{background-color:#fddfdb;color:#a94645}a.fr-tag--pink-tuile:hover,button.fr-tag--pink-tuile:hover,input[type=button].fr-tag--pink-tuile:hover,input[type=image].fr-tag--pink-tuile:hover,input[type=reset].fr-tag--pink-tuile:hover,input[type=submit].fr-tag--pink-tuile:hover{background-color:#fbb8ad}a.fr-tag--pink-tuile:active,button.fr-tag--pink-tuile:active,input[type=button].fr-tag--pink-tuile:active,input[type=image].fr-tag--pink-tuile:active,input[type=reset].fr-tag--pink-tuile:active,input[type=submit].fr-tag--pink-tuile:active{background-color:#faa191}a.fr-tag--yellow-tournesol,button.fr-tag--yellow-tournesol,input[type=button].fr-tag--yellow-tournesol,input[type=image].fr-tag--yellow-tournesol,input[type=reset].fr-tag--yellow-tournesol,input[type=submit].fr-tag--yellow-tournesol{background-color:#fde39c;color:#716043}a.fr-tag--yellow-tournesol:hover,button.fr-tag--yellow-tournesol:hover,input[type=button].fr-tag--yellow-tournesol:hover,input[type=image].fr-tag--yellow-tournesol:hover,input[type=reset].fr-tag--yellow-tournesol:hover,input[type=submit].fr-tag--yellow-tournesol:hover{background-color:#e9c53b}a.fr-tag--yellow-tournesol:active,button.fr-tag--yellow-tournesol:active,input[type=button].fr-tag--yellow-tournesol:active,input[type=image].fr-tag--yellow-tournesol:active,input[type=reset].fr-tag--yellow-tournesol:active,input[type=submit].fr-tag--yellow-tournesol:active{background-color:#d3b235}a.fr-tag--yellow-moutarde,button.fr-tag--yellow-moutarde,input[type=button].fr-tag--yellow-moutarde,input[type=image].fr-tag--yellow-moutarde,input[type=reset].fr-tag--yellow-moutarde,input[type=submit].fr-tag--yellow-moutarde{background-color:#fde2b5;color:#695240}a.fr-tag--yellow-moutarde:hover,button.fr-tag--yellow-moutarde:hover,input[type=button].fr-tag--yellow-moutarde:hover,input[type=image].fr-tag--yellow-moutarde:hover,input[type=reset].fr-tag--yellow-moutarde:hover,input[type=submit].fr-tag--yellow-moutarde:hover{background-color:#f6c43c}a.fr-tag--yellow-moutarde:active,button.fr-tag--yellow-moutarde:active,input[type=button].fr-tag--yellow-moutarde:active,input[type=image].fr-tag--yellow-moutarde:active,input[type=reset].fr-tag--yellow-moutarde:active,input[type=submit].fr-tag--yellow-moutarde:active{background-color:#dfb135}a.fr-tag--orange-terre-battue,button.fr-tag--orange-terre-battue,input[type=button].fr-tag--orange-terre-battue,input[type=image].fr-tag--orange-terre-battue,input[type=reset].fr-tag--orange-terre-battue,input[type=submit].fr-tag--orange-terre-battue{background-color:#fddfd8;color:#755348}a.fr-tag--orange-terre-battue:hover,button.fr-tag--orange-terre-battue:hover,input[type=button].fr-tag--orange-terre-battue:hover,input[type=image].fr-tag--orange-terre-battue:hover,input[type=reset].fr-tag--orange-terre-battue:hover,input[type=submit].fr-tag--orange-terre-battue:hover{background-color:#fbb8a5}a.fr-tag--orange-terre-battue:active,button.fr-tag--orange-terre-battue:active,input[type=button].fr-tag--orange-terre-battue:active,input[type=image].fr-tag--orange-terre-battue:active,input[type=reset].fr-tag--orange-terre-battue:active,input[type=submit].fr-tag--orange-terre-battue:active{background-color:#faa184}a.fr-tag--brown-cafe-creme,button.fr-tag--brown-cafe-creme,input[type=button].fr-tag--brown-cafe-creme,input[type=image].fr-tag--brown-cafe-creme,input[type=reset].fr-tag--brown-cafe-creme,input[type=submit].fr-tag--brown-cafe-creme{background-color:#f4e3c7;color:#685c48}a.fr-tag--brown-cafe-creme:hover,button.fr-tag--brown-cafe-creme:hover,input[type=button].fr-tag--brown-cafe-creme:hover,input[type=image].fr-tag--brown-cafe-creme:hover,input[type=reset].fr-tag--brown-cafe-creme:hover,input[type=submit].fr-tag--brown-cafe-creme:hover{background-color:#e1c386}a.fr-tag--brown-cafe-creme:active,button.fr-tag--brown-cafe-creme:active,input[type=button].fr-tag--brown-cafe-creme:active,input[type=image].fr-tag--brown-cafe-creme:active,input[type=reset].fr-tag--brown-cafe-creme:active,input[type=submit].fr-tag--brown-cafe-creme:active{background-color:#ccb078}a.fr-tag--brown-caramel,button.fr-tag--brown-caramel,input[type=button].fr-tag--brown-caramel,input[type=image].fr-tag--brown-caramel,input[type=reset].fr-tag--brown-caramel,input[type=submit].fr-tag--brown-caramel{background-color:#f3e2d9;color:#845d48}a.fr-tag--brown-caramel:hover,button.fr-tag--brown-caramel:hover,input[type=button].fr-tag--brown-caramel:hover,input[type=image].fr-tag--brown-caramel:hover,input[type=reset].fr-tag--brown-caramel:hover,input[type=submit].fr-tag--brown-caramel:hover{background-color:#e7bea6}a.fr-tag--brown-caramel:active,button.fr-tag--brown-caramel:active,input[type=button].fr-tag--brown-caramel:active,input[type=image].fr-tag--brown-caramel:active,input[type=reset].fr-tag--brown-caramel:active,input[type=submit].fr-tag--brown-caramel:active{background-color:#e1a982}a.fr-tag--brown-opera,button.fr-tag--brown-opera,input[type=button].fr-tag--brown-opera,input[type=image].fr-tag--brown-opera,input[type=reset].fr-tag--brown-opera,input[type=submit].fr-tag--brown-opera{background-color:#f3e2d7;color:#745b47}a.fr-tag--brown-opera:hover,button.fr-tag--brown-opera:hover,input[type=button].fr-tag--brown-opera:hover,input[type=image].fr-tag--brown-opera:hover,input[type=reset].fr-tag--brown-opera:hover,input[type=submit].fr-tag--brown-opera:hover{background-color:#e7bfa0}a.fr-tag--brown-opera:active,button.fr-tag--brown-opera:active,input[type=button].fr-tag--brown-opera:active,input[type=image].fr-tag--brown-opera:active,input[type=reset].fr-tag--brown-opera:active,input[type=submit].fr-tag--brown-opera:active{background-color:#deaa7e}a.fr-tag--beige-gris-galet,button.fr-tag--beige-gris-galet,input[type=button].fr-tag--beige-gris-galet,input[type=image].fr-tag--beige-gris-galet,input[type=reset].fr-tag--beige-gris-galet,input[type=submit].fr-tag--beige-gris-galet{background-color:#eee4d9;color:#6a6156}a.fr-tag--beige-gris-galet:hover,button.fr-tag--beige-gris-galet:hover,input[type=button].fr-tag--beige-gris-galet:hover,input[type=image].fr-tag--beige-gris-galet:hover,input[type=reset].fr-tag--beige-gris-galet:hover,input[type=submit].fr-tag--beige-gris-galet:hover{background-color:#dbc3a4}a.fr-tag--beige-gris-galet:active,button.fr-tag--beige-gris-galet:active,input[type=button].fr-tag--beige-gris-galet:active,input[type=image].fr-tag--beige-gris-galet:active,input[type=reset].fr-tag--beige-gris-galet:active,input[type=submit].fr-tag--beige-gris-galet:active{background-color:#c6b094}button.fr-tag[aria-pressed=true]:not(:disabled),input[type=button].fr-tag[aria-pressed=true]:not(:disabled){background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#000091 .625rem);color:#f5f5fe}button.fr-tag[aria-pressed=true]:not(:disabled):hover,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):hover{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#1212ff .625rem)}button.fr-tag[aria-pressed=true]:not(:disabled):active,input[type=button].fr-tag[aria-pressed=true]:not(:disabled):active{background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#2323ff .625rem)}button.fr-tag[aria-pressed=true]:disabled,input[type=button].fr-tag[aria-pressed=true]:disabled{background-color:transparent;background-image:radial-gradient(circle at 100% .25rem,transparent .578125rem,#e5e5e5 .625rem)}button.fr-tag[aria-pressed=true]:disabled:after,input[type=button].fr-tag[aria-pressed=true]:disabled:after{color:#929292}button.fr-tag[aria-pressed=true].fr-tag--sm,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:hover,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:active,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}button.fr-tag[aria-pressed=true].fr-tag--sm:disabled,input[type=button].fr-tag[aria-pressed=true].fr-tag--sm:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}button.fr-tag:disabled,input[type=button].fr-tag:disabled{background-color:#e5e5e5;color:#929292}a:not([href]).fr-tag,button.fr-tag:disabled:hover,input[type=button].fr-tag:disabled:hover{background-color:#e5e5e5}a:not([href]).fr-tag{color:#929292}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true],.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#000091 .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:hover,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:hover{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#1212ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:active,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:active{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#2323ff .5rem)}.fr-tags-group.fr-tags-group--sm button.fr-tag[aria-pressed=true]:disabled,.fr-tags-group.fr-tags-group--sm input[type=button].fr-tag[aria-pressed=true]:disabled{background-image:radial-gradient(circle at 100% .1875rem,transparent .4475rem,#e5e5e5 .5rem)}.fr-alert:after,.fr-alert:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-alert p,.fr-alert__title{margin:0 0 .25rem}.fr-alert--info:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-alert--success:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-alert--error:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-alert--warning:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-alert .fr-btn--close:after,.fr-alert .fr-btn--close:before,.fr-alert .fr-link--close:after,.fr-alert .fr-link--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-alert{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a),linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-alert:before{color:#fff}.fr-alert--info{background-image:linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb),linear-gradient(0deg,#0063cb,#0063cb)}.fr-alert--error{background-image:linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500),linear-gradient(0deg,#ce0500,#ce0500)}.fr-alert--success{background-image:linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c),linear-gradient(0deg,#18753c,#18753c)}.fr-alert--warning{background-image:linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000),linear-gradient(0deg,#b34000,#b34000)}.fr-notice p,.fr-notice__title{margin:0}.fr-notice__title:before{color:transparent;vertical-align:-6px}.fr-notice--info .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--info-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--alert .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--cyberattack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--warning .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--witness .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-orange .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before,.fr-notice--weather-red .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/heavy-showers-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--weather-purple .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/weather/typhoon-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--kidnapping .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-fill.svg);height:1.5rem;width:1.5rem}.fr-notice--attack .fr-notice__title:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg);height:1.5rem;width:1.5rem}.fr-notice .fr-btn--close:after,.fr-notice .fr-btn--close:before{background-color:transparent;background-image:url(../icons/system/close-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-notice{background-color:#eee;color:#161616}.fr-notice--info{background-color:#e8edff;color:#0063cb}.fr-notice--warning,.fr-notice--weather-orange{background-color:#ffe9e6;color:#b34000}.fr-notice--alert{background-color:#ffe9e9;color:#ce0500}.fr-notice--weather-red{color:#fff}.fr-notice--weather-red,.fr-notice--weather-red .fr-btn--close{background-color:#ce0500}.fr-notice--weather-purple{background-color:#6e445a;color:#fff}.fr-notice--weather-purple .fr-btn--close{background-color:#6e445a}.fr-notice--witness{background-image:linear-gradient(0deg,#ce0500,#ce0500);color:#fff}.fr-notice--witness,.fr-notice--witness .fr-btn--close{background-color:#3a3a3a}.fr-notice--attack,.fr-notice--kidnapping{background-color:#ce0500;background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a);color:#fff}.fr-notice--attack .fr-btn--close,.fr-notice--kidnapping .fr-btn--close{background-color:#ce0500}.fr-notice--cyberattack{background-image:linear-gradient(0deg,#0063cb,#0063cb);color:#fff}.fr-notice--cyberattack,.fr-notice--cyberattack .fr-btn--close{background-color:#3a3a3a}.fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px)}.fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#000091 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-radio-group input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-fieldset--error .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px)}.fr-fieldset--error .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#ce0500 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--valid .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px)}.fr-fieldset--valid .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#18753c 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset--info .fr-radio-group input[type=radio]+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px)}.fr-fieldset--info .fr-radio-group input[type=radio]:checked+label{background-image:radial-gradient(transparent 10px,#0063cb 11px,transparent 12px),radial-gradient(#000091 5px,transparent 6px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px)}.fr-fieldset .fr-radio-group input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 10px,#e5e5e5 11px,transparent 12px),radial-gradient(#e5e5e5 5px,transparent 6px)}.fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-group--sm input[type=radio]:checked:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-group--sm input[type=radio]:checked+label{background-image:radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-group--sm input[type=radio]:disabled:checked+label{background-image:radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__pictogram{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]+label{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#000091 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__pictogram svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#000091 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled+label{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__pictogram{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#e5e5e5,#e5e5e5),linear-gradient(0deg,#ddd,#ddd)}.fr-fieldset--error .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px)}.fr-fieldset--error .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#ce0500 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#18753c 7px,transparent 8px)}.fr-fieldset--valid .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#18753c 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset--info .fr-radio-rich input[type=radio]+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px)}.fr-fieldset--info .fr-radio-rich input[type=radio]:checked+label{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),radial-gradient(transparent 6px,#0063cb 7px,transparent 8px),radial-gradient(#000091 3px,transparent 4px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px)}.fr-fieldset .fr-radio-rich input[type=radio]:disabled:checked+label{background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),radial-gradient(transparent 6px,#e5e5e5 7px,transparent 8px),radial-gradient(#e5e5e5 3px,transparent 4px)}.fr-radio-rich__img{background-color:#fff;background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:disabled~.fr-radio-rich__img svg *{fill:#929292}.fr-radio-rich input[type=radio]:checked~.fr-radio-rich__img{background-image:linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#000091,#000091),linear-gradient(0deg,#ddd,#ddd)}.fr-radio-rich input[type=radio]:checked:disabled~.fr-radio-rich__img{background-image:linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#929292,#929292),linear-gradient(0deg,#ddd,#ddd)}.fr-card--no-icon:after{content:none}.fr-card__desc,.fr-card__title{flex:1 0 auto}.fr-card__title a:after,.fr-card__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-card__title [target=_blank]:after,.fr-card__title a:after,.fr-card__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-card__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-card__detail:before{height:1rem;width:1rem}.fr-card--download .fr-tile__title a:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-card--download .fr-card__header{padding-top:56.25%}.fr-card--download .fr-card__header .fr-card__img img{height:auto!important;margin:auto;width:auto}.fr-card.fr-enlarge-link .fr-card__title a{text-decoration:none}.fr-card.fr-enlarge-button .fr-card__title button:after,.fr-card.fr-enlarge-link .fr-card__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-card--sm .fr-card__title a:after,.fr-card--sm .fr-card__title button:after,.fr-card--sm.fr-enlarge-button .fr-card__title a:after,.fr-card--sm.fr-enlarge-button .fr-card__title button:after,.fr-card--sm.fr-enlarge-link .fr-card__title a:after,.fr-card--sm.fr-enlarge-link .fr-card__title button:after{height:1rem;width:1rem}.fr-card--lg.fr-enlarge-button .fr-card__title a:after,.fr-card--lg.fr-enlarge-button .fr-card__title button:after,.fr-card--lg.fr-enlarge-link .fr-card__title a:after,.fr-card--lg.fr-enlarge-link .fr-card__title button:after{height:2rem;width:2rem}.fr-card--lg .fr-card__title a:after,.fr-card--lg .fr-card__title button:after{height:1.5rem;width:1.5rem}.fr-card>.fr-card__img{flex-shrink:0}.fr-card{background-color:#fff}.fr-card:not(.fr-card--no-border):not(.fr-card--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-card--grey{background-color:#eee}.fr-card--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-card--shadow.fr-card--grey{background-color:#eee}.fr-card--no-background{background-color:transparent}.fr-card--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-card--no-background:active{background-color:rgba(0,0,0,.1)}.fr-card--download:not(.fr-card--no-background) .fr-card__header{background-color:#f6f6f6}.fr-card__detail{color:#666}.fr-card__title{color:#161616}.fr-card__title a[href],.fr-card__title button{color:#000091}.fr-card__title button:disabled{color:#929292}.fr-card__title:disabled,a.fr-card__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-checkbox-group input[type=checkbox]{margin-top:0;opacity:1}.fr-fieldset__content .fr-checkbox-group input[type=checkbox]{margin-top:1.5rem}.fr-fieldset__content+.fr-error-text,.fr-fieldset__content+.fr-valid-text{margin-top:1rem}.fr-checkbox-group--error input[type=checkbox]+label,.fr-checkbox-group--error input[type=checkbox]:checked+label{color:#ce0500}.fr-checkbox-group--error:before{background-color:#ce0500}.fr-checkbox-group--valid input[type=checkbox]+label,.fr-checkbox-group--valid input[type=checkbox]:checked+label{color:#18753c}.fr-checkbox-group--valid:before{background-color:#18753c}.fr-segmented{display:block}.fr-segmented--sm .fr-segmented__legend--inline{margin:.25rem 0 0}.fr-segmented__legend--inline{margin:.5rem 0 0}.fr-segmented__elements{box-shadow:inset 0 0 0 1px #ddd;display:inline-flex}.fr-segmented input+label:before{height:1rem;vertical-align:-2px;width:1rem}.fr-segmented input:focus+label:before{outline:none}.fr-segmented__element label{color:#161616}.fr-segmented__element input:checked+label{box-shadow:inset 0 0 0 1px #000091;color:#000091}.fr-segmented__element input:checked:disabled+label{box-shadow:inset 0 0 0 1px #929292;color:#929292}.fr-toggle input[type=checkbox]::-ms-check{display:none}.fr-toggle input[type=checkbox]:checked:after,.fr-toggle input[type=checkbox]:checked:before{background-color:transparent;background-image:url(../icons/system/check-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-toggle__list{list-style:none;padding:0}.fr-toggle label{color:#161616}.fr-toggle label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#000091}.fr-toggle label:after{background-color:#fff;color:#000091}.fr-toggle input[type=checkbox],.fr-toggle label:after{box-shadow:inset 0 0 0 1px #000091}.fr-toggle input[type=checkbox]:checked{background-color:#000091}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23000091' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000091' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled{box-shadow:inset 0 0 0 1px #e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked{background-color:#e5e5e5}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='%23e5e5e5' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled:checked~.fr-toggle__label:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m10 15.17 9.2-9.2 1.4 1.42L10 18l-6.36-6.36 1.4-1.42z'/%3E%3C/svg%3E")}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23e5e5e5' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#929292}.fr-toggle input[type=checkbox]:disabled~.fr-toggle__label:after{box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-toggle .fr-hint-text{color:#666}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 #ddd}.fr-toggle--valid:before{background-color:#18753c}.fr-toggle--error:before{background-color:#ce0500}.fr-fieldset--error .fr-toggle label,.fr-toggle--error label{color:#ce0500}.fr-fieldset--error .fr-toggle label:before,.fr-toggle--error label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#ce0500}.fr-fieldset--error .fr-toggle label:after,.fr-toggle--error label:after{box-shadow:inset 0 0 0 1px #ce0500}.fr-fieldset--error .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--error input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%23ce0500' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-fieldset--valid .fr-toggle label,.fr-toggle--valid label{color:#18753c}.fr-fieldset--valid .fr-toggle label:before,.fr-toggle--valid label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='transparent' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E");color:#18753c}.fr-fieldset--valid .fr-toggle label:after,.fr-toggle--valid label:after{box-shadow:inset 0 0 0 1px #18753c}.fr-fieldset--valid .fr-toggle input[type=checkbox]:checked~.fr-toggle__label:before,.fr-toggle--valid input[type=checkbox]:checked~.fr-toggle__label:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='40' stroke='%2318753c' height='24' fill='%23000091' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='.5' y='.5' width='39' height='23' rx='11.5'/%3E%3C/svg%3E")}.fr-skiplinks ol,.fr-skiplinks ul{list-style-type:none}.fr-skiplinks ol,.fr-skiplinks ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-skiplinks.focus-within{opacity:1;position:relative;transform:translateY(0)}.fr-skiplinks{background-color:#eee}.fr-select::-ms-expand{display:none}.fr-select{background-color:#eee;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-fieldset--valid .fr-select,.fr-select-group--valid .fr-select{box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-select,.fr-select-group--error .fr-select{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-select-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-select-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-select-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-select:disabled{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23929292' d='m12 13.1 5-4.9 1.4 1.4-6.4 6.3-6.4-6.4L7 8.1l5 5z'/%3E%3C/svg%3E");box-shadow:inset 0 -2px 0 0 #e5e5e5;color:#929292}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #ececfe}.fr-callout__title{color:#161616;margin:0 0 .5rem}.fr-callout__text{margin:0}.fr-callout{background-color:#eee;background-image:linear-gradient(0deg,#6a6af4,#6a6af4)}.fr-callout:before{color:#161616}.fr-callout--green-tilleul-verveine{background-color:#fceeac;background-image:linear-gradient(0deg,#b7a73f,#b7a73f)}.fr-callout--green-bourgeon{background-color:#c9fcac;background-image:linear-gradient(0deg,#68a532,#68a532)}.fr-callout--green-emeraude{background-color:#c3fad5;background-image:linear-gradient(0deg,#00a95f,#00a95f)}.fr-callout--green-menthe{background-color:#bafaee;background-image:linear-gradient(0deg,#009081,#009081)}.fr-callout--green-archipel{background-color:#c7f6fc;background-image:linear-gradient(0deg,#009099,#009099)}.fr-callout--blue-ecume{background-color:#e9edfe;background-image:linear-gradient(0deg,#465f9d,#465f9d)}.fr-callout--blue-cumulus{background-color:#e6eefe;background-image:linear-gradient(0deg,#417dc4,#417dc4)}.fr-callout--purple-glycine{background-color:#fee7fc;background-image:linear-gradient(0deg,#a558a0,#a558a0)}.fr-callout--pink-macaron{background-color:#fee9e6;background-image:linear-gradient(0deg,#e18b76,#e18b76)}.fr-callout--pink-tuile{background-color:#fee9e7;background-image:linear-gradient(0deg,#ce614a,#ce614a)}.fr-callout--yellow-tournesol{background-color:#feecc2;background-image:linear-gradient(0deg,#c8aa39,#c8aa39)}.fr-callout--yellow-moutarde{background-color:#feebd0;background-image:linear-gradient(0deg,#c3992a,#c3992a)}.fr-callout--orange-terre-battue{background-color:#fee9e5;background-image:linear-gradient(0deg,#e4794a,#e4794a)}.fr-callout--brown-cafe-creme{background-color:#f7ecdb;background-image:linear-gradient(0deg,#d1b781,#d1b781)}.fr-callout--brown-caramel{background-color:#f7ebe5;background-image:linear-gradient(0deg,#c08c65,#c08c65)}.fr-callout--brown-opera{background-color:#f7ece4;background-image:linear-gradient(0deg,#bd987a,#bd987a)}.fr-callout--beige-gris-galet{background-color:#f3ede5;background-image:linear-gradient(0deg,#aea397,#aea397)}.fr-modal__body{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:2000}.fr-modal__title{color:#161616}.fr-modal__footer{background-color:#fff}.fr-modal__body.fr-scroll-divider .fr-modal__footer{background-image:linear-gradient(0deg,#ddd,#ddd)}.fr-nav [href]{text-decoration:none}.fr-nav ol,.fr-nav ul{list-style-type:none}.fr-nav ol,.fr-nav ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-nav__btn:after{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-mega-menu__category{margin:0}.fr-nav__btn,.fr-nav__link{color:#161616}.fr-nav__btn[aria-current]:not([aria-current=false]),.fr-nav__link[aria-current]:not([aria-current=false]){color:#000091}.fr-nav__btn[aria-current]:not([aria-current=false]):before,.fr-nav__link[aria-current]:not([aria-current=false]):before{background-color:#000091}.fr-nav__btn[aria-expanded=true]:not(:disabled){background-color:#e3e3fd;color:#000091}.fr-nav__item:before{box-shadow:0 -1px 0 0 #ddd,inset 0 -1px 0 0 #ddd}.fr-nav__item:first-child:before{box-shadow:inset 0 -1px 0 0 #ddd}.fr-nav__item:last-child:before{box-shadow:0 -1px 0 0 #ddd}.fr-mega-menu__list:before{box-shadow:0 1px 0 0 #ddd}.fr-share__group>li{list-style:none}.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-share .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share .fr-btn--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share .fr-btn--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share .fr-btn--copy:before,.fr-share .fr-btn--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share .fr-btn--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share__link--facebook:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-share__link--facebook:before,.fr-share__link--linkedin:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--linkedin:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-share__link--mastodon:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-share__link--mastodon:before,.fr-share__link--threads:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--threads:before{background-image:url(../icons/logo/threads-line.svg)}.fr-share__link--twitter:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-share__link--twitter-x:before,.fr-share__link--twitter:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--twitter-x:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-share__link--mail:before{background-image:url(../icons/business/mail-line.svg)}.fr-share__link--copy:before,.fr-share__link--mail:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-share__link--copy:before{background-image:url(../icons/business/links-fill.svg)}.fr-share .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-share .fr-btn:disabled,.fr-share a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share .fr-btn:disabled:hover,.fr-share a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share .fr-btn:disabled:active,.fr-share a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-share__text{color:#666}.fr-share__link{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-share__link:hover{background-color:rgba(0,0,0,.05)}.fr-share__link:active{background-color:rgba(0,0,0,.1)}.fr-share__link:disabled,a.fr-share__link:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-share__link:disabled:hover,a.fr-share__link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-share__link:disabled:active,a.fr-share__link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-footer ol,.fr-footer ul{list-style-type:none}.fr-footer ol,.fr-footer ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-footer__content-desc [href]{text-decoration:underline}.fr-footer__bottom .fr-btn:after,.fr-footer__bottom .fr-btn:before,.fr-footer__bottom .fr-footer__bottom-link:after,.fr-footer__bottom .fr-footer__bottom-link:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;margin-bottom:-.25rem;width:1rem}.fr-footer{box-shadow:inset 0 2px 0 0 #000091,inset 0 -1px 0 0 #ddd}.fr-footer__content-link{color:#3a3a3a}.fr-footer__top-cat{color:#161616}.fr-footer__top{background-color:#f6f6f6}.fr-footer__bottom{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__bottom .fr-btn{color:#666}.fr-footer__bottom-item:before{box-shadow:inset 0 0 0 1px #ddd}.fr-footer__bottom-copy,.fr-footer__bottom-link{color:#666}.fr-footer__partners{box-shadow:inset 0 1px 0 0 #ddd}.fr-footer__partners-title{color:#3a3a3a}.fr-footer__partners .fr-footer__logo{background-color:#fff;box-shadow:inset 0 0 0 1px #ddd}.fr-tile--download .fr-tile__body,.fr-tile--horizontal .fr-tile__body{flex-basis:100%}.fr-tile__body,.fr-tile__body>*{max-width:100%}.fr-tile__title{color:#161616;margin:0 0 .5rem;max-width:100%}.fr-tile__title a:after,.fr-tile__title button:after{background-image:url(../icons/system/arrow-right-line.svg)}.fr-tile__title [target=_blank]:after,.fr-tile__title a:after,.fr-tile__title button:after{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-tile__title [target=_blank]:after{background-image:url(../icons/system/external-link-line.svg)}.fr-tile__desc{margin:0;max-width:100%}.fr-tile__detail,.fr-tile__start{max-width:100%}.fr-tile--download .fr-tile__title a:after,.fr-tile--download .fr-tile__title button:after{background-color:transparent;background-image:url(../icons/system/download-line.svg);background-repeat:no-repeat;background-size:100%}.fr-tile.fr-enlarge-link .fr-tile__title a{text-decoration:none}.fr-tile.fr-enlarge-button .fr-tile__title button:after,.fr-tile.fr-enlarge-link .fr-tile__title a:after{background-color:transparent;height:1.5rem;width:1.5rem}.fr-tile--sm .fr-tile__title a:after,.fr-tile--sm .fr-tile__title button:after{height:1rem;width:1rem}.fr-tile{background-color:#fff}.fr-tile:not(.fr-tile--no-border):not(.fr-tile--shadow){background-image:linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd),linear-gradient(0deg,#ddd,#ddd)}.fr-tile--grey{background-color:#eee}.fr-tile--shadow{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:500}.fr-tile--shadow.fr-tile--grey{background-color:#eee}.fr-tile--no-background{background-color:transparent}.fr-tile--no-background:hover{background-color:rgba(0,0,0,.05)}.fr-tile--no-background:active{background-color:rgba(0,0,0,.1)}.fr-tile__title:disabled,a.fr-tile__title:not([href]){background-color:#e5e5e5;color:#929292}.fr-tile__title:before{background-image:linear-gradient(0deg,#3a3a3a,#3a3a3a)}.fr-tile__title a,.fr-tile__title button{color:#000091}.fr-tile__title a:before,.fr-tile__title button:before{background-image:linear-gradient(0deg,#000091,#000091)}.fr-tile__title a:not([href]),.fr-tile__title button:disabled{color:#929292}.fr-tile__title a:not([href]):before,.fr-tile__title button:disabled:before{background-image:linear-gradient(0deg,#e5e5e5,#e5e5e5)}.fr-translate .fr-translate__btn:before{background-image:url(../icons/editor/translate-2.svg)}.fr-translate .fr-translate__btn:after,.fr-translate .fr-translate__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-translate .fr-translate__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-translate .fr-translate__btn[aria-expanded=true]{background-color:#e3e3fd;color:#000091}.fr-translate__menu .fr-translate__language{box-shadow:none}.fr-transcription{position:relative}.fr-transcription__btn:before{background-image:url(../icons/media/align-left.svg)}.fr-transcription__btn:after,.fr-transcription__btn:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-transcription__btn:after{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-transcription__btn[aria-expanded=true]:after{transform:rotate(-180deg)}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{list-style-type:none}ol.fr-transcription__actions-group,ul.fr-transcription__actions-group{margin-bottom:0;margin-top:0;padding-left:0}.fr-transcription .fr-modal:not(.fr-modal--opened) .fr-modal__content{max-height:9.5rem}.fr-transcription:before{box-shadow:inset 0 0 0 1px #ddd}.fr-transcription__btn{color:#000091}.fr-transcription__btn[aria-expanded=true]{background-color:#e3e3fd}.fr-transcription .fr-modal:not(.fr-modal--opened):before,.fr-transcription__content:before,.fr-transcription__footer:before{box-shadow:inset 0 1px 0 0 #ddd}.fr-input-wrap--addon .fr-btn{flex-shrink:0}.fr-input:-ms-input-placeholder{font-style:italic}.fr-input{background-color:#eee;box-shadow:inset 0 -2px 0 0 #3a3a3a;color:#3a3a3a}.fr-input::placeholder{color:#666}.fr-input::-webkit-contacts-auto-fill-button{background-color:#161616}.fr-input::-webkit-contacts-auto-fill-button:hover{background-color:#343434}.fr-input::-webkit-contacts-auto-fill-button:active{background-color:#474747}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover,.fr-input:autofill,.fr-input:autofill:focus,.fr-input:autofill:hover{-webkit-text-fill-color:#161616;box-shadow:inset 0 -2px 0 0 #3a3a3a,inset 0 0 0 1000px #e8edff}.fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #000091}.fr-fieldset--valid .fr-input,.fr-fieldset--valid .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--valid .fr-input,.fr-input-group--valid .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #18753c}.fr-fieldset--error .fr-input,.fr-fieldset--error .fr-input-wrap--addon>.fr-input:not(:last-child),.fr-input-group--error .fr-input,.fr-input-group--error .fr-input-wrap--addon>.fr-input:not(:last-child){box-shadow:inset 0 -2px 0 0 #ce0500}.fr-input-group--error:before{background-image:linear-gradient(0deg,#ce0500,#ce0500)}.fr-input-group--valid:before{background-image:linear-gradient(0deg,#18753c,#18753c)}.fr-input-group--info:before{background-image:linear-gradient(0deg,#0063cb,#0063cb)}.fr-search-bar .fr-btn:after,.fr-search-bar .fr-btn:before{background-color:transparent;background-image:url(../icons/system/search-line.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 #000091}.fr-search-bar .fr-input--valid{box-shadow:inset 0 -2px 0 0 #18753c}.fr-search-bar .fr-input--error{box-shadow:inset 0 -2px 0 0 #ce0500}.fr-search-bar .fr-input::-webkit-search-cancel-button{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath fill='%23161616' d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm0-11.414L9.172 7.757 7.757 9.172 10.586 12l-2.829 2.828 1.415 1.415L12 13.414l2.828 2.829 1.415-1.415L13.414 12l2.829-2.828-1.415-1.415L12 10.586z'/%3E%3C/svg%3E")}.fr-content-media .fr-link,.fr-content-media__caption{color:#666}.fr-content-media__transcription .fr-link{background-color:transparent;color:#000091}.fr-content-media__transcription .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-content-media__transcription .fr-link:disabled,.fr-content-media__transcription a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-content-media__transcription .fr-link:disabled:hover,.fr-content-media__transcription a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-content-media__transcription .fr-link:disabled:active,.fr-content-media__transcription a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-consent-service__collapse .fr-consent-service__collapse-btn{text-decoration:underline}.fr-consent-service__collapse .fr-consent-service__collapse-btn:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{background-color:transparent;background-image:url(../icons/system/arrow-down-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:after,.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{background-color:transparent;background-image:url(../icons/system/arrow-up-s-line.svg);background-repeat:no-repeat;background-size:100%;height:1rem;width:1rem}.fr-consent-placeholder{background-color:#eee}.fr-consent-banner{background-color:#f6f6f6;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 0 0 1px #ddd;z-index:1500}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 #ddd;color:#3a3a3a}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{box-shadow:inset 0 0 0 1px #ddd}.fr-consent-service__title{color:#161616}.fr-consent-service .fr-consent-service,.fr-consent-service:last-of-type{box-shadow:none}.fr-consent-service .fr-consent-service__collapse-btn{color:#000091}.fr-follow__newsletter>*{max-width:100%}.fr-follow .fr-btn--dailymotion:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-follow .fr-btn--facebook:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-follow .fr-btn--github:before{background-image:url(../icons/logo/github-fill.svg)}.fr-follow .fr-btn--instagram:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-follow .fr-btn--linkedin:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-follow .fr-btn--mastodon:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-follow .fr-btn--snapchat:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-follow .fr-btn--telegram:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-follow .fr-btn--threads:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-follow .fr-btn--tiktok:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-follow .fr-btn--twitch:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-follow .fr-btn--twitter:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-follow .fr-btn--twitter-x:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-follow .fr-btn--vimeo:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-follow .fr-btn--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-btns-group--lg .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow .fr-link--facebook:after,.fr-follow .fr-link--facebook:before{background-color:transparent;background-image:url(../icons/logo/facebook-circle-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter:after,.fr-follow .fr-link--twitter:before{background-color:transparent;background-image:url(../icons/logo/twitter-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--twitter-x:after,.fr-follow .fr-link--twitter-x:before{background-color:transparent;background-image:url(../icons/logo/twitter-x-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--instagram:after,.fr-follow .fr-link--instagram:before{background-color:transparent;background-image:url(../icons/logo/instagram-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--linkedin:after,.fr-follow .fr-link--linkedin:before{background-color:transparent;background-image:url(../icons/logo/linkedin-box-fill.svg);background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-follow .fr-link--youtube:after,.fr-follow .fr-link--youtube:before,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group:not(.fr-links-group--sm):not(.fr-links-group--lg) .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):after,.fr-follow .fr-links-group--lg .fr-link:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:2rem;width:2rem}.fr-follow{background-color:#f5f5fe}.fr-follow .fr-input{background-color:#fff}.fr-follow__title{color:#161616}.fr-follow__newsletter-legal{color:#666}.fr-follow__social .fr-btn{background-color:transparent;color:#000091}.fr-follow__social .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-btn:disabled,.fr-follow__social a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-btn:disabled:hover,.fr-follow__social a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-btn:disabled:active,.fr-follow__social a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 #6a6af4}.fr-follow__social .fr-link{background-color:transparent;color:#000091}.fr-follow__social .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-follow__social .fr-link:disabled,.fr-follow__social a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-follow__social .fr-link:disabled:hover,.fr-follow__social a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-follow__social .fr-link:disabled:active,.fr-follow__social a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password__checkbox{margin:0;position:absolute;right:0;top:0}.fr-password__btn{background-color:transparent;color:#000091}.fr-password__btn:hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:active{background-color:rgba(0,0,0,.1)}.fr-password__btn:disabled,a.fr-password__btn:not([href]){background-color:transparent;color:#929292}.fr-password__btn:disabled:hover,a.fr-password__btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-password__btn:disabled:active,a.fr-password__btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-password [data-fr-capslock]:before{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23161616' d='M22.668 0C23.402 0 24 .598 24 1.332v21.336c0 .734-.598 1.332-1.332 1.332H1.332A1.334 1.334 0 0 1 0 22.668V1.332C0 .598.598 0 1.332 0Zm-1.336 2.668H2.668v18.664h18.664Zm-4.664 12.664V18H7.332v-2.668ZM12 5.332 16.668 10H14v3.332h-4V10H7.332Zm0 0'/%3E%3C/svg%3E")}.fr-password .fr-password__checkbox input[type=checkbox]+label{color:#161616}.fr-header ol,.fr-header ul{list-style-type:none}.fr-header ol,.fr-header ul{margin-bottom:0;margin-top:0;padding-left:0}.fr-header [href]{text-decoration:none}.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn.fr-btn--display:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn:not([class^=fr-icon-]):not([class*=" fr-icon-"]):not([class^=fr-fi-]):not([class*=" fr-fi-"]):not(.fr-btn--display):before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-icon-"]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before,.fr-header .fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-icon-]:before{height:1rem;width:1rem}.fr-header__tools-links .fr-link{background-color:transparent;color:#000091;overflow:visible}.fr-header__service-tagline,.fr-header__service-title{margin:0}.fr-header__operator img{height:auto!important}.fr-header__navbar .fr-btn--menu:before{background-image:url(../icons/system/menu-fill.svg)}.fr-header__navbar .fr-btn--menu:before,.fr-header__navbar .fr-btn--search:before{background-color:transparent;background-repeat:no-repeat;background-size:100%;height:1.5rem;width:1.5rem}.fr-header__navbar .fr-btn--search:before{background-image:url(../icons/system/search-line.svg)}.fr-header__brand{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__service{color:#161616}.fr-header__service:before{background-color:#ddd}.fr-header__menu-links:after{box-shadow:inset 0 1px 0 0 #ddd}.fr-header__menu-links .fr-btn{background-color:transparent;box-shadow:none;color:#000091}.fr-header__menu-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-btn:disabled,.fr-header__menu-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-btn:disabled:hover,.fr-header__menu-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-btn:disabled:active,.fr-header__menu-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn{background-color:transparent;color:#000091}.fr-header__tools-links .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-btn:disabled,.fr-header__tools-links a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-btn:disabled:hover,.fr-header__tools-links a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-btn:disabled:active,.fr-header__tools-links a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:hover,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links>.fr-translate:first-child:last-child .fr-btn:disabled:active,.fr-header__tools-links>.fr-translate:first-child:last-child a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-service__title{color:#161616}.fr-header__navbar .fr-btn{background-color:transparent;color:#000091}.fr-header__navbar .fr-btn:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn:disabled,.fr-header__navbar a.fr-btn:not([href]){background-color:transparent;color:#929292}.fr-header__navbar .fr-btn:disabled:hover,.fr-header__navbar a.fr-btn:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn:disabled:active,.fr-header__navbar a.fr-btn:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu{background-color:transparent;box-shadow:inset 0 0 0 1px #ddd;color:#000091}.fr-header__navbar .fr-btn--menu:hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:active{background-color:rgba(0,0,0,.1)}.fr-header__navbar .fr-btn--menu:disabled,.fr-header__navbar a.fr-btn--menu:not([href]){background-color:transparent;box-shadow:inset 0 0 0 1px #e5e5e5;color:#929292}.fr-header__navbar .fr-btn--menu:disabled:hover,.fr-header__navbar a.fr-btn--menu:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__navbar .fr-btn--menu:disabled:active,.fr-header__navbar a.fr-btn--menu:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header .fr-modal{background-color:#fff}.fr-header__menu-links .fr-link{background-color:transparent;box-shadow:inset 0 -1px 0 0 #ddd;color:#000091}.fr-header__menu-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__menu-links .fr-link:disabled,.fr-header__menu-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__menu-links .fr-link:disabled:hover,.fr-header__menu-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__menu-links .fr-link:disabled:active,.fr-header__menu-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:active{background-color:rgba(0,0,0,.1)}.fr-header__tools-links .fr-link:disabled,.fr-header__tools-links a.fr-link:not([href]){background-color:transparent;color:#929292}.fr-header__tools-links .fr-link:disabled:hover,.fr-header__tools-links a.fr-link:not([href]):hover{background-color:rgba(0,0,0,.05)}.fr-header__tools-links .fr-link:disabled:active,.fr-header__tools-links a.fr-link:not([href]):active{background-color:rgba(0,0,0,.1)}}@media screen and (min-width:48em) and (min-width:0\0) and (min-resolution:72dpi){.fr-sidemenu,.fr-sidemenu__title{box-shadow:none}.fr-sidemenu__inner{box-shadow:inset -1px 0 0 0 #ddd}.fr-sidemenu--right .fr-sidemenu__inner{box-shadow:inset 1px 0 0 0 #ddd}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 #6a6af4}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:48em){.fr-tabs__panel>*{margin-left:2rem;margin-right:2rem}.fr-tabs__panel>:first-child{margin-top:1.75rem}.fr-tabs__panel>:last-child{margin-bottom:2rem}.fr-card--download .fr-card__header{padding-top:0}.fr-card--download .fr-card__body,.fr-card--horizontal .fr-card__body,.fr-card--horizontal-half .fr-card__body,.fr-card--horizontal-tier .fr-card__body{flex-basis:100%}.fr-tile--download.fr-tile--vertical\@md .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@md .fr-tile__body{flex-basis:auto}}@media screen and (forced-colors:active) and (min-width:0\0) and (min-resolution:72dpi),screen and (prefers-contrast:more) and (min-width:0\0) and (min-resolution:72dpi){.fr-pagination__link[aria-current]:not([aria-current=false]){border:1px solid #000091}}@media screen and (min-width:62em) and (min-width:0\0) and (min-resolution:72dpi){.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(2)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(3)~*,.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4),.fr-nav__list>.fr-nav__item:first-child:nth-last-child(4)~*{flex-basis:auto}.fr-nav__item{flex-basis:100%;position:static}.fr-nav__item .fr-nav__btn,.fr-nav__item .fr-nav__link{flex-wrap:nowrap;max-width:100%}.fr-nav__item--align-right{position:relative}.fr-nav__item--align-right .fr-collapse{right:0}.fr-menu .fr-menu__list{margin-bottom:2rem}.fr-menu{z-index:1000}.fr-menu__list{background-color:#fff;background-image:linear-gradient(0deg,#e3e3fd,#e3e3fd);box-shadow:0 0 0 1px rgba(0,0,18,.16)}.fr-menu__list>:first-child,.fr-menu__list>:first-child .fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover .fr-nav__link,.fr-menu__list>:hover+*,.fr-menu__list>:hover+* .fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem #ddd}.fr-mega-menu{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);box-shadow:inset 0 1px 0 0 #e3e3fd;z-index:1000}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem #ddd}.fr-header{background-color:#fff;box-shadow:0 0 0 1px rgba(0,0,18,.16);z-index:750}.fr-header__brand{background:transparent;box-shadow:none;z-index:auto}.fr-header__service{box-shadow:none}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 #ddd}}@media screen and (min-width:0\0) and (min-resolution:72dpi) and (min-width:62em){.fr-tile--download.fr-tile--vertical\@lg .fr-tile__body,.fr-tile--horizontal.fr-tile--vertical\@lg .fr-tile__body{flex-basis:auto}.fr-header .fr-modal{overflow:visible;position:static}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/dsfr/dsfr.module.min.js b/dsfr/static/dsfr/dist/dsfr/dsfr.module.min.js index 75210fb2e..1c13133d3 100644 --- a/dsfr/static/dsfr/dist/dsfr/dsfr.module.min.js +++ b/dsfr/static/dsfr/dist/dsfr/dsfr.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const e=new class{constructor(){this.modules={}}create(e){const t=new e;this.modules[t.type]=t}getModule(e){return this.modules[e]}add(e,t){this.modules[e].add(t)}remove(e,t){this.modules[e].remove(t)}get isActive(){return this._isActive}set isActive(e){if(e===this._isActive)return;this._isActive=e;const t=Object.keys(this.modules).map((e=>this.modules[e]));if(e)for(const e of t)e.activate();else for(const e of t)e.deactivate()}get isLegacy(){return this._isLegacy}set isLegacy(e){e!==this._isLegacy&&(this._isLegacy=e)}},t="fr",s="dsfr",i="@gouvfr",n="1.12.1";class r{constructor(e,t,s,i){switch(this.level=e,this.light=t,this.dark=s,i){case"warn":this.logger=console.warn;break;case"error":this.logger=console.error;break;default:this.logger=console.log}}log(...e){const t=new a(s);for(const s of e)t.add(s);this.print(t)}print(e){e.setColor(this.color),this.logger.apply(console,e.getMessage())}get color(){return window.matchMedia("(prefers-color-scheme: dark)").matches?this.dark:this.light}}class a{constructor(e){this.inputs=["%c"],this.styles=["font-family:Marianne","line-height: 1.5"],this.objects=[],e&&this.add(`${e} :`)}add(e){switch(typeof e){case"object":case"function":this.inputs.push("%o "),this.objects.push(e);break;default:this.inputs.push(`${e} `)}}setColor(e){this.styles.push(`color:${e}`)}getMessage(){return[this.inputs.join(""),this.styles.join(";"),...this.objects]}}const o={log:new r(0,"#616161","#989898"),debug:new r(1,"#000091","#8B8BFF"),info:new r(2,"#007c3b","#00ed70"),warn:new r(3,"#ba4500","#fa5c00","warn"),error:new r(4,"#D80600","#FF4641","error")};const h=new class{constructor(){this.level=2;for(const e in o){const t=o[e];this[e]=(...e)=>{this.level<=t.level&&t.log.apply(t,e)},this[e].print=t.print.bind(t)}}state(){const t=new a;t.add(e),this.log.print(t)}tree(){const t=e.getModule("stage");if(!t)return;const s=new a;this._branch(t.root,0,s),this.log.print(s)}_branch(e,t,s){let i="";if(t>0){let e="";for(let s=0;s{"loading"!==document.readyState?window.requestAnimationFrame(e):document.addEventListener("DOMContentLoaded",e)},l={AUTO:"auto",MANUAL:"manual",RUNTIME:"runtime",LOADED:"loaded",VUE:"vue",ANGULAR:"angular",REACT:"react"};const d=new class{constructor(){this._mode=l.AUTO,this.isStarted=!1,this.starting=this.start.bind(this),this.preventManipulation=!1}configure(e={},t,s){this.startCallback=t;const i=e.production&&(!s||"false"!==s.production);switch(!0){case s&&!isNaN(s.level):h.level=Number(s.level);break;case s&&s.verbose&&("true"===s.verbose||1===s.verbose):h.level=0;break;case i:h.level=999;break;case e.verbose:h.level=0}h.info(`version ${n}`),this.mode=e.mode||l.AUTO}set mode(e){switch(e){case l.AUTO:this.preventManipulation=!1,t=this.starting,c(t);break;case l.LOADED:this.preventManipulation=!1,c(this.starting);break;case l.RUNTIME:this.preventManipulation=!1,this.start();break;case l.MANUAL:this.preventManipulation=!1;break;case l.VUE:case l.ANGULAR:case l.REACT:this.preventManipulation=!0;break;default:return void h.error("Illegal mode")}var t;this._mode=e,h.info(`mode set to ${e}`)}get mode(){return this._mode}start(){h.info("start"),this.startCallback()}};class u{constructor(){this._collection=[]}forEach(e){this._collection.forEach(e)}map(e){return this._collection.map(e)}get length(){return this._collection.length}add(e){return!(this._collection.indexOf(e)>-1)&&(this._collection.push(e),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)}remove(e){const t=this._collection.indexOf(e);if(-1===t)return!1;this._collection.splice(t,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()}execute(...e){for(const t of this._collection)t&&t.apply(null,e)}clear(){this._collection.length=0}clone(){const e=new u;return e._collection=this._collection.slice(),e}get collection(){return this._collection}}class g extends u{constructor(e){super(),this.type=e,this.isActive=!1}activate(){}deactivate(){}}const p=e=>`${t}-${e}`;p.selector=(e,t)=>(void 0===t&&(t="."),`${t}${p(e)}`),(p.attr=e=>`data-${p(e)}`).selector=(e,t)=>{let s=p.attr(e);return void 0!==t&&(s+=`="${t}"`),`[${s}]`},p.event=e=>`${s}.${e}`,p.emission=(e,t)=>`emission:${e}.${t}`;const m=(e,t)=>Array.prototype.slice.call(e.querySelectorAll(t)),_=(e,t)=>{const s=e.parentElement;return s.matches(t)?s:s===document.documentElement?null:_(s,t)};class b{constructor(e,t,s){this.selector=e,this.InstanceClass=t,this.creator=s,this.instances=new u,this.isIntroduced=!1,this._instanceClassName=this.InstanceClass.instanceClassName,this._instanceClassNames=this.getInstanceClassNames(this.InstanceClass),this._property=this._instanceClassName.substring(0,1).toLowerCase()+this._instanceClassName.substring(1);const i=this._instanceClassName.replace(/[^a-zA-Z0-9]+/g,"-").replace(/([A-Z]+)([A-Z][a-z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([0-9])([^0-9])/g,"$1-$2").replace(/([^0-9])([0-9])/g,"$1-$2").toLowerCase();this._attribute=p.attr(`js-${i}`)}getInstanceClassNames(e){const t=Object.getPrototypeOf(e);return t&&"Instance"!==t.instanceClassName?[...this.getInstanceClassNames(t),e.instanceClassName]:[e.instanceClassName]}hasInstanceClassName(e){return this._instanceClassNames.indexOf(e)>-1}introduce(){this.isIntroduced||(this.isIntroduced=!0,e.getModule("stage").parse(document.documentElement,this))}parse(e,t){const s=[];return e.matches&&e.matches(this.selector)&&s.push(e),!t&&e.querySelectorAll&&e.querySelector(this.selector)&&s.push.apply(s,m(e,this.selector)),s}create(e){if(!e.node.matches(this.selector))return;const t=new this.InstanceClass;return this.instances.add(t),t}remove(e){this.instances.remove(e)}dispose(){const e=this.instances.collection;for(let t=e.length-1;t>-1;t--)e[t]._dispose();this.creator=null}get instanceClassName(){return this._instanceClassName}get instanceClassNames(){return this._instanceClassNames}get property(){return this._property}get attribute(){return this._attribute}}class E extends g{constructor(){super("register")}register(t,s,i){const n=new b(t,s,i);return this.add(n),e.isActive&&n.introduce(),n}activate(){for(const e of this.collection)e.introduce()}remove(e){e.dispose(),super.remove(e)}}let f=0;class T{constructor(e,t){t?this.id=t:(f++,this.id=f),this.node=e,this.attributeNames=[],this.instances=[],this._children=[],this._parent=null,this._projects=[]}get proxy(){const e=this;if(!this._proxy){this._proxy={id:this.id,get parent(){return e.parent?e.parent.proxy:null},get children(){return e.children.map((e=>e.proxy))}};for(const e of this.instances)this._proxy[e.registration.property]=e.proxy}return this._proxy}get html(){if(!this.node||!this.node.outerHTML)return"";const e=this.node.outerHTML.indexOf(">");return this.node.outerHTML.substring(0,e+1)}project(e){-1===this._projects.indexOf(e)&&this._projects.push(e)}populate(){const e=this._projects.slice();this._projects.length=0;for(const t of e)this.create(t)}create(e){if(this.hasInstance(e.instanceClassName))return;h.debug(`create instance of ${e.instanceClassName} on element [${this.id}]`);const t=e.create(this);this.instances.push(t),t._config(this,e),this._proxy&&(this._proxy[e.property]=t.proxy)}remove(e){const t=this.instances.indexOf(e);t>-1&&this.instances.splice(t,1),this._proxy&&delete this._proxy[e.registration.property]}get parent(){return this._parent}get ascendants(){return[this.parent,...this.parent.ascendants]}get children(){return this._children}get descendants(){const e=[...this._children];return this._children.forEach((t=>e.push(...t.descendants))),e}addChild(e,t){return this._children.indexOf(e)>-1?null:(e._parent=this,!isNaN(t)&&t>-1&&t=0;e--){const t=this.instances[e];t&&t._dispose()}this.instances.length=0,e.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug(`remove element [${this.id}] ${this.html}`)}prepare(e){-1===this.attributeNames.indexOf(e)&&this.attributeNames.push(e)}examine(){const e=this.attributeNames.slice();this.attributeNames.length=0;for(let t=this.instances.length-1;t>-1;t--)this.instances[t].examine(e)}}const A={CLICK:p.emission("root","click"),KEYDOWN:p.emission("root","keydown"),KEYUP:p.emission("root","keyup")},S={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},v=e=>Object.values(S).filter((t=>t.value===e))[0];class y extends T{constructor(){super(document.documentElement,"root"),this.node.setAttribute(p.attr("js"),!0),this.listen()}listen(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})}click(e){this.emit(A.CLICK,e.target)}keydown(e){this.emit(A.KEYDOWN,v(e.keyCode))}keyup(e){this.emit(A.KEYUP,v(e.keyCode))}}class C extends g{constructor(){super("stage"),this.root=new y,super.add(this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}hasElement(e){for(const t of this.collection)if(t.node===e)return!0;return!1}getElement(e){for(const t of this.collection)if(t.node===e)return t;const t=new T(e);return this.add(t),h.debug(`add element [${t.id}] ${t.html}`),t}getProxy(e){if(!this.hasElement(e))return null;return this.getElement(e).proxy}add(e){super.add(e),this.put(e,this.root)}put(e,t){let s=0;for(let i=t.children.length-1;i>-1;i--){const n=t.children[i],r=e.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(e,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)t.removeChild(n),e.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){s=i+1;break}}t.addChild(e,s)}activate(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})}deactivate(){this.observer.disconnect()}mutate(e){const t=[];e.forEach((e=>{switch(e.type){case"childList":e.removedNodes.forEach((e=>this.dispose(e))),e.addedNodes.forEach((e=>this.parse(e)));break;case"attributes":if(this.hasElement(e.target)){const s=this.getElement(e.target);s.prepare(e.attributeName),-1===t.indexOf(s)&&t.push(s);for(const e of s.descendants)-1===t.indexOf(e)&&t.push(e)}-1===this.modifications.indexOf(e.target)&&this.modifications.push(e.target)}})),t.forEach((e=>e.examine())),this.modifications.length&&!this.willModify&&(this.willModify=!0,window.requestAnimationFrame(this.modifying))}modify(){this.willModify=!1;const e=this.modifications.slice();this.modifications.length=0;for(const t of e)document.documentElement.contains(t)&&this.parse(t)}dispose(e){const t=[];this.forEach((s=>{e.contains(s.node)&&t.push(s)}));for(const e of t)e.dispose(),this.remove(e)}parse(t,s,i){const n=s?[s]:e.getModule("register").collection,r=[];for(const e of n){const s=e.parse(t,i);for(const t of s){const s=this.getElement(t);s.project(e),-1===r.indexOf(s)&&r.push(s)}}for(const e of r)e.populate()}}class N extends g{constructor(){super("render"),this.rendering=this.render.bind(this),this.nexts=new u}activate(){window.requestAnimationFrame(this.rendering)}request(e){this.nexts.add(e)}render(){if(!e.isActive)return;if(window.requestAnimationFrame(this.rendering),this.forEach((e=>e.render())),!this.nexts.length)return;const t=this.nexts.clone();this.nexts.clear(),t.forEach((e=>e.next()))}}class w extends g{constructor(){super("resize"),this.requireResize=!1,this.resizing=this.resize.bind(this);const e=this.request.bind(this);document.fonts&&document.fonts.ready.then(e),window.addEventListener("resize",e),window.addEventListener("orientationchange",e)}activate(){this.request()}request(){this.requireResize||(this.requireResize=!0,window.requestAnimationFrame(this.resizing))}resize(){this.requireResize&&(this.forEach((e=>e.resize())),this.requireResize=!1)}}class D extends g{constructor(){super("lock"),this._isLocked=!1,this._scrollY=0,this.onPopulate=this.lock.bind(this),this.onEmpty=this.unlock.bind(this)}get isLocked(){return this._isLocked}lock(){if(!this._isLocked){this._isLocked=!0,this._scrollY=window.scrollY;const e=window.innerWidth-document.documentElement.clientWidth;document.documentElement.setAttribute(p.attr("scrolling"),"false"),document.body.style.top=-this._scrollY+"px",this.behavior=getComputedStyle(document.documentElement).getPropertyValue("scroll-behavior"),"smooth"===this.behavior&&(document.documentElement.style.scrollBehavior="auto"),e>0&&document.documentElement.style.setProperty("--scrollbar-width",`${e}px`)}}unlock(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(p.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"))}move(e){this._isLocked?(this._scrollY+=e,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+e)}}class R extends g{constructor(){super("load"),this.loading=this.load.bind(this)}activate(){window.addEventListener("load",this.loading)}load(){this.forEach((e=>e.load()))}}const L=["Marianne","Spectral"];class I extends g{constructor(){super("font-swap"),this.swapping=this.swap.bind(this)}activate(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)}swap(){const e=L.filter((e=>document.fonts.check(`16px ${e}`)));this.forEach((t=>t.swapFont(e)))}}class x extends g{constructor(){super("mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}listen(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))}unlisten(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))}request(e){this._isMoving&&(this.point={x:e.clientX,y:e.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))}move(){this.requireMove&&(this.forEach((e=>e.mouseMove(this.point))),this.requireMove=!1)}}class O extends g{constructor(){super("hash"),this.handling=this.handle.bind(this),this.getLocationHash()}activate(){window.addEventListener("hashchange",this.handling)}deactivate(){window.removeEventListener("hashchange",this.handling)}_sanitize(e){return"#"===e.charAt(0)?e.substring(1):e}set hash(e){const t=this._sanitize(e);this._hash!==t&&(window.location.hash=t)}get hash(){return this._hash}getLocationHash(){const e=window.location.hash;this._hash=this._sanitize(e)}handle(e){this.getLocationHash(),this.forEach((t=>t.handleHash(this._hash,e)))}}const P=new class{constructor(){e.create(E),e.create(C),e.create(N),e.create(w),e.create(D),e.create(R),e.create(I),e.create(x),e.create(O);const t=e.getModule("register");this.register=t.register.bind(t)}get isActive(){return e.isActive}start(){h.debug("START"),e.isActive=!0}stop(){h.debug("STOP"),e.isActive=!1}};const k=e=>{switch(!0){case e.hover:return"-hover";case e.active:return"-active";default:return""}},M=new class{getColor(e,t,s,i={}){const n=`--${e}-${t}-${s}${k(i)}`;return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null}},G=e=>"."===e.charAt(0)?e.substr(1):e,$=e=>{switch(!0){case!e.className:return[];case"string"==typeof e.className:return e.className.split(" ");case"string"==typeof e.className.baseVal:return e.className.baseVal.split(" ")}return[]},H=(e,t,s)=>{t=G(t);const i=$(e),n=i.indexOf(t);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(t),e.className=i.join(" ")},U=(e,t)=>H(e,t),B=(e,t)=>H(e,t,!0),F=(e,t)=>$(e).indexOf(G(t))>-1,W=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),q=e=>e.querySelectorAll(W);let z=0;const j=e=>{if(!document.getElementById(e))return e;let t=!0;const s=e;for(;t;)z++,e=`${s}-${z}`,t=document.getElementById(e);return e},V={addClass:U,hasClass:F,removeClass:B,queryParentSelector:_,querySelectorAllArray:m,queryActions:q,uniqueId:j};const K={DataURISVG:class{constructor(e=0,t=0){this._width=e,this._height=t,this._content=""}get width(){return this._width}set width(e){this._width=e}get height(){return this._height}set height(e){this._height=e}get content(){return this._content}set content(e){this._content=e}getDataURI(e=!1){let t=`${this._content}`;return t=t.replace(/#/gi,"%23"),e&&(t=t.replace(//gi,"%3E"),t=t.replace(/"/gi,"'"),t=t.replace(/{/gi,"%7B"),t=t.replace(/}/gi,"%7D")),`data:image/svg+xml;charset=utf8,${t}`}}},Y={supportLocalStorage:()=>{try{return"localStorage"in window&&null!==window.localStorage}catch(e){return!1}},supportAspectRatio:()=>!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")},X={TransitionSelector:{NONE:p.selector("transition-none")}},Q=(e,...t)=>(t.forEach((t=>{const s=Object.keys(t).reduce(((e,s)=>(e[s]=Object.getOwnPropertyDescriptor(t,s),e)),{});Object.getOwnPropertySymbols(t).forEach((e=>{const i=Object.getOwnPropertyDescriptor(t,e);i.enumerable&&(s[e]=i)})),Object.defineProperties(e,s)})),e),J={completeAssign:Q},Z={},ee={};Object.defineProperty(ee,"isLegacy",{get:()=>e.isLegacy}),ee.setLegacy=()=>{e.isLegacy=!0},Z.legacy=ee,Z.dom=V,Z.image=K,Z.support=Y,Z.motion=X,Z.property=J,Z.ns=p,Z.register=P.register,Z.state=e,Z.query=(e=>{if(e&&e.search){const e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null})(window.location),Object.defineProperty(Z,"preventManipulation",{get:()=>d.preventManipulation}),Object.defineProperty(Z,"stage",{get:()=>e.getModule("stage")});const te=t=>e.getModule("stage").getProxy(t);te.version=n,te.prefix=t,te.organisation=i,te.Modes=l,Object.defineProperty(te,"mode",{set:e=>{d.mode=e},get:()=>d.mode}),te.internals=Z,te.version=n,te.start=P.start,te.stop=P.stop,te.inspector=h,te.colors=M;const se=window[s];te.internals.configuration=se,d.configure(se,te.start,te.internals.query),window[s]=te;class ie{constructor(){this.emissions={}}add(e,t){if("function"!=typeof t)throw new Error("closure must be a function");this.emissions[e]||(this.emissions[e]=[]),this.emissions[e].push(t)}remove(e,t){if(this.emissions[e])if(t){const s=this.emissions[e].indexOf(t);s>-1&&this.emissions[e].splice(s)}else delete this.emissions[e]}emit(e,t){if(!this.emissions[e])return[];const s=[];for(const i of this.emissions[e])i&&s.push(i(t));return s}dispose(){this.emissions=null}}class ne{constructor(e,t){this.id=e,this.minWidth=t}test(){return window.matchMedia(`(min-width: ${this.minWidth}em)`).matches}}const re={XS:new ne("xs",0),SM:new ne("sm",36),MD:new ne("md",48),LG:new ne("lg",62),XL:new ne("xl",78)};class ae{constructor(e=!0){this.jsAttribute=e,this._isRendering=!1,this._isResizing=!1,this._isScrollLocked=!1,this._isLoading=!1,this._isSwappingFont=!1,this._isEnabled=!0,this._isDisposed=!1,this._listeners={},this._handlingClick=this.handleClick.bind(this),this._hashes=[],this._hash="",this._keyListenerTypes=[],this._keys=[],this.handlingKey=this.handleKey.bind(this),this._emitter=new ie,this._ascent=new ie,this._descent=new ie,this._registrations=[],this._nexts=[]}static get instanceClassName(){return"Instance"}_config(e,t){this.element=e,this.registration=t,this.node=e.node,this.id=e.node.id,this.jsAttribute&&this.setAttribute(t.attribute,!0),this.init()}init(){}get proxy(){const e=this;return Q({render:()=>e.render(),resize:()=>e.resize()},{get node(){return this.node},get isEnabled(){return e.isEnabled},set isEnabled(t){e.isEnabled=t}})}log(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.log.apply(h,e)}debug(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.debug.apply(h,e)}info(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.info.apply(h,e)}warn(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.warn.apply(h,e)}error(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.error.apply(h,e)}register(t,s){const i=e.getModule("register").register(t,s,this);this._registrations.push(i)}getRegisteredInstances(e){for(const t of this._registrations)if(t.hasInstanceClassName(e))return t.instances.collection;return[]}dispatch(e,t,s,i){const n=new CustomEvent(e,{detail:t,bubble:!0===s,cancelable:!0===i});this.node.dispatchEvent(n)}listen(e,t,s){this._listeners[e]||(this._listeners[e]=[]);const i=this._listeners[e],n=new he(this.node,e,t,s);i.push(n),n.listen()}unlisten(e,t,s){if(!e){for(const e in this._listeners)this.unlisten(e);return}const i=this._listeners[e];if(!i)return;if(!t)return void i.forEach((t=>this.unlisten(e,t.closure)));const n=i.filter((e=>e.closure===t&&e.matchOptions(s)));n.forEach((e=>e.unlisten())),this._listeners[e]=i.filter((e=>-1===n.indexOf(e)))}listenClick(e){this.listen("click",this._handlingClick,e)}unlistenClick(e){this.unlisten("click",this._handlingClick,e)}handleClick(e){}set hash(t){e.getModule("hash").hash=t}get hash(){return e.getModule("hash").hash}listenHash(t,s){if(!this._hashes)return;0===this._hashes.length&&e.add("hash",this);const i=new ce(t,s);this._hashes=this._hashes.filter((e=>e.hash!==t)),this._hashes.push(i)}unlistenHash(t){this._hashes&&(this._hashes=this._hashes.filter((e=>e.hash!==t)),0===this._hashes.length&&e.remove("hash",this))}handleHash(e,t){if(this._hashes)for(const s of this._hashes)s.handle(e,t)}listenKey(e,t,s=!1,i=!1,n="down"){-1===this._keyListenerTypes.indexOf(n)&&(this.listen(`key${n}`,this.handlingKey),this._keyListenerTypes.push(n)),this._keys.push(new oe(n,e,t,s,i))}unlistenKey(e,t){this._keys=this._keys.filter((s=>s.code!==e||s.closure!==t)),this._keyListenerTypes.forEach((e=>{this._keys.some((t=>t.type===e))||this.unlisten(`key${e}`,this.handlingKey)}))}handleKey(e){for(const t of this._keys)t.handle(e)}get isEnabled(){return this._isEnabled}set isEnabled(e){this._isEnabled=e}get isRendering(){return this._isRendering}set isRendering(t){this._isRendering!==t&&(t?e.add("render",this):e.remove("render",this),this._isRendering=t)}render(){}request(t){this._nexts.push(t),e.getModule("render").request(this)}next(){const e=this._nexts.slice();this._nexts.length=0;for(const t of e)t&&t()}get isResizing(){return this._isResizing}set isResizing(t){this._isResizing!==t&&(t?(e.add("resize",this),this.resize()):e.remove("resize",this),this._isResizing=t)}resize(){}isBreakpoint(e){return!0==("string"==typeof e)?re[e.toUpperCase()].test():e.test()}get isScrollLocked(){return this._isScrollLocked}set isScrollLocked(t){this._isScrollLocked!==t&&(t?e.add("lock",this):e.remove("lock",this),this._isScrollLocked=t)}get isLoading(){return this._isLoading}set isLoading(t){this._isLoading!==t&&(t?e.add("load",this):e.remove("load",this),this._isLoading=t)}load(){}get isSwappingFont(){return this._isSwappingFont}set isSwappingFont(t){this._isSwappingFont!==t&&(t?e.add("font-swap",this):e.remove("font-swap",this),this._isSwappingFont=t)}swapFont(){}get isMouseMoving(){return this._isMouseMoving}set isMouseMoving(t){this._isMouseMoving!==t&&(t?e.add("mouse-move",this):e.remove("mouse-move",this),this._isMouseMoving=t)}mouseMove(e){}examine(e){this.node.matches(this.registration.selector)?this.mutate(e):this._dispose()}mutate(e){}retrieveNodeId(e,t){if(e.id)return e.id;const s=j(`${this.id}-${t}`);return this.warn(`add id '${s}' to ${t}`),e.setAttribute("id",s),s}get isDisposed(){return this._isDisposed}_dispose(){this.debug(`dispose instance of ${this.registration.instanceClassName} on element [${this.element.id}]`),this.removeAttribute(this.registration.attribute),this.unlisten(),e.remove("hash",this),this._hashes=null,this._keys=null,this.isRendering=!1,this.isResizing=!1,this._nexts=null,e.getModule("render").nexts.remove(this),this.isScrollLocked=!1,this.isLoading=!1,this.isSwappingFont=!1,this.isMouseMoving=!1,this._emitter.dispose(),this._emitter=null,this._ascent.dispose(),this._ascent=null,this._descent.dispose(),this._descent=null,this.element.remove(this);for(const t of this._registrations)e.remove("register",t);this._registrations=null,this.registration.remove(this),this._isDisposed=!0,this.dispose()}dispose(){}emit(e,t){return this.element.emit(e,t)}addEmission(e,t){this._emitter.add(e,t)}removeEmission(e,t){this._emitter.remove(e,t)}ascend(e,t){return this.element.ascend(e,t)}addAscent(e,t){this._ascent.add(e,t)}removeAscent(e,t){this._ascent.remove(e,t)}descend(e,t){return this.element.descend(e,t)}addDescent(e,t){this._descent.add(e,t)}removeDescent(e,t){this._descent.remove(e,t)}get style(){return this.node.style}addClass(e){U(this.node,e)}removeClass(e){B(this.node,e)}hasClass(e){return F(this.node,e)}get classNames(){return $(this.node)}remove(){this.node.parentNode.removeChild(this.node)}setAttribute(e,t){this.node.setAttribute(e,t)}getAttribute(e){return this.node.getAttribute(e)}hasAttribute(e){return this.node.hasAttribute(e)}removeAttribute(e){this.node.removeAttribute(e)}setProperty(e,t){this.node.style.setProperty(e,t)}removeProperty(e){this.node.style.removeProperty(e)}focus(){this.node.focus()}blur(){this.node.blur()}focusClosest(){const e=this._focusClosest(this.node.parentNode);e&&e.focus()}_focusClosest(e){if(!e)return null;const t=[...q(e)];if(t.length<=1)return this._focusClosest(e.parentNode);{const e=t.indexOf(this.node);return t[e+(ewindow.innerHeight&&s.move(t.bottom-window.innerHeight+50)}matches(e){return this.node.matches(e)}querySelector(e){return this.node.querySelector(e)}querySelectorAll(e){return m(this.node,e)}queryParentSelector(e){return _(this.node,e)}getRect(){const e=this.node.getBoundingClientRect();return e.center=e.left+.5*e.width,e.middle=e.top+.5*e.height,e}get isLegacy(){return e.isLegacy}}class oe{constructor(e,t,s,i,n){this.type=e,this.eventType=`key${e}`,this.keyCode=t,this.closure=s,this.preventDefault=!0===i,this.stopPropagation=!0===n}handle(e){e.type===this.eventType&&e.keyCode===this.keyCode.value&&(this.closure(e),this.preventDefault&&e.preventDefault(),this.stopPropagation&&e.stopPropagation())}}class he{constructor(e,t,s,i){this._node=e,this._type=t,this._closure=s,this._options=i}get closure(){return this._closure}listen(){this._node.addEventListener(this._type,this._closure,this._options)}matchOptions(e=null){switch(!0){case null===e:case"boolean"==typeof this._options&&"boolean"==typeof e&&this._options===e:return!0;case Object.keys(this._options).length!==Object.keys(e).length:return!1;case Object.keys(e).every((t=>this._options[t]===e[t])):return!0}return!1}unlisten(){this._node.removeEventListener(this._type,this._closure,this._options)}}class ce{constructor(e,t){this.hash=e,this.add=t}handle(e,t){this.hash===e&&this.add(t)}}const le={DISCLOSE:p.event("disclose"),CONCEAL:p.event("conceal")},de={RESET:p.emission("disclosure","reset"),ADDED:p.emission("disclosure","added"),RETRIEVE:p.emission("disclosure","retrieve"),REMOVED:p.emission("disclosure","removed"),GROUP:p.emission("disclosure","group"),UNGROUP:p.emission("disclosure","ungroup"),SPOTLIGHT:p.emission("disclosure","spotlight")};class ue extends ae{constructor(e,t,s,i){super(),this.type=e,this._selector=t,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}static get instanceClassName(){return"Disclosure"}init(){this.addDescent(de.RESET,this.reset.bind(this)),this.addDescent(de.GROUP,this.update.bind(this)),this.addDescent(de.UNGROUP,this.update.bind(this)),this.addAscent(de.SPOTLIGHT,this.disclose.bind(this)),this.register(`[aria-controls="${this.id}"]`,this.DisclosureButtonInstanceClass),this.ascend(de.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()}get isEnabled(){return super.isEnabled}set isEnabled(e){this.isEnabled!==e&&(super.isEnabled=e,e?this.ascend(de.ADDED):this.ascend(de.REMOVED))}get isPristine(){return this._isPristine}get proxy(){const e=this,t=Object.assign(super.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});this.type.canConceal&&(t.conceal=e.conceal.bind(e));return Q(t,{get buttons(){return e.buttons.map((e=>e.proxy))},get group(){const t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})}get buttons(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)}update(){this.getGroup(),this.retrievePrimaries()}getGroup(){if(!this.disclosuresGroupInstanceClassName)return void(this._group=null);const e=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);e&&e.validate(this)?this._group=e:this._group=null}get group(){return this._group}disclose(e){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!e&&this.group&&(this.group.current=this),!0)}conceal(e,t=!0){return!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!e&&this.group&&this.group.current===this&&(this.group.current=null),t||this.focus(),this._isPristine||this.descend(de.RESET),!0))}get isDisclosed(){return this._isDisclosed}set isDisclosed(e){if(this._isDisclosed!==e&&(this.isEnabled||!0!==e)){this.dispatch(e?le.DISCLOSE:le.CONCEAL,this.type),this._isDisclosed=e,e?this.addClass(this.modifier):this.removeClass(this.modifier);for(let t=0;te.isInitiallyDisclosed))}hasRetrieved(){return this._hasRetrieved}reset(){}toggle(e){if(this.type.canConceal)switch(!0){case!e:case this.isDisclosed:this.conceal(!1,!1);break;default:this.disclose()}else this.disclose()}get buttonHasFocus(){return this.buttons.some((e=>e.hasFocus))}get hasFocus(){return!!super.hasFocus||(!!this.buttonHasFocus||this.querySelectorAll(":focus").length>0)}focus(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()}get primaryButtons(){return this._primaryButtons}retrievePrimaries(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))}_retrievePrimaries(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}}retrieved(){}_spotlight(){this.disclose(),this.request((()=>{this.ascend(de.SPOTLIGHT)}))}_electPrimaries(e){return e.filter((e=>e.canDisclose&&!this.node.contains(e.node)))}applyAbility(e=!1){const t=!this._primaryButtons.every((e=>e.isDisabled));this.isEnabled!==t&&(this.isEnabled=t,e||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(de.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(de.ADDED),this.hash===this.id&&this._spotlight())))}dispose(){this._group=null,this._primaryButtons=null,super.dispose(),this.ascend(de.REMOVED)}}class ge extends ae{constructor(e){super(),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:p.attr(e.id),this._canDisclose=!1}static get instanceClassName(){return"DisclosureButton"}get isPrimary(){return this.registration.creator.primaryButtons.includes(this)}get canDisclose(){return this._canDisclose}get isDisabled(){return this.type.canDisable&&this.hasAttribute("disabled")}init(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()}get proxy(){return Object.assign(super.proxy,{focus:this.focus.bind(this)})}handleClick(e){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)}mutate(e){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&e.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())}apply(e){this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,e),this.request((()=>{this._isApplying=!1})))}get isDisclosed(){return"true"===this.getAttribute(this.attributeName)}get isInitiallyDisclosed(){return this._isInitiallyDisclosed}focus(){super.focus(),this.scrollIntoView()}measure(e){const t=this.rect;this._dx=e.x-t.x,this._dy=e.y-t.y}get dx(){return this._dx}get dy(){return this._dy}}const pe={PREVENT_CONCEAL:p.attr.selector("prevent-conceal"),GROUP:p.attr("group")};class me extends ae{constructor(e,t){super(t),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}static get instanceClassName(){return"DisclosuresGroup"}init(){this.addAscent(de.ADDED,this.update.bind(this)),this.addAscent(de.RETRIEVE,this.retrieve.bind(this)),this.addAscent(de.REMOVED,this.update.bind(this)),this.descend(de.GROUP),this._isGrouped="false"!==this.getAttribute(pe.GROUP),this.update()}get proxy(){const e=this,t={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){const t=e.current;return t?t.proxy:null},get members(){return e.members.map((e=>e.proxy))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return Q(super.proxy,t)}validate(e){return!0}getMembers(){const e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((e=>e.isEnabled));e.filter((e=>!this._members.includes(e))).forEach((e=>e.conceal()))}retrieve(e=!1){this._isRetrieving||this._hasRetrieved&&!e||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))}_retrieve(){if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.hash)for(let e=0;e{this.ascend(de.SPOTLIGHT)})),e}for(let e=0;e=this.length||e===this._index)){this._index=e;for(let t=0;tt.map((t=>p.selector(`${e}--${t}`))).join(","),we=`${p.selector("responsive-img")}, ${Ne("responsive-img",Ce)}, ${p.selector("responsive-vid")}, ${Ne("responsive-vid",["16x9","4x3","1x1"])}`,De={RATIO:`${p.selector("ratio")}, ${Ne("ratio",Ce)}, ${we}`},Re=window[s];const Le={TOP:p.selector("placement--top"),RIGHT:p.selector("placement--right"),BOTTOM:p.selector("placement--bottom"),LEFT:p.selector("placement--left")},Ie={START:p.selector("placement--start"),CENTER:p.selector("placement--center"),END:p.selector("placement--end")},xe={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},Oe={START:"align_start",CENTER:"align_center",END:"align_end"},Pe={AUTO:"placement_auto",MANUAL:"placement_manual"};te.core={Instance:ae,Breakpoints:re,KeyCodes:S,Disclosure:ue,DisclosureButton:ge,DisclosuresGroup:me,DisclosureType:_e,DisclosureEvent:le,DisclosureSelector:pe,DisclosureEmission:de,Collapse:class extends ue{constructor(){super(_e.EXPAND,Ee.COLLAPSE,be,"CollapsesGroup")}static get instanceClassName(){return"Collapse"}init(){super.init(),this.listen("transitionend",this.endCollapsing.bind(this))}endCollapsing(e){this._isCollpasing&&(this._timeout&&clearTimeout(this._timeout),this._timeout=null,this._isCollpasing=!1,this.removeClass(Ee.COLLAPSING),this.isDisclosed||this.isLegacy&&(this.style.maxHeight=""))}unbound(){this.isLegacy&&(this.style.maxHeight="none")}disclose(e){if(!0===this.isDisclosed||!this.isEnabled)return!1;this.unbound(),this.collapsing((()=>super.disclose(e)))}conceal(e,t){if(!1===this.isDisclosed)return!1;this.collapsing((()=>super.conceal(e,t)))}collapsing(e){this._isCollpasing=!0,this._timeout&&clearTimeout(this._timeout),this.addClass(Ee.COLLAPSING),this.adjust(),this.request((()=>{e(),this._timeout=setTimeout(this.endCollapsing.bind(this),500)}))}adjust(){this.setProperty("--collapser","none");const e=this.node.offsetHeight;this.setProperty("--collapse",-e+"px"),this.setProperty("--collapser","")}reset(){this.isPristine||(this.isDisclosed=!1)}_electPrimaries(e){const t=this.element.parent.instances.map((e=>e.collapsePrimary)).filter((t=>void 0!==t&&e.indexOf(t)>-1));if(1===t.length)return t;if(1===(e=super._electPrimaries(e)).length)return e;const s=e.filter((e=>e.dy>=0));if(s.length>0&&(e=s),1===e.length)return e;const i=Math.min(...e.map((e=>e.dy))),n=e.filter((e=>e.dy===i));return n.length>0&&(e=n),1===e.length||e.sort(((e,t)=>Math.abs(t.dx)-Math.abs(e.dx))),e}},CollapseButton:be,CollapsesGroup:class extends me{constructor(){super("Collapse")}static get instanceClassName(){return"CollapsesGroup"}get canUngroup(){return!0}},CollapseSelector:Ee,RootSelector:{ROOT:":root"},RootEmission:A,Equisized:class extends ae{static get instanceClassName(){return"Equisized"}init(){this.ascend(fe.CHANGE)}measure(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width}adjust(e){this.isLegacy&&(this.style.width=`${e}px`)}dispose(){this.ascend(fe.CHANGE)}},EquisizedEmission:fe,Toggle:class extends ae{static get instanceClassName(){return"Toggle"}init(){this.pressed="true"===this.pressed,this.listenClick()}handleClick(){this.toggle()}toggle(){this.pressed="true"!==this.pressed}get pressed(){return this.getAttribute("aria-pressed")}set pressed(e){this.setAttribute("aria-pressed",e?"true":"false"),this.dispatch(Te.TOGGLE,e)}get proxy(){const e=this,t=Object.assign(super.proxy,{toggle:e.toggle.bind(e)});return Q(t,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})}},EquisizedsGroup:class extends ae{static get instanceClassName(){return"EquisizedsGroup"}init(){this.isResizing=!0,this.isLoading=!0,this.addAscent(fe.CHANGE,this.resize.bind(this))}load(){this.resize()}resize(){const e=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");const t=Math.max(...e.map((e=>e.measure())));this.isLegacy?e.forEach((e=>e.adjust(t))):this.style.setProperty("--equisized-width",`${t}px`)}},InjectSvg:class extends ae{static get instanceClassName(){return"InjectSvg"}init(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()}get proxy(){const e=this;return Object.assign(super.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})}fetch(){this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((e=>e.text())).then((e=>{const t=(new DOMParser).parseFromString(e,"text/html");this.svg=t.querySelector("svg"),this.svg&&this.replace()})))}replace(){if(!this.svg)return void this.fetch();this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);let e=this.imgURL.match(/[ \w-]+\./)[0];e&&(e=e.slice(0,-1),["dark","light","system"].includes(e)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-',`id="${e}-artwork-`),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-',`"#${e}-artwork-`))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var t,s;t=this.svg,s={"aria-hidden":!0,focusable:!1},Object.keys(s).forEach((e=>t.setAttribute(e,s[e]))),this.node.replaceChild(this.svg,this.img)}restore(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))}},InjectSvgSelector:Ae,Artwork:class extends ae{static get instanceClassName(){return"Artwork"}init(){this.isLegacy&&this.replace()}get proxy(){return Object.assign(super.proxy,{replace:this.replace.bind(this)})}fetch(){this.xlink=this.node.getAttribute("href");const e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];const t=new XMLHttpRequest;t.onload=()=>{const e=(new DOMParser).parseFromString(t.responseText,"text/html");this.realSvgContent=e.getElementById(this.svgName),this.realSvgContent&&("symbol"===this.realSvgContent.tagName?(this.use=e.querySelector('use[href="#'+this.svgName+'"]'),this.use&&this.node.parentNode.insertBefore(this.use,this.node)):this.realSvgContent.classList.add(this.node.classList),this.replace())},t.open("GET",this.svgUrl),t.send()}replace(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()}},ArtworkSelector:Se,AssessFile:class extends ae{static get instanceClassName(){return"AssessFile"}init(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(ye.ADDED,this.update.bind(this)),this.addDescent(ye.ADDED,this.update.bind(this))}getFileLength(){void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((e=>{this.length=e.headers.get("content-length")||-1,-1===this.length&&h.warn("File size unknown: "+this.href+'\nUnable to get HTTP header: "content-length"'),this.gather()})):this.length=-1}mutate(e){-1!==e.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==e.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())}gather(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){const e=this.parseExtension(this.href);e&&this.details.push(e.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()}update(){this.details&&(this.descend(ye.UPDATE,this.details),this.ascend(ye.UPDATE,this.details))}getLang(e){return e.lang?e.lang:document.documentElement===e?window.navigator.language:this.getLang(e.parentElement)}parseExtension(e){return e.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")}getLangDisplayName(e){if(this.isLegacy)return e;const t=new Intl.DisplayNames([this.lang],{type:"language"}).of(e);return t.charAt(0).toUpperCase()+t.slice(1)}bytesToSize(e){if(-1===e)return null;let t=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(p.attr("assess-file"))&&(t=["bytes","KB","MB","GB","TB"]);const s=parseInt(Math.floor(Math.log(e)/Math.log(1e3)),10);if(0===s)return`${e} ${t[s]}`;const i=e/1e3**s,n=Math.round(100*(i+Number.EPSILON))/100;return`${String(n).replace(".",",")} ${t[s]}`}},AssessDetail:class extends ae{static get instanceClassName(){return"AssessDetail"}init(){this.addDescent(ye.UPDATE,this.update.bind(this)),this.ascend(ye.ADDED)}update(e){this.node.innerHTML=e.join(" - ")}},AssessEmission:ye,AssessSelector:ve,Ratio:class extends ae{static get instanceClassName(){return"Ratio"}init(){if(!Re.internals.support.supportAspectRatio()){this.ratio=16/9;for(const e in this.classNames)if(this.registration.selector.indexOf(this.classNames[e])>0){const t=this.classNames[e].split("ratio-");t[1]&&(this.ratio=t[1].split("x")[0]/t[1].split("x")[1])}this.isRendering=!0,this.update()}}render(){this.getRect().width!==this.currentWidth&&this.update()}update(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"}},RatioSelector:De,Placement:class extends ae{constructor(e=Pe.AUTO,t=[xe.BOTTOM,xe.TOP,xe.LEFT,xe.RIGHT],s=[Oe.CENTER,Oe.START,Oe.END],i=16){super(),this._mode=e,this._places=t,this._aligns=s,this._safeAreaMargin=i,this._isShown=!1}static get instanceClassName(){return"Placement"}init(){this.isResizing=!0}get proxy(){const e=this,t=Object.assign(super.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return Q(t,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})}get mode(){return this._mode}set mode(e){this._mode=e}get place(){return this._place}set place(e){if(this._place!==e){switch(this._place){case xe.TOP:this.removeClass(Le.TOP);break;case xe.RIGHT:this.removeClass(Le.RIGHT);break;case xe.BOTTOM:this.removeClass(Le.BOTTOM);break;case xe.LEFT:this.removeClass(Le.LEFT)}switch(this._place=e,this._place){case xe.TOP:this.addClass(Le.TOP);break;case xe.RIGHT:this.addClass(Le.RIGHT);break;case xe.BOTTOM:this.addClass(Le.BOTTOM);break;case xe.LEFT:this.addClass(Le.LEFT)}}}get align(){return this._align}set align(e){if(this._align!==e){switch(this._align){case Oe.START:this.removeClass(Ie.START);break;case Oe.CENTER:this.removeClass(Ie.CENTER);break;case Oe.END:this.removeClass(Ie.END)}switch(this._align=e,this._align){case Oe.START:this.addClass(Ie.START);break;case Oe.CENTER:this.addClass(Ie.CENTER);break;case Oe.END:this.addClass(Ie.END)}}}show(){this.isShown=!0}hide(){this.isShown=!1}get isShown(){return this._isShown}set isShown(e){this._isShown!==e&&this.isEnabled&&(this.isRendering=e,this._isShown=e)}setReferent(e){this._referent=e}resize(){this.safeArea={top:this._safeAreaMargin,right:window.innerWidth-this._safeAreaMargin,bottom:window.innerHeight-this._safeAreaMargin,left:this._safeAreaMargin,center:.5*window.innerWidth,middle:.5*window.innerHeight}}render(){if(!this._referent)return;if(this.rect=this.getRect(),this.referentRect=this._referent.getRect(),this.mode===Pe.AUTO)switch(this.place=this.getPlace(),this.place){case xe.TOP:case xe.BOTTOM:this.align=this.getHorizontalAlign();break;case xe.LEFT:case xe.RIGHT:this.align=this.getVerticalAlign()}let e,t;switch(this.place){case xe.TOP:t=this.referentRect.top-this.rect.height;break;case xe.RIGHT:e=this.referentRect.right;break;case xe.BOTTOM:t=this.referentRect.bottom;break;case xe.LEFT:e=this.referentRect.left-this.rect.width}switch(this.place){case xe.TOP:case xe.BOTTOM:switch(this.align){case Oe.CENTER:e=this.referentRect.center-.5*this.rect.width;break;case Oe.START:e=this.referentRect.left;break;case Oe.END:e=this.referentRect.right-this.rect.width}break;case xe.RIGHT:case xe.LEFT:switch(this.align){case Oe.CENTER:t=this.referentRect.middle-.5*this.rect.height;break;case Oe.START:t=this.referentRect.top;break;case Oe.END:t=this.referentRect.bottom-this.rect.height}}this._x===e&&this._y===t||(this._x=e+.5|0,this._y=t+.5|0,this.node.style.transform=`translate(${this._x}px,${this._y}px)`)}getPlace(){for(const e of this._places)switch(e){case xe.TOP:if(this.referentRect.top-this.rect.height>this.safeArea.top)return xe.TOP;break;case xe.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return xe.LEFT}return this._places[0]}getHorizontalAlign(){for(const e of this._aligns)switch(e){case Oe.CENTER:if(this.referentRect.center-.5*this.rect.width>this.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return Oe.END}return this._aligns[0]}getVerticalAlign(){for(const e of this._aligns)switch(e){case Oe.CENTER:if(this.referentRect.middle-.5*this.rect.height>this.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return Oe.END}return this._aligns[0]}dispose(){this._referent=null,super.dispose()}},PlacementReferent:class extends ae{constructor(){super(),this._isShown=!1}static get instanceClassName(){return"PlacementReferent"}init(){this.registration.creator.setReferent(this),this._placement=this.registration.creator}get placement(){return this._placement}get isShown(){return this._isShown}set isShown(e){this._isShown!==e&&this.isEnabled&&(this._isShown=e,e?this.registration.creator.show():this.registration.creator.hide())}show(){this.isShown=!0}hide(){this.isShown=!1}},PlacementAlign:Oe,PlacementPosition:xe,PlacementMode:Pe},te.internals.register(te.core.CollapseSelector.COLLAPSE,te.core.Collapse),te.internals.register(te.core.InjectSvgSelector.INJECT_SVG,te.core.InjectSvg),te.internals.register(te.core.RatioSelector.RATIO,te.core.Ratio),te.internals.register(te.core.AssessSelector.ASSESS_FILE,te.core.AssessFile),te.internals.register(te.core.AssessSelector.DETAIL,te.core.AssessDetail);const ke={SYSTEM:"system",LIGHT:"light",DARK:"dark"},Me={THEME:Re.internals.ns.attr("theme"),SCHEME:Re.internals.ns.attr("scheme"),TRANSITION:Re.internals.ns.attr("transition")},Ge={LIGHT:"light",DARK:"dark"},$e={SCHEME:Re.internals.ns.emission("scheme","scheme"),THEME:Re.internals.ns.emission("scheme","theme"),ASK:Re.internals.ns.emission("scheme","ask")},He={SCHEME:Re.internals.ns.event("scheme"),THEME:Re.internals.ns.event("theme")};class Ue extends Re.core.Instance{constructor(){super(!1)}static get instanceClassName(){return"Scheme"}init(){this.changing=this.change.bind(this),this.hasAttribute(Me.TRANSITION)&&(this.removeAttribute(Me.TRANSITION),this.request(this.restoreTransition.bind(this)));const e=Re.internals.support.supportLocalStorage()?localStorage.getItem("scheme"):"",t=this.getAttribute(Me.SCHEME);switch(e){case ke.DARK:case ke.LIGHT:case ke.SYSTEM:this.scheme=e;break;default:switch(t){case ke.DARK:this.scheme=ke.DARK;break;case ke.LIGHT:this.scheme=ke.LIGHT;break;default:this.scheme=ke.SYSTEM}}this.addAscent($e.ASK,this.ask.bind(this)),this.addAscent($e.SCHEME,this.apply.bind(this))}get proxy(){const e=this,t={get scheme(){return e.scheme},set scheme(t){e.scheme=t}};return Re.internals.property.completeAssign(super.proxy,t)}restoreTransition(){this.setAttribute(Me.TRANSITION,"")}ask(){this.descend($e.SCHEME,this.scheme)}apply(e){this.scheme=e}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e){switch(this._scheme=e,e){case ke.SYSTEM:this.listenPreferences();break;case ke.DARK:this.unlistenPreferences(),this.theme=Ge.DARK;break;case ke.LIGHT:this.unlistenPreferences(),this.theme=Ge.LIGHT;break;default:return void(this.scheme=ke.SYSTEM)}this.descend($e.SCHEME,e),Re.internals.support.supportLocalStorage()&&localStorage.setItem("scheme",e),this.setAttribute(Me.SCHEME,e),this.dispatch(He.SCHEME,{scheme:this._scheme})}}get theme(){return this._theme}set theme(e){if(this._theme!==e)switch(e){case Ge.LIGHT:case Ge.DARK:this._theme=e,this.setAttribute(Me.THEME,e),this.descend($e.THEME,e),this.dispatch(He.THEME,{theme:this._theme}),document.documentElement.style.colorScheme=e===Ge.DARK?"dark":""}}listenPreferences(){this.isListening||(this.isListening=!0,this.mediaQuery=window.matchMedia("(prefers-color-scheme: dark)"),this.mediaQuery.addEventListener&&this.mediaQuery.addEventListener("change",this.changing),this.change())}unlistenPreferences(){this.isListening&&(this.isListening=!1,this.mediaQuery.removeEventListener("change",this.changing),this.mediaQuery=null)}change(){this.isListening&&(this.theme=this.mediaQuery.matches?Ge.DARK:Ge.LIGHT)}mutate(e){e.indexOf(Me.SCHEME)>-1&&(this.scheme=this.getAttribute(Me.SCHEME)),e.indexOf(Me.THEME)>-1&&(this.theme=this.getAttribute(Me.THEME))}dispose(){this.unlistenPreferences()}}const Be={SCHEME:`:root${Re.internals.ns.attr.selector("theme")}, :root${Re.internals.ns.attr.selector("scheme")}`,SWITCH_THEME:Re.internals.ns.selector("switch-theme"),RADIO_BUTTONS:`input[name="${Re.internals.ns("radios-theme")}"]`};Re.scheme={Scheme:Ue,SchemeValue:ke,SchemeSelector:Be,SchemeEmission:$e,SchemeTheme:Ge,SchemeEvent:He},Re.internals.register(Re.scheme.SchemeSelector.SCHEME,Re.scheme.Scheme);const Fe=Re.internals.ns.selector("accordion"),We=Re.internals.ns.selector("collapse"),qe={GROUP:Re.internals.ns.selector("accordions-group"),ACCORDION:Fe,COLLAPSE:`${Fe} > ${We}, ${Fe} > *:not(${Fe}):not(${We}) > ${We}, ${Fe} > *:not(${Fe}):not(${We}) > *:not(${Fe}):not(${We}) > ${We}`,COLLAPSE_LEGACY:`${Fe} ${We}`,BUTTON:`${Fe}__btn`};class ze extends Re.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(qe.BUTTON)))[0]}}class je extends Re.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(e){const t=e.node.matches(Re.internals.legacy.isLegacy?qe.COLLAPSE_LEGACY:qe.COLLAPSE);return super.validate(e)&&t}}Re.accordion={Accordion:ze,AccordionSelector:qe,AccordionsGroup:je},Re.internals.register(Re.accordion.AccordionSelector.GROUP,Re.accordion.AccordionsGroup),Re.internals.register(Re.accordion.AccordionSelector.ACCORDION,Re.accordion.Accordion);const Ve={EQUISIZED_BUTTON:`${Re.internals.ns.selector("btns-group--equisized")} ${Re.internals.ns.selector("btn")}`,EQUISIZED_GROUP:Re.internals.ns.selector("btns-group--equisized")};Re.button={ButtonSelector:Ve},Re.internals.register(Re.button.ButtonSelector.EQUISIZED_BUTTON,Re.core.Equisized),Re.internals.register(Re.button.ButtonSelector.EQUISIZED_GROUP,Re.core.EquisizedsGroup);class Ke extends Re.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(Re.core.AssessEmission.UPDATE,(e=>{this.descend(Re.core.AssessEmission.UPDATE,e)})),this.addAscent(Re.core.AssessEmission.ADDED,(()=>{this.descend(Re.core.AssessEmission.ADDED)}))}}const Ye={DOWNLOAD:Re.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${Re.internals.ns.selector("card--download")} ${Re.internals.ns.selector("card__end")} ${Re.internals.ns.selector("card__detail")}`};Re.card={CardSelector:Ye,CardDownload:Ke},Re.internals.register(Re.card.CardSelector.DOWNLOAD,Re.card.CardDownload),Re.internals.register(Re.card.CardSelector.DOWNLOAD_DETAIL,Re.core.AssessDetail);const Xe={INPUT:`${Re.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},Qe={CHANGE:Re.internals.ns.emission("checkbox","change"),RETRIEVE:Re.internals.ns.emission("checkbox","retrieve")};class Je extends Re.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(Qe.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(Qe.CHANGE,this.node)}}Re.checkbox={CheckboxSelector:Xe,CheckboxEmission:Qe,CheckboxInput:Je},Re.internals.register(Re.checkbox.CheckboxSelector.INPUT,Re.checkbox.CheckboxInput);const Ze={SEGMENTED:Re.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:Re.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:Re.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:Re.internals.ns.selector("segmented__legend")},et={ADDED:Re.internals.ns.emission("segmented","added"),REMOVED:Re.internals.ns.emission("segmented","removed")};class tt extends Re.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(Ze.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(Ze.SEGMENTED_LEGEND),this.addAscent(et.ADDED,this.resize.bind(this)),this.addAscent(et.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${Re.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const e=`${Re.prefix}-segmented--vertical`,t=`${Re.prefix}-segmented__legend--inline`;this.removeClass(e),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(e):this.removeClass(e)}}class st extends Re.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(et.ADDED)}dispose(){this.ascend(et.REMOVED)}}Re.segmented={SegmentedSelector:Ze,SegmentedEmission:et,SegmentedElement:st,Segmented:tt},Re.internals.register(Re.segmented.SegmentedSelector.SEGMENTED,Re.segmented.Segmented),Re.internals.register(Re.segmented.SegmentedSelector.SEGMENTED_ELEMENT,Re.segmented.SegmentedElement);const it={BREADCRUMB:Re.internals.ns.selector("breadcrumb"),BUTTON:Re.internals.ns.selector("breadcrumb__button")};class nt extends Re.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const e=this;return Object.assign(super.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(Re.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(Re.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(Re.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(Re.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const e=this.links[0];e&&(e.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const e=this.links[0];e&&document.activeElement!==e&&this._focus()}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(it.BUTTON)))[0]}}Re.breadcrumb={BreadcrumbSelector:it,Breadcrumb:nt},Re.internals.register(Re.breadcrumb.BreadcrumbSelector.BREADCRUMB,Re.breadcrumb.Breadcrumb);const rt={TOOLTIP:Re.internals.ns.selector("tooltip"),SHOWN:Re.internals.ns.selector("tooltip--shown"),BUTTON:Re.internals.ns.selector("btn--tooltip")},at=1,ot=2;class ht extends Re.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(rt.BUTTON)){const e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);const t=this.mouseout.bind(this);this.listen("mouseout",t),this.placement.listen("mouseout",t)}this.addEmission(Re.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(Re.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(e){this.node.contains(e)||this.blur()}_keydown(e){if(e===Re.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(e){this._state!==e&&(this.isShown=e>0,this._state=e)}focusIn(){this.state|=at}focusOut(){this.state&=~at}mouseover(){this.state|=ot}mouseout(){this.state&=~ot}}const ct={SHOW:p.event("show"),HIDE:p.event("hide")},lt="hidden",dt="shown",ut="hiding";class gt extends Re.core.Placement{constructor(){super(Re.core.PlacementMode.AUTO,[Re.core.PlacementPosition.TOP,Re.core.PlacementPosition.BOTTOM],[Re.core.PlacementAlign.CENTER,Re.core.PlacementAlign.START,Re.core.PlacementAlign.END]),this.modifier="",this._state=lt}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,ht),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===ut&&(this._state=lt,this.isShown=!1)}get isShown(){return super.isShown}set isShown(e){if(this.isEnabled)switch(!0){case e:this._state=dt,this.addClass(rt.SHOWN),this.dispatch(ct.SHOW),super.isShown=!0;break;case this.isShown&&!e&&this._state===dt:this._state=ut,this.removeClass(rt.SHOWN);break;case this.isShown&&!e&&this._state===lt:this.dispatch(ct.HIDE),super.isShown=!1}}render(){super.render();let e=this.referentRect.center-this.rect.center;const t=.5*this.rect.width-8;e<-t&&(e=-t),e>t&&(e=t),this.setProperty("--arrow-x",`${e.toFixed(2)}px`)}}Re.tooltip={Tooltip:gt,TooltipSelector:rt,TooltipEvent:ct},Re.internals.register(Re.tooltip.TooltipSelector.TOOLTIP,Re.tooltip.Tooltip);class pt extends Re.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class mt extends Re.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,pt),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const i=getComputedStyle(this.node,":before"),n=parseFloat(i.width);n>s&&(s=n),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const _t={STATUS_LABEL:`${Re.internals.ns.selector("toggle__label")}${Re.internals.ns.attr.selector("checked-label")}${Re.internals.ns.attr.selector("unchecked-label")}`};Re.toggle={ToggleStatusLabel:mt,ToggleSelector:_t},Re.internals.register(Re.toggle.ToggleSelector.STATUS_LABEL,Re.toggle.ToggleStatusLabel);const bt=Re.internals.ns.selector("sidemenu__item"),Et=Re.internals.ns.selector("collapse"),ft={LIST:Re.internals.ns.selector("sidemenu__list"),COLLAPSE:`${bt} > ${Et}, ${bt} > *:not(${bt}):not(${Et}) > ${Et}, ${bt} > *:not(${bt}):not(${Et}) > *:not(${bt}):not(${Et}) > ${Et}`,COLLAPSE_LEGACY:`${bt} ${Et}`,ITEM:Re.internals.ns.selector("sidemenu__item"),BUTTON:Re.internals.ns.selector("sidemenu__btn")};class Tt extends Re.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(e){return super.validate(e)&&e.node.matches(Re.internals.legacy.isLegacy?ft.COLLAPSE_LEGACY:ft.COLLAPSE)}}class At extends Re.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(ft.BUTTON)))[0]}}Re.sidemenu={SidemenuList:Tt,SidemenuItem:At,SidemenuSelector:ft},Re.internals.register(Re.sidemenu.SidemenuSelector.LIST,Re.sidemenu.SidemenuList),Re.internals.register(Re.sidemenu.SidemenuSelector.ITEM,Re.sidemenu.SidemenuItem);const St={MODAL:Re.internals.ns.selector("modal"),SCROLL_DIVIDER:Re.internals.ns.selector("scroll-divider"),BODY:Re.internals.ns.selector("modal__body"),TITLE:Re.internals.ns.selector("modal__title")};class vt extends Re.core.DisclosureButton{constructor(){super(Re.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const yt={CONCEALING_BACKDROP:Re.internals.ns.attr("concealing-backdrop")};class Ct extends Re.core.Disclosure{constructor(){super(Re.core.DisclosureType.OPENED,St.MODAL,vt,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(Re.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===Re.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(e){e.target===this.node&&"false"!==this.getAttribute(yt.CONCEALING_BACKDROP)&&this.conceal()}disclose(e){return!!super.disclose(e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(e,t){return!!super.conceal(e,t)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(e){this._isDialog=e}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(e,t){const s=this.retrieveNodeId(e,t);this.warn(`add reference to ${t} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",s)}_ensureAccessibleName(){if(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label"))return;this.warn("missing accessible name");const e=this.node.querySelector(St.TITLE),t=this.primaryButtons[0];switch(!0){case null!==e:this._setAccessibleName(e,"title");break;case void 0!==t:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(t,"primary")}}}const Nt=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),wt=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),Dt=(e,t)=>{if(!(e instanceof Element))return!1;const s=window.getComputedStyle(e);if(!s)return!1;if("hidden"===s.visibility)return!1;for(void 0===t&&(t=e);t.contains(e);){if("none"===s.display)return!1;e=e.parentElement}return!0};class Rt{constructor(e,t){this.element=null,this.activeElement=null,this.onTrap=e,this.onUntrap=t,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(e){this.trapped&&this.untrap(),this.element=e,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){Dt(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const e=this.focusables;e.length&&-1===e.indexOf(document.activeElement)&&e[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(e){for(const t of e.children)t!==this.element&&(t.contains(this.element)?this.stun(t):this.stunneds.push(new Lt(t)))}maintainFocus(e){if(!this.element.contains(e.target)){const t=this.focusables;if(0===t.length)return;const s=t[0];e.preventDefault(),s.focus()}}handle(e){if(9!==e.keyCode)return;const t=this.focusables;if(0===t.length)return;const s=t[0],i=t[t.length-1],n=t.indexOf(document.activeElement);e.shiftKey?!this.element.contains(document.activeElement)||n<1?(e.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||t[n-1].tabIndex>0)&&(e.preventDefault(),t[n-1].focus()):this.element.contains(document.activeElement)&&n!==t.length-1&&-1!==n?document.activeElement.tabIndex>0&&(e.preventDefault(),t[n+1].focus()):(e.preventDefault(),s.focus())}get focusables(){let e=Re.internals.dom.querySelectorAllArray(this.element,Nt);const t=Re.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(t.length){const s={};for(const e of t){const t=e.getAttribute("name");void 0===s[t]&&(s[t]=new It(t)),s[t].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||"radio"!==e.getAttribute("type").toLowerCase())return!0;const t=e.getAttribute("name");return s[t].keep(e)}))}const s=Re.internals.dom.querySelectorAllArray(this.element,wt);s.sort(((e,t)=>e.tabIndex-t.tabIndex));const i=e.filter((e=>-1===s.indexOf(e)));return s.concat(i).filter((e=>"-1"!==e.tabIndex&&Dt(e,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class Lt{constructor(e){this.element=e,this.inert=e.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class It{constructor(e){this.name=e,this.buttons=[]}push(e){this.buttons.push(e),(e===document.activeElement||e.checked||void 0===this.selected)&&(this.selected=e)}keep(e){return this.selected===e}}class xt extends Re.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new Rt}static get instanceClassName(){return"ModalsGroup"}apply(e,t){super.apply(e,t),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class Ot extends Re.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(St.SCROLL_DIVIDER):this.addClass(St.SCROLL_DIVIDER):this.removeClass(St.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(Re.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}Re.modal={Modal:Ct,ModalButton:vt,ModalBody:Ot,ModalsGroup:xt,ModalSelector:St},Re.internals.register(Re.modal.ModalSelector.MODAL,Re.modal.Modal),Re.internals.register(Re.modal.ModalSelector.BODY,Re.modal.ModalBody),Re.internals.register(Re.core.RootSelector.ROOT,Re.modal.ModalsGroup);const Pt={TOGGLE:Re.internals.ns.emission("password","toggle"),ADJUST:Re.internals.ns.emission("password","adjust")};class kt extends Re.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(Pt.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const e=getComputedStyle(this.node.parentNode);return parseInt(e.width)}get isChecked(){return this.node.checked}set isChecked(e){this._isChecked=e,this.ascend(Pt.TOGGLE,e)}handleClick(){this.isChecked=!this._isChecked}swapFont(e){this.ascend(Pt.ADJUST,this.width)}}class Mt extends Re.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(Pt.TOGGLE,this.toggle.bind(this)),this.addAscent(Pt.ADJUST,this.adjust.bind(this))}toggle(e){this.descend(Pt.TOGGLE,e)}adjust(e){this.descend(Pt.ADJUST,e)}}const Gt={PASSWORD:Re.internals.ns.selector("password"),INPUT:Re.internals.ns.selector("password__input"),LABEL:Re.internals.ns.selector("password__label"),TOOGLE:`${Re.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class $t extends Re.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(Pt.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(e){this.isRevealed=e,this.setAttribute("type",e?"text":"password")}get isRevealed(){return this._isRevealed}capslock(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(Re.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(Re.internals.ns.attr("capslock")))}set isRevealed(e){this._isRevealed=e,this.setAttribute("type",e?"text":"password")}}class Ht extends Re.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(Pt.ADJUST,this.adjust.bind(this))}adjust(e){const t=Math.ceil(e/16);this.node.style.paddingRight=t+"rem"}}Re.password={Password:Mt,PasswordToggle:kt,PasswordSelector:Gt,PasswordInput:$t,PasswordLabel:Ht},Re.internals.register(Re.password.PasswordSelector.INPUT,Re.password.PasswordInput),Re.internals.register(Re.password.PasswordSelector.PASSWORD,Re.password.Password),Re.internals.register(Re.password.PasswordSelector.TOOGLE,Re.password.PasswordToggle),Re.internals.register(Re.password.PasswordSelector.LABEL,Re.password.PasswordLabel);const Ut=Re.internals.ns.selector("nav__item"),Bt=Re.internals.ns.selector("collapse"),Ft={NAVIGATION:Re.internals.ns.selector("nav"),COLLAPSE:`${Ut} > ${Bt}, ${Ut} > *:not(${Ut}):not(${Bt}) > ${Bt}, ${Ut} > *:not(${Ut}):not(${Bt}) > *:not(${Ut}):not(${Bt}) > ${Bt}`,COLLAPSE_LEGACY:`${Ut} ${Bt}`,ITEM:Ut,ITEM_RIGHT:`${Ut}--align-right`,MENU:Re.internals.ns.selector("menu"),BUTTON:Re.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:Re.internals.ns.selector("translate__btn")};class Wt extends Re.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(Re.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(Re.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(Re.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(Re.core.Breakpoints.LG)&&e.element.node.matches(Ft.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,i=this.element.node.getBoundingClientRect().left;this.isRightAligned=i+s>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?Re.internals.dom.addClass(this.element.node,Ft.ITEM_RIGHT):Re.internals.dom.removeClass(this.element.node,Ft.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&(e.hasClass(Ft.BUTTON)||e.hasClass(Ft.TRANSLATE_BUTTON))))[0]}}const qt={NONE:-1,INSIDE:0,OUTSIDE:1};class zt extends Re.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(Re.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(Re.internals.legacy.isLegacy?Ft.COLLAPSE_LEGACY:Ft.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(Re.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?qt.INSIDE:qt.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(Re.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(Re.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case qt.OUTSIDE:this.index=-1;break;case qt.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=qt.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=e}get canUngroup(){return!this.isBreakpoint(Re.core.Breakpoints.LG)}resize(){this.update()}}Re.navigation={Navigation:zt,NavigationItem:Wt,NavigationMousePosition:qt,NavigationSelector:Ft},Re.internals.register(Re.navigation.NavigationSelector.NAVIGATION,Re.navigation.Navigation),Re.internals.register(Re.navigation.NavigationSelector.ITEM,Re.navigation.NavigationItem);class jt extends Re.core.DisclosureButton{constructor(){super(Re.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(e){super.handleClick(e),this.focus()}apply(e){super.apply(e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const Vt={TAB:Re.internals.ns.selector("tabs__tab"),GROUP:Re.internals.ns.selector("tabs"),PANEL:Re.internals.ns.selector("tabs__panel"),LIST:Re.internals.ns.selector("tabs__list"),SHADOW:Re.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:Re.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:Re.internals.ns.selector("tabs__shadow--right"),PANEL_START:Re.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:Re.internals.ns.selector("tabs__panel--direction-end")},Kt="direction-start",Yt="direction-end",Xt="none";class Qt extends Re.core.Disclosure{constructor(){super(Re.core.DisclosureType.SELECT,Vt.PANEL,jt,"TabsGroup"),this._direction=Xt,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(e){if(e!==this._direction){switch(this._direction){case Kt:this.removeClass(Vt.PANEL_START);break;case Yt:this.removeClass(Vt.PANEL_END);break;case Xt:break;default:return}switch(this._direction=e,this._direction){case Kt:this.addClass(Vt.PANEL_START);break;case Yt:this.addClass(Vt.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(e){this._isPreventingTransition!==e&&(e?this.addClass(Re.internals.motion.TransitionSelector.NONE):this.removeClass(Re.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)}translate(e,t){this.isPreventingTransition=t,this.direction=e}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(e){return this.group&&this.group.list?super._electPrimaries(e).filter((e=>this.group.list.node.contains(e.node))):[]}}const Jt="tab_keys_left",Zt="tab_keys_right",es="tab_keys_home",ts="tab_keys_end",ss={PRESS_KEY:Re.internals.ns.emission("tab","press_key"),LIST_HEIGHT:Re.internals.ns.emission("tab","list_height")};class is extends Re.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(ss.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(ss.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(e=0){super.getIndex(e)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(e){this.listHeight=e}transitionend(e){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((e=>e.buttonHasFocus))}pressKey(e){switch(e){case Jt:this.pressLeft();break;case Zt:this.pressRight();break;case es:this.pressHome();break;case ts:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let e=0;es.right&&this.node.scrollTo(i-s.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.apply())}apply(){this._isScrolling?(this.addClass(Vt.SHADOW),this.scroll()):(this.removeClass(Vt.SHADOW_RIGHT),this.removeClass(Vt.SHADOW_LEFT),this.removeClass(Vt.SHADOW))}scroll(){const e=this.node.scrollLeft,t=e<=16,s=this.node.scrollWidth-this.node.clientWidth-16,i=Math.abs(e)>=s,n="rtl"===document.documentElement.getAttribute("dir"),r=n?Vt.SHADOW_RIGHT:Vt.SHADOW_LEFT,a=n?Vt.SHADOW_LEFT:Vt.SHADOW_RIGHT;t?this.removeClass(r):this.addClass(r),i?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const e=this.getRect().height;this.setProperty("--tabs-list-height",`${e}px`),this.ascend(ss.LIST_HEIGHT,e)}dispose(){this.isScrolling=!1}}Re.tab={TabPanel:Qt,TabButton:jt,TabsGroup:is,TabsList:ns,TabSelector:Vt,TabEmission:ss},Re.internals.register(Re.tab.TabSelector.PANEL,Re.tab.TabPanel),Re.internals.register(Re.tab.TabSelector.GROUP,Re.tab.TabsGroup),Re.internals.register(Re.tab.TabSelector.LIST,Re.tab.TabsList);const rs={DISMISS:Re.internals.ns.event("dismiss")};class as extends Re.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),Re.mode){case Re.Modes.ANGULAR:case Re.Modes.REACT:case Re.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(rs.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${Re.mode} mode, the api doesn't handle dom modification. An event ${rs.DISMISS} is dispatched by the element to trigger the removal`)}}const os={PRESSABLE:`${Re.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${Re.internals.ns.selector("tag--dismiss")}`};Re.tag={TagDismissible:as,TagSelector:os,TagEvent:rs},Re.internals.register(Re.tag.TagSelector.PRESSABLE,Re.core.Toggle),Re.internals.register(Re.tag.TagSelector.DISMISSIBLE,Re.tag.TagDismissible);const hs=Re.internals.ns.selector("transcription"),cs={TRANSCRIPTION:hs,BUTTON:`${hs}__btn`};class ls extends Re.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(cs.BUTTON)))[0]}}Re.transcription={Transcription:ls,TranscriptionSelector:cs},Re.internals.register(Re.transcription.TranscriptionSelector.TRANSCRIPTION,Re.transcription.Transcription);class ds extends Re.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(Re.core.AssessEmission.UPDATE,(e=>{this.descend(Re.core.AssessEmission.UPDATE,e)})),this.addAscent(Re.core.AssessEmission.ADDED,(()=>{this.descend(Re.core.AssessEmission.ADDED)}))}}const us={DOWNLOAD:Re.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${Re.internals.ns.selector("tile--download")} ${Re.internals.ns.selector("tile__detail")}`};Re.tile={TileSelector:us,TileDownload:ds},Re.internals.register(Re.tile.TileSelector.DOWNLOAD,Re.tile.TileDownload),Re.internals.register(Re.tile.TileSelector.DOWNLOAD_DETAIL,Re.core.AssessDetail);const gs={RANGE:Re.internals.ns.selector("range"),RANGE_SM:Re.internals.ns.selector("range--sm"),RANGE_STEP:Re.internals.ns.selector("range--step"),RANGE_DOUBLE:Re.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:Re.internals.ns.selector("range--double")+Re.internals.ns.selector("range--step"),RANGE_INPUT:Re.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${Re.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:Re.internals.ns.selector("range__output"),RANGE_MIN:Re.internals.ns.selector("range__min"),RANGE_MAX:Re.internals.ns.selector("range__max"),RANGE_PREFIX:Re.internals.ns.attr("prefix"),RANGE_SUFFIX:Re.internals.ns.attr("suffix")},ps={VALUE:Re.internals.ns.emission("range","value"),VALUE2:Re.internals.ns.emission("range","value2"),OUTPUT:Re.internals.ns.emission("range","output"),CONSTRAINTS:Re.internals.ns.emission("range","constraints"),MIN:Re.internals.ns.emission("range","min"),MAX:Re.internals.ns.emission("range","max"),STEP:Re.internals.ns.emission("range","step"),PREFIX:Re.internals.ns.emission("range","prefix"),SUFFIX:Re.internals.ns.emission("range","suffix"),DISABLED:Re.internals.ns.emission("range","disabled"),ENABLE_POINTER:Re.internals.ns.emission("range","enable_pointer")};class ms{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(e){e&&(this._prefix=e._prefix,this._suffix=e._suffix,this._width=e.width,this.setConstraints(e._constraints),this.value=e.value,this.update())}setPrefix(e){this._prefix=null!==e?e:""}setSuffix(e){this._suffix=null!==e?e:""}_decorate(e){return`${this._prefix}${e}${this._suffix}`}get width(){return this._width}set width(e){this._width=e}get isSm(){return this._isSm}set isSm(e){this._isSm!==e&&(this._isSm=e,this.setThumbSize(e?16:24),this.update())}setThumbSize(e,t=1){this._thumbSize=e,this._innerPadding=e*t}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(e){this._value=e}get outputX(){return this._outputX}setConstraints(e){this._constraints=e,this._min=e.min,this._max=e.max,this._step=e.step,this._rangeWidth=e.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(e){return(e-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const e=this._getRatio(this._value);this._translateX=e*this._width,this._centerPercent=100*e,this._progress={right:`${(this._innerWidth*e+.5*this._innerPadding).toFixed(2)}px`}}}class _s extends ms{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class bs extends ms{get value2(){return this._value}set value2(e){this._value2!==e&&(this._value2=e,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(e){super.setThumbSize(e,2)}_update(){super._update();const e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;const t=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*t+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class Es extends bs{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const fs="step",Ts="double",As="double-step",Ss="default";class vs extends Re.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(ps.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(ps.VALUE,this.setValue.bind(this)),this.addAscent(ps.VALUE2,this.setValue2.bind(this)),this.getAttribute(gs.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(gs.RANGE_PREFIX)),this.getAttribute(gs.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(gs.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(gs.RANGE_DOUBLE_STEP):case this.matches(gs.RANGE_DOUBLE):this.type=Ts;break;case this.matches(gs.RANGE_STEP):this.type=fs;break;default:this.type=Ss}}set type(e){if(this._type===e)return;this._type=e;const t=this._model;switch(this._type){case As:this._model=new Es;break;case Ts:this._model=new bs;break;case fs:this._model=new _s;break;default:this._model=new ms}this._model.configure(t)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(gs.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(e){switch(this._model.value=e,this._type){case As:case Ts:this.descend(ps.VALUE,e)}this.update()}setValue2(e){this._model.value2=e,this.descend(ps.VALUE2,e),this.update()}setConstraints(e){this._model.setConstraints(e),this.update(),this.descend(ps.CONSTRAINTS,e)}setPrefix(e){this._model.setPrefix(e),this.update()}setSuffix(e){this._model.setSuffix(e),this.update()}mutate(e){switch(!0){case e.includes("class"):this._retrieveType(),this._retrieveSize();break;case e.includes(gs.RANGE_PREFIX):case e.includes(gs.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(gs.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(gs.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(ps.OUTPUT,this._model.output),this.descend(ps.MIN,this._model.textMin),this.descend(ps.MAX,this._model.textMax);const e=this._model.progress;e.left?this.style.setProperty("--progress-left",e.left):this.style.removeProperty("--progress-left"),e.right?(this.style.setProperty("--progress-right",e.right),this.isLegacy&&e.left&&(this.style.setProperty("background-position-x",e.left),this.style.setProperty("background-size",`${parseFloat(e.right)-parseFloat(e.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(e){if(this._type!==Ts&&this._type!==As)return;const t=e.x-this.getRect().left;this.descend(ps.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(ps.CONSTRAINTS,new ys(this.node)),this.ascend(ps.DISABLED,this.node.disabled)})),this.addDescent(ps.VALUE2,this.setValue.bind(this))}_enablePointer(e){const t=e===this._pointerId;this._isPointerEnabled!==t&&(this._isPointerEnabled=t,t?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}setValue(e){parseFloat(this.node.value)>e&&(this.node.value=e,this.dispatch("change",void 0,!0),this.change())}change(){this.ascend(ps.VALUE,parseFloat(this.node.value))}mutate(e){e.includes("disabled")&&this.ascend(ps.DISABLED,this.node.disabled),(e.includes("min")||e.includes("max")||e.includes("step"))&&(this.ascend(ps.CONSTRAINTS,new ys(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class Ns extends Re.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(ps.OUTPUT,this.change.bind(this))}change(e){this.node.innerText=e.text,this.node.style.transform=e.transform}}class ws extends Re.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(gs.RANGE_MIN):this.addDescent(ps.MIN,this.change.bind(this));break;case this.matches(gs.RANGE_MAX):this.addDescent(ps.MAX,this.change.bind(this))}}change(e){this.node.innerText=e}}Re.range={Range:vs,RangeInput:Cs,RangeInput2:class extends Cs{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(ps.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(ps.VALUE,this.setValue.bind(this))}setValue(e){parseFloat(this.node.value)e.replace('id="',"").replace('"',"")));const r=s.match(/aria-controls="(.*?)"/gm);let a=s.replace(/id="(.*?)"/gm,'id="$1'+t+'"');if(r)for(const e of r){const s=e.replace('aria-controls="',"").replace('"',"");n.includes(s)&&(a=a.replace(`aria-controls="${s}"`,`aria-controls="${s+t}"`))}if(a!==i)switch(Re.mode){case Re.Modes.ANGULAR:case Re.Modes.REACT:case Re.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${Re.header.doc}`);break;default:this.menuLinks.innerHTML=a}}}class Ls extends Re.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.isResizing=!0}resize(){this.isBreakpoint(Re.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.unlistenClick({capture:!0}))}handleClick(e){if(e.target.matches("a, button")&&!e.target.matches("[aria-controls]")&&!e.target.matches(Re.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}Re.header={HeaderLinks:Rs,HeaderModal:Ls,HeaderSelector:Ds,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},Re.internals.register(Re.header.HeaderSelector.TOOLS_LINKS,Re.header.HeaderLinks),Re.internals.register(Re.header.HeaderSelector.MODALS,Re.header.HeaderModal);const Is={DISPLAY:Re.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${Re.internals.ns("radios-theme")}"]`,FIELDSET:Re.internals.ns.selector("fieldset")};class xs extends Re.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(Is.RADIO_BUTTONS),Re.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(Re.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(Re.scheme.SchemeEmission.ASK)}else this.querySelector(Is.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e&&Re.scheme)switch(e){case Re.scheme.SchemeValue.SYSTEM:case Re.scheme.SchemeValue.LIGHT:case Re.scheme.SchemeValue.DARK:this._scheme=e;for(const t of this.radios)t.checked=t.value===e;this.ascend(Re.scheme.SchemeEmission.SCHEME,e)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}Re.display={Display:xs,DisplaySelector:Is},Re.internals.register(Re.display.DisplaySelector.DISPLAY,Re.display.Display);const Os={SCROLLABLE:Re.internals.ns.emission("table","scrollable"),CHANGE:Re.internals.ns.emission("table","change"),CAPTION_HEIGHT:Re.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:Re.internals.ns.emission("table","captionwidth")};class Ps extends Re.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(Os.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class ks extends Re.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(Os.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(Os.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const Ms={TABLE:Re.internals.ns.selector("table"),TABLE_WRAPPER:[`${Re.internals.ns.selector("table")} ${Re.internals.ns.selector("table__wrapper")}`],SHADOW:Re.internals.ns.selector("table__shadow"),SHADOW_LEFT:Re.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:Re.internals.ns.selector("table__shadow--right"),ELEMENT:[`${Re.internals.ns.selector("table")}:not(${Re.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${Re.internals.ns.selector("table")} table caption`,ROW:`${Re.internals.ns.selector("table")} tbody tr`,COL:`${Re.internals.ns.selector("table")} thead th`};class Gs extends Re.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(Ms.SHADOW),this.scroll()):(this.removeClass(Ms.SHADOW),this.removeClass(Ms.SHADOW_LEFT),this.removeClass(Ms.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),n=i?Ms.SHADOW_RIGHT:Ms.SHADOW_LEFT,r=i?Ms.SHADOW_LEFT:Ms.SHADOW_RIGHT;e?this.removeClass(n):this.addClass(n),s?this.removeClass(r):this.addClass(r)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class $s extends Re.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(Os.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}class Hs extends Re.core.Instance{static get instanceClassName(){return"TableRow"}init(){Re.checkbox&&(this.addAscent(Qe.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(Qe.RETRIEVE))}_handleCheckboxChange(e){"row-select"===e.name&&(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}Re.table={Table:Ps,TableWrapper:ks,TableElement:Gs,TableCaption:$s,TableSelector:Ms,TableRow:Hs},Re.internals.register(Re.table.TableSelector.TABLE,Re.table.Table),Re.internals.register(Re.table.TableSelector.TABLE_WRAPPER,Re.table.TableWrapper),Re.internals.register(Re.table.TableSelector.ELEMENT,Re.table.TableElement),Re.internals.register(Re.table.TableSelector.CAPTION,Re.table.TableCaption),Re.internals.register(Re.table.TableSelector.ROW,Re.table.TableRow); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const e=new class{constructor(){this.modules={}}create(e){const t=new e;this.modules[t.type]=t}getModule(e){return this.modules[e]}add(e,t){this.modules[e].add(t)}remove(e,t){this.modules[e].remove(t)}get isActive(){return this._isActive}set isActive(e){if(e===this._isActive)return;this._isActive=e;const t=Object.keys(this.modules).map((e=>this.modules[e]));if(e)for(const e of t)e.activate();else for(const e of t)e.deactivate()}get isLegacy(){return this._isLegacy}set isLegacy(e){e!==this._isLegacy&&(this._isLegacy=e)}},t="fr",s="dsfr",i="@gouvfr",n="1.13.0";class r{constructor(e,t,s,i){switch(this.level=e,this.light=t,this.dark=s,i){case"warn":this.logger=console.warn;break;case"error":this.logger=console.error;break;default:this.logger=console.log}}log(...e){const t=new a(s);for(const s of e)t.add(s);this.print(t)}print(e){e.setColor(this.color),this.logger.apply(console,e.getMessage())}get color(){return window.matchMedia("(prefers-color-scheme: dark)").matches?this.dark:this.light}}class a{constructor(e){this.inputs=["%c"],this.styles=["font-family:Marianne","line-height: 1.5"],this.objects=[],e&&this.add(`${e} :`)}add(e){switch(typeof e){case"object":case"function":this.inputs.push("%o "),this.objects.push(e);break;default:this.inputs.push(`${e} `)}}setColor(e){this.styles.push(`color:${e}`)}getMessage(){return[this.inputs.join(""),this.styles.join(";"),...this.objects]}}const o={log:new r(0,"#616161","#989898"),debug:new r(1,"#000091","#8B8BFF"),info:new r(2,"#007c3b","#00ed70"),warn:new r(3,"#ba4500","#fa5c00","warn"),error:new r(4,"#D80600","#FF4641","error")};const h=new class{constructor(){this.level=2;for(const e in o){const t=o[e];this[e]=(...e)=>{this.level<=t.level&&t.log.apply(t,e)},this[e].print=t.print.bind(t)}}state(){const t=new a;t.add(e),this.log.print(t)}tree(){const t=e.getModule("stage");if(!t)return;const s=new a;this._branch(t.root,0,s),this.log.print(s)}_branch(e,t,s){let i="";if(t>0){let e="";for(let s=0;s{"loading"!==document.readyState?window.requestAnimationFrame(e):document.addEventListener("DOMContentLoaded",e)},c={AUTO:"auto",MANUAL:"manual",RUNTIME:"runtime",LOADED:"loaded",VUE:"vue",ANGULAR:"angular",REACT:"react"},d=(e,t,s=null,i=!0,n=!1)=>{const r={bubbles:!0===i,cancelable:!0===n};s&&(r.detail=s);const a=new CustomEvent(t,r);e.dispatchEvent(a)},u=(e,t=null,s=!1,i=!1)=>d(document.documentElement,e,t,s,i),g=e=>`${t}-${e}`;g.selector=(e,t)=>(void 0===t&&(t="."),`${t}${g(e)}`),(g.attr=e=>`data-${g(e)}`).selector=(e,t)=>{let s=g.attr(e);return void 0!==t&&(s+=`="${t}"`),`[${s}]`},g.event=e=>`${s}.${e}`,g.emission=(e,t)=>`emission:${e}.${t}`;const p={READY:g.event("ready"),START:g.event("start"),STOP:g.event("stop"),RENDER:g.event("render"),RESIZE:g.event("resize"),BREAKPOINT:g.event("breakpoint"),SCROLL_LOCK:g.event("scroll-lock"),SCROLL_UNLOCK:g.event("scroll-unlock")};const m=new class{constructor(){this._mode=c.AUTO,this.isStarted=!1,this.starting=this.start.bind(this),this.preventManipulation=!1}configure(e={},t,s){this.startCallback=t;const i=e.production&&(!s||"false"!==s.production);switch(!0){case s&&!isNaN(s.level):h.level=Number(s.level);break;case s&&s.verbose&&("true"===s.verbose||1===s.verbose):h.level=0;break;case i:h.level=999;break;case e.verbose:h.level=0}h.info(`version ${n}`),u(p.READY),this.mode=e.mode||c.AUTO}set mode(e){switch(e){case c.AUTO:this.preventManipulation=!1,t=this.starting,l(t);break;case c.LOADED:this.preventManipulation=!1,l(this.starting);break;case c.RUNTIME:this.preventManipulation=!1,this.start();break;case c.MANUAL:this.preventManipulation=!1;break;case c.VUE:case c.ANGULAR:case c.REACT:this.preventManipulation=!0;break;default:return void h.error("Illegal mode")}var t;this._mode=e,h.info(`mode set to ${e}`)}get mode(){return this._mode}start(){h.info("start"),this.startCallback()}};class _{constructor(){this._collection=[]}forEach(e){this._collection.forEach(e)}map(e){return this._collection.map(e)}get length(){return this._collection.length}add(e){return!(this._collection.indexOf(e)>-1)&&(this._collection.push(e),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)}remove(e){const t=this._collection.indexOf(e);if(-1===t)return!1;this._collection.splice(t,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()}execute(...e){for(const t of this._collection)t&&t.apply(null,e)}clear(){this._collection.length=0}clone(){const e=new _;return e._collection=this._collection.slice(),e}get collection(){return this._collection}}class b extends _{constructor(e){super(),this.type=e,this.isActive=!1}activate(){}deactivate(){}}const E=(e,t)=>Array.prototype.slice.call(e.querySelectorAll(t)),f=(e,t)=>{const s=e.parentElement;return s.matches(t)?s:s===document.documentElement?null:f(s,t)};class A{constructor(e,t,s){this.selector=e,this.InstanceClass=t,this.creator=s,this.instances=new _,this.isIntroduced=!1,this._instanceClassName=this.InstanceClass.instanceClassName,this._instanceClassNames=this.getInstanceClassNames(this.InstanceClass),this._property=this._instanceClassName.substring(0,1).toLowerCase()+this._instanceClassName.substring(1);const i=this._instanceClassName.replace(/[^a-zA-Z0-9]+/g,"-").replace(/([A-Z]+)([A-Z][a-z])/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2").replace(/([0-9])([^0-9])/g,"$1-$2").replace(/([^0-9])([0-9])/g,"$1-$2").toLowerCase();this._attribute=g.attr(`js-${i}`)}getInstanceClassNames(e){const t=Object.getPrototypeOf(e);return t&&"Instance"!==t.instanceClassName?[...this.getInstanceClassNames(t),e.instanceClassName]:[e.instanceClassName]}hasInstanceClassName(e){return this._instanceClassNames.indexOf(e)>-1}introduce(){this.isIntroduced||(this.isIntroduced=!0,e.getModule("stage").parse(document.documentElement,this))}parse(e,t){const s=[];return e.matches&&e.matches(this.selector)&&s.push(e),!t&&e.querySelectorAll&&e.querySelector(this.selector)&&s.push.apply(s,E(e,this.selector)),s}create(e){if(!e.node.matches(this.selector))return;const t=new this.InstanceClass;return this.instances.add(t),t}remove(e){this.instances.remove(e)}dispose(){const e=this.instances.collection;for(let t=e.length-1;t>-1;t--)e[t]._dispose();this.creator=null}get instanceClassName(){return this._instanceClassName}get instanceClassNames(){return this._instanceClassNames}get property(){return this._property}get attribute(){return this._attribute}}class T extends b{constructor(){super("register")}register(t,s,i){const n=new A(t,s,i);return this.add(n),e.isActive&&n.introduce(),n}activate(){for(const e of this.collection)e.introduce()}remove(e){e.dispose(),super.remove(e)}}let S=0;class v{constructor(e,t){t?this.id=t:(S++,this.id=S),this.node=e,this.attributeNames=[],this.instances=[],this._children=[],this._parent=null,this._projects=[]}get proxy(){const e=this;if(!this._proxy){this._proxy={id:this.id,get parent(){return e.parent?e.parent.proxy:null},get children(){return e.children.map((e=>e.proxy))}};for(const e of this.instances)this._proxy[e.registration.property]=e.proxy}return this._proxy}get html(){if(!this.node||!this.node.outerHTML)return"";const e=this.node.outerHTML.indexOf(">");return this.node.outerHTML.substring(0,e+1)}project(e){-1===this._projects.indexOf(e)&&this._projects.push(e)}populate(){const e=this._projects.slice();this._projects.length=0;for(const t of e)this.create(t)}create(e){if(this.hasInstance(e.instanceClassName))return;h.debug(`create instance of ${e.instanceClassName} on element [${this.id}]`);const t=e.create(this);this.instances.push(t),t._config(this,e),this._proxy&&(this._proxy[e.property]=t.proxy)}remove(e){const t=this.instances.indexOf(e);t>-1&&this.instances.splice(t,1),this._proxy&&delete this._proxy[e.registration.property]}get parent(){return this._parent}get ascendants(){return[this.parent,...this.parent.ascendants]}get children(){return this._children}get descendants(){const e=[...this._children];return this._children.forEach((t=>e.push(...t.descendants))),e}addChild(e,t){return this._children.indexOf(e)>-1?null:(e._parent=this,!isNaN(t)&&t>-1&&t=0;e--){const t=this.instances[e];t&&t._dispose()}this.instances.length=0,e.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug(`remove element [${this.id}] ${this.html}`)}prepare(e){-1===this.attributeNames.indexOf(e)&&this.attributeNames.push(e)}examine(){const e=this.attributeNames.slice();this.attributeNames.length=0;for(let t=this.instances.length-1;t>-1;t--)this.instances[t].examine(e)}}const y={CLICK:g.emission("root","click"),KEYDOWN:g.emission("root","keydown"),KEYUP:g.emission("root","keyup")},C={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},N=e=>Object.values(C).filter((t=>t.value===e))[0];class R extends v{constructor(){super(document.documentElement,"root"),this.node.setAttribute(g.attr("js"),!0),this.listen()}listen(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})}click(e){this.emit(y.CLICK,e.target)}keydown(e){this.emit(y.KEYDOWN,N(e.keyCode))}keyup(e){this.emit(y.KEYUP,N(e.keyCode))}}class D extends b{constructor(){super("stage"),this.root=new R,super.add(this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}hasElement(e){for(const t of this.collection)if(t.node===e)return!0;return!1}getElement(e){for(const t of this.collection)if(t.node===e)return t;const t=new v(e);return this.add(t),h.debug(`add element [${t.id}] ${t.html}`),t}getProxy(e){if(!this.hasElement(e))return null;return this.getElement(e).proxy}add(e){super.add(e),this.put(e,this.root)}put(e,t){let s=0;for(let i=t.children.length-1;i>-1;i--){const n=t.children[i],r=e.node.compareDocumentPosition(n.node);if(r&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(e,n);if(r&Node.DOCUMENT_POSITION_CONTAINED_BY)t.removeChild(n),e.addChild(n,0);else if(r&Node.DOCUMENT_POSITION_PRECEDING){s=i+1;break}}t.addChild(e,s)}activate(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})}deactivate(){this.observer.disconnect()}mutate(e){const t=[];e.forEach((e=>{switch(e.type){case"childList":e.removedNodes.forEach((e=>this.dispose(e))),e.addedNodes.forEach((e=>this.parse(e)));break;case"attributes":if(this.hasElement(e.target)){const s=this.getElement(e.target);s.prepare(e.attributeName),-1===t.indexOf(s)&&t.push(s);for(const e of s.descendants)-1===t.indexOf(e)&&t.push(e)}-1===this.modifications.indexOf(e.target)&&this.modifications.push(e.target)}})),t.forEach((e=>e.examine())),this.modifications.length&&!this.willModify&&(this.willModify=!0,window.requestAnimationFrame(this.modifying))}modify(){this.willModify=!1;const e=this.modifications.slice();this.modifications.length=0;for(const t of e)document.documentElement.contains(t)&&this.parse(t)}dispose(e){const t=[];this.forEach((s=>{e.contains(s.node)&&t.push(s)}));for(const e of t)e.dispose(),this.remove(e)}parse(t,s,i){const n=s?[s]:e.getModule("register").collection,r=[];for(const e of n){const s=e.parse(t,i);for(const t of s){const s=this.getElement(t);s.project(e),-1===r.indexOf(s)&&r.push(s)}}for(const e of r)e.populate()}}class L extends b{constructor(){super("render"),this.rendering=this.render.bind(this),this.nexts=new _}activate(){window.requestAnimationFrame(this.rendering)}request(e){this.nexts.add(e)}render(){if(!e.isActive)return;if(window.requestAnimationFrame(this.rendering),this.forEach((e=>e.render())),!this.nexts.length)return;const t=this.nexts.clone();this.nexts.clear(),t.forEach((e=>e.next())),u(p.RENDER)}}class w extends b{constructor(){super("resize"),this.requireResize=!1,this.resizing=this.resize.bind(this);const e=this.request.bind(this);document.fonts&&document.fonts.ready.then(e),window.addEventListener("resize",e),window.addEventListener("orientationchange",e)}activate(){this.request()}request(){this.requireResize||(this.requireResize=!0,window.requestAnimationFrame(this.resizing))}resize(){this.requireResize&&(this.forEach((e=>e.resize())),this.requireResize=!1,u(p.RESIZE))}}class I extends b{constructor(){super("lock"),this._isLocked=!1,this._scrollY=0,this.onPopulate=this.lock.bind(this),this.onEmpty=this.unlock.bind(this)}get isLocked(){return this._isLocked}lock(){if(!this._isLocked){this._isLocked=!0,this._scrollY=window.scrollY;const e=window.innerWidth-document.documentElement.clientWidth;document.documentElement.setAttribute(g.attr("scrolling"),"false"),document.body.style.top=-this._scrollY+"px",this.behavior=getComputedStyle(document.documentElement).getPropertyValue("scroll-behavior"),"smooth"===this.behavior&&(document.documentElement.style.scrollBehavior="auto"),e>0&&document.documentElement.style.setProperty("--scrollbar-width",`${e}px`),u(p.SCROLL_LOCK)}}unlock(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(g.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"),u(p.SCROLL_UNLOCK))}move(e){this._isLocked?(this._scrollY+=e,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+e)}}class x extends b{constructor(){super("load"),this.loading=this.load.bind(this)}activate(){window.addEventListener("load",this.loading)}load(){this.forEach((e=>e.load()))}}const O=["Marianne","Spectral"];class P extends b{constructor(){super("font-swap"),this.swapping=this.swap.bind(this)}activate(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)}swap(){const e=O.filter((e=>document.fonts.check(`16px ${e}`)));this.forEach((t=>t.swapFont(e)))}}class k extends b{constructor(){super("mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}listen(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))}unlisten(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))}request(e){this._isMoving&&(this.point={x:e.clientX,y:e.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))}move(){this.requireMove&&(this.forEach((e=>e.mouseMove(this.point))),this.requireMove=!1)}}class M extends b{constructor(){super("hash"),this.handling=this.handle.bind(this),this.getLocationHash()}activate(){window.addEventListener("hashchange",this.handling)}deactivate(){window.removeEventListener("hashchange",this.handling)}_sanitize(e){return"#"===e.charAt(0)?e.substring(1):e}set hash(e){const t=this._sanitize(e);this._hash!==t&&(window.location.hash=t)}get hash(){return this._hash}getLocationHash(){const e=window.location.hash;this._hash=this._sanitize(e)}handle(e){this.getLocationHash(),this.forEach((t=>t.handleHash(this._hash,e)))}}const G=new class{constructor(){e.create(T),e.create(D),e.create(L),e.create(w),e.create(I),e.create(x),e.create(P),e.create(k),e.create(M);const t=e.getModule("register");this.register=t.register.bind(t)}get isActive(){return e.isActive}start(){h.debug("START"),e.isActive=!0,u(p.START)}stop(){h.debug("STOP"),e.isActive=!1,u(p.STOP)}};const $=e=>{switch(!0){case e.hover:return"-hover";case e.active:return"-active";default:return""}},H=new class{getColor(e,t,s,i={}){const n=`--${e}-${t}-${s}${$(i)}`;return getComputedStyle(document.documentElement).getPropertyValue(n).trim()||null}},U=e=>"."===e.charAt(0)?e.substr(1):e,B=e=>{switch(!0){case!e.className:return[];case"string"==typeof e.className:return e.className.split(" ");case"string"==typeof e.className.baseVal:return e.className.baseVal.split(" ")}return[]},F=(e,t,s)=>{t=U(t);const i=B(e),n=i.indexOf(t);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(t),e.className=i.join(" ")},W=(e,t)=>F(e,t),q=(e,t)=>F(e,t,!0),z=(e,t)=>B(e).indexOf(U(t))>-1,j=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),K=e=>e.querySelectorAll(j);let V=0;const Y=e=>{if(!document.getElementById(e))return e;let t=!0;const s=e;for(;t;)V++,e=`${s}-${V}`,t=document.getElementById(e);return e},X={addClass:W,hasClass:z,removeClass:q,queryParentSelector:f,querySelectorAllArray:E,queryActions:K,uniqueId:Y,dispatch:d};const Q={DataURISVG:class{constructor(e=0,t=0){this._width=e,this._height=t,this._content=""}get width(){return this._width}set width(e){this._width=e}get height(){return this._height}set height(e){this._height=e}get content(){return this._content}set content(e){this._content=e}getDataURI(e=!1){let t=`${this._content}`;return t=t.replace(/#/gi,"%23"),e&&(t=t.replace(//gi,"%3E"),t=t.replace(/"/gi,"'"),t=t.replace(/{/gi,"%7B"),t=t.replace(/}/gi,"%7D")),`data:image/svg+xml;charset=utf8,${t}`}}},Z={supportLocalStorage:()=>{try{return"localStorage"in window&&null!==window.localStorage}catch(e){return!1}},supportAspectRatio:()=>!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")},J={TransitionSelector:{NONE:g.selector("transition-none")}},ee=(e,...t)=>(t.forEach((t=>{const s=Object.keys(t).reduce(((e,s)=>(e[s]=Object.getOwnPropertyDescriptor(t,s),e)),{});Object.getOwnPropertySymbols(t).forEach((e=>{const i=Object.getOwnPropertyDescriptor(t,e);i.enumerable&&(s[e]=i)})),Object.defineProperties(e,s)})),e),te={completeAssign:ee},se={},ie={};Object.defineProperty(ie,"isLegacy",{get:()=>e.isLegacy}),ie.setLegacy=()=>{e.isLegacy=!0},se.legacy=ie,se.dom=X,se.image=Q,se.support=Z,se.motion=J,se.property=te,se.ns=g,se.register=G.register,se.state=e,se.query=(e=>{if(e&&e.search){const e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null})(window.location),Object.defineProperty(se,"preventManipulation",{get:()=>m.preventManipulation}),Object.defineProperty(se,"stage",{get:()=>e.getModule("stage")});const ne=t=>e.getModule("stage").getProxy(t);ne.version=n,ne.prefix=t,ne.organisation=i,ne.Modes=c,Object.defineProperty(ne,"mode",{set:e=>{m.mode=e},get:()=>m.mode}),ne.internals=se,ne.version=n,ne.start=G.start,ne.stop=G.stop,ne.inspector=h,ne.colors=H;const re=window[s];ne.internals.configuration=re,m.configure(re,ne.start,ne.internals.query),window[s]=ne;class ae{constructor(){this.emissions={}}add(e,t){if("function"!=typeof t)throw new Error("closure must be a function");this.emissions[e]||(this.emissions[e]=[]),this.emissions[e].push(t)}remove(e,t){if(this.emissions[e])if(t){const s=this.emissions[e].indexOf(t);s>-1&&this.emissions[e].splice(s)}else delete this.emissions[e]}emit(e,t){if(!this.emissions[e])return[];const s=[];for(const i of this.emissions[e])i&&s.push(i(t));return s}dispose(){this.emissions=null}}class oe{constructor(e,t){this.id=e,this.minWidth=t}test(){return window.matchMedia(`(min-width: ${this.minWidth}em)`).matches}}const he={XS:new oe("xs",0),SM:new oe("sm",36),MD:new oe("md",48),LG:new oe("lg",62),XL:new oe("xl",78)},le={CLICK:g.event("click")};class ce{constructor(e=!0){this.jsAttribute=e,this._isRendering=!1,this._isResizing=!1,this._isScrollLocked=!1,this._isLoading=!1,this._isSwappingFont=!1,this._isEnabled=!0,this._isDisposed=!1,this._listeners={},this._handlingClick=this._handleClick.bind(this),this._hashes=[],this._hash="",this._keyListenerTypes=[],this._keys=[],this.handlingKey=this.handleKey.bind(this),this._emitter=new ae,this._ascent=new ae,this._descent=new ae,this._registrations=[],this._nexts=[]}static get instanceClassName(){return"Instance"}_config(e,t){this.element=e,this.registration=t,this.node=e.node,this.id=e.node.id,this.jsAttribute&&this.setAttribute(t.attribute,!0),this.init()}init(){}get proxy(){const e=this;return ee({render:()=>e.render(),resize:()=>e.resize()},{get node(){return e.node},get isEnabled(){return e.isEnabled},set isEnabled(t){e.isEnabled=t}})}log(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.log.apply(h,e)}debug(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.debug.apply(h,e)}info(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.info.apply(h,e)}warn(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.warn.apply(h,e)}error(...e){e.unshift(`${this.registration.instanceClassName} #${this.id} - `),h.error.apply(h,e)}register(t,s){const i=e.getModule("register").register(t,s,this);this._registrations.push(i)}getRegisteredInstances(e){for(const t of this._registrations)if(t.hasInstanceClassName(e))return t.instances.collection;return[]}dispatch(e,t=null,s=!0,i=!1){d(this.node,e,t,s,i)}listen(e,t,s){this._listeners[e]||(this._listeners[e]=[]);const i=this._listeners[e],n=new ue(this.node,e,t,s);i.push(n),n.listen()}unlisten(e,t,s){if(!e){for(const e in this._listeners)this.unlisten(e);return}const i=this._listeners[e];if(!i)return;if(!t)return void i.forEach((t=>this.unlisten(e,t.closure)));const n=i.filter((e=>e.closure===t&&e.matchOptions(s)));n.forEach((e=>e.unlisten())),this._listeners[e]=i.filter((e=>-1===n.indexOf(e)))}listenClick(e){this.listen("click",this._handlingClick,e)}unlistenClick(e){this.unlisten("click",this._handlingClick,e)}_handleClick(e){this.handleClick(e),this.dispatch(le.CLICK,this)}handleClick(e){}set hash(t){e.getModule("hash").hash=t}get hash(){return e.getModule("hash").hash}listenHash(t,s){if(!this._hashes)return;0===this._hashes.length&&e.add("hash",this);const i=new ge(t,s);this._hashes=this._hashes.filter((e=>e.hash!==t)),this._hashes.push(i)}unlistenHash(t){this._hashes&&(this._hashes=this._hashes.filter((e=>e.hash!==t)),0===this._hashes.length&&e.remove("hash",this))}handleHash(e,t){if(this._hashes)for(const s of this._hashes)s.handle(e,t)}listenKey(e,t,s=!1,i=!1,n="down"){-1===this._keyListenerTypes.indexOf(n)&&(this.listen(`key${n}`,this.handlingKey),this._keyListenerTypes.push(n)),this._keys.push(new de(n,e,t,s,i))}unlistenKey(e,t){this._keys=this._keys.filter((s=>s.code!==e||s.closure!==t)),this._keyListenerTypes.forEach((e=>{this._keys.some((t=>t.type===e))||this.unlisten(`key${e}`,this.handlingKey)}))}handleKey(e){for(const t of this._keys)t.handle(e)}get isEnabled(){return this._isEnabled}set isEnabled(e){this._isEnabled=e}get isRendering(){return this._isRendering}set isRendering(t){this._isRendering!==t&&(t?e.add("render",this):e.remove("render",this),this._isRendering=t)}render(){}request(t){this._nexts.push(t),e.getModule("render").request(this)}next(){const e=this._nexts.slice();this._nexts.length=0;for(const t of e)t&&t()}get isResizing(){return this._isResizing}set isResizing(t){this._isResizing!==t&&(t?(e.add("resize",this),this.resize()):e.remove("resize",this),this._isResizing=t)}resize(){}isBreakpoint(e){return!0==("string"==typeof e)?he[e.toUpperCase()].test():e.test()}get isScrollLocked(){return this._isScrollLocked}set isScrollLocked(t){this._isScrollLocked!==t&&(t?e.add("lock",this):e.remove("lock",this),this._isScrollLocked=t)}get isLoading(){return this._isLoading}set isLoading(t){this._isLoading!==t&&(t?e.add("load",this):e.remove("load",this),this._isLoading=t)}load(){}get isSwappingFont(){return this._isSwappingFont}set isSwappingFont(t){this._isSwappingFont!==t&&(t?e.add("font-swap",this):e.remove("font-swap",this),this._isSwappingFont=t)}swapFont(){}get isMouseMoving(){return this._isMouseMoving}set isMouseMoving(t){this._isMouseMoving!==t&&(t?e.add("mouse-move",this):e.remove("mouse-move",this),this._isMouseMoving=t)}mouseMove(e){}examine(e){this.node.matches(this.registration.selector)?this.mutate(e):this._dispose()}mutate(e){}retrieveNodeId(e,t){if(e.id)return e.id;const s=Y(`${this.id}-${t}`);return this.warn(`add id '${s}' to ${t}`),e.setAttribute("id",s),s}get isDisposed(){return this._isDisposed}_dispose(){this.debug(`dispose instance of ${this.registration.instanceClassName} on element [${this.element.id}]`),this.removeAttribute(this.registration.attribute),this.unlisten(),e.remove("hash",this),this._hashes=null,this._keys=null,this.isRendering=!1,this.isResizing=!1,this._nexts=null,e.getModule("render").nexts.remove(this),this.isScrollLocked=!1,this.isLoading=!1,this.isSwappingFont=!1,this.isMouseMoving=!1,this._emitter.dispose(),this._emitter=null,this._ascent.dispose(),this._ascent=null,this._descent.dispose(),this._descent=null,this.element.remove(this);for(const t of this._registrations)e.remove("register",t);this._registrations=null,this.registration.remove(this),this._isDisposed=!0,this.dispose()}dispose(){}emit(e,t){return this.element.emit(e,t)}addEmission(e,t){this._emitter.add(e,t)}removeEmission(e,t){this._emitter.remove(e,t)}ascend(e,t){return this.element.ascend(e,t)}addAscent(e,t){this._ascent.add(e,t)}removeAscent(e,t){this._ascent.remove(e,t)}descend(e,t){return this.element.descend(e,t)}addDescent(e,t){this._descent.add(e,t)}removeDescent(e,t){this._descent.remove(e,t)}get style(){return this.node.style}addClass(e){W(this.node,e)}removeClass(e){q(this.node,e)}hasClass(e){return z(this.node,e)}get classNames(){return B(this.node)}remove(){this.node.parentNode.removeChild(this.node)}setAttribute(e,t){this.node.setAttribute(e,t)}getAttribute(e){return this.node.getAttribute(e)}hasAttribute(e){return this.node.hasAttribute(e)}removeAttribute(e){this.node.removeAttribute(e)}setProperty(e,t){this.node.style.setProperty(e,t)}removeProperty(e){this.node.style.removeProperty(e)}focus(){this.node.focus()}blur(){this.node.blur()}focusClosest(){const e=this._focusClosest(this.node.parentNode);e&&e.focus()}_focusClosest(e){if(!e)return null;const t=[...K(e)];if(t.length<=1)return this._focusClosest(e.parentNode);{const e=t.indexOf(this.node);return t[e+(ewindow.innerHeight&&s.move(t.bottom-window.innerHeight+50)}matches(e){return this.node.matches(e)}querySelector(e){return this.node.querySelector(e)}querySelectorAll(e){return E(this.node,e)}queryParentSelector(e){return f(this.node,e)}getRect(){const e=this.node.getBoundingClientRect();return e.center=e.left+.5*e.width,e.middle=e.top+.5*e.height,e}get isLegacy(){return e.isLegacy}}class de{constructor(e,t,s,i,n){this.type=e,this.eventType=`key${e}`,this.keyCode=t,this.closure=s,this.preventDefault=!0===i,this.stopPropagation=!0===n}handle(e){e.type===this.eventType&&e.keyCode===this.keyCode.value&&(this.closure(e),this.preventDefault&&e.preventDefault(),this.stopPropagation&&e.stopPropagation())}}class ue{constructor(e,t,s,i){this._node=e,this._type=t,this._closure=s,this._options=i}get closure(){return this._closure}listen(){this._node.addEventListener(this._type,this._closure,this._options)}matchOptions(e=null){switch(!0){case null===e:case"boolean"==typeof this._options&&"boolean"==typeof e&&this._options===e:return!0;case Object.keys(this._options).length!==Object.keys(e).length:return!1;case Object.keys(e).every((t=>this._options[t]===e[t])):return!0}return!1}unlisten(){this._node.removeEventListener(this._type,this._closure,this._options)}}class ge{constructor(e,t){this.hash=e,this.add=t}handle(e,t){this.hash===e&&this.add(t)}}const pe={DISCLOSE:g.event("disclose"),CONCEAL:g.event("conceal"),CURRENT:g.event("current")},me={RESET:g.emission("disclosure","reset"),ADDED:g.emission("disclosure","added"),RETRIEVE:g.emission("disclosure","retrieve"),REMOVED:g.emission("disclosure","removed"),GROUP:g.emission("disclosure","group"),UNGROUP:g.emission("disclosure","ungroup"),SPOTLIGHT:g.emission("disclosure","spotlight")};class _e extends ce{constructor(e,t,s,i){super(),this.type=e,this._selector=t,this.DisclosureButtonInstanceClass=s,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}static get instanceClassName(){return"Disclosure"}init(){this.addDescent(me.RESET,this.reset.bind(this)),this.addDescent(me.GROUP,this.update.bind(this)),this.addDescent(me.UNGROUP,this.update.bind(this)),this.addAscent(me.SPOTLIGHT,this.disclose.bind(this)),this.register(`[aria-controls="${this.id}"]`,this.DisclosureButtonInstanceClass),this.ascend(me.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()}get isEnabled(){return super.isEnabled}set isEnabled(e){this.isEnabled!==e&&(super.isEnabled=e,e?this.ascend(me.ADDED):this.ascend(me.REMOVED))}get isPristine(){return this._isPristine}get proxy(){const e=this,t=Object.assign(super.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});this.type.canConceal&&(t.conceal=e.conceal.bind(e));return ee(t,{get buttons(){return e.buttons.map((e=>e.proxy))},get group(){const t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})}get buttons(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)}update(){this.getGroup(),this.retrievePrimaries()}getGroup(){if(!this.disclosuresGroupInstanceClassName)return void(this._group=null);const e=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);e&&e.validate(this)?this._group=e:this._group=null}get group(){return this._group}disclose(e){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!e&&this.group&&(this.group.current=this),!0)}conceal(e,t=!0){return!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!e&&this.group&&this.group.current===this&&(this.group.current=null),t||this.focus(),this._isPristine||this.descend(me.RESET),!0))}get isDisclosed(){return this._isDisclosed}set isDisclosed(e){if(this._isDisclosed!==e&&(this.isEnabled||!0!==e)){this.dispatch(e?pe.DISCLOSE:pe.CONCEAL,this),this._isDisclosed=e,e?this.addClass(this.modifier):this.removeClass(this.modifier);for(let t=0;te.isInitiallyDisclosed))}hasRetrieved(){return this._hasRetrieved}reset(){}toggle(e){if(this.type.canConceal)switch(!0){case!e:case this.isDisclosed:this.conceal(!1,!1);break;default:this.disclose()}else this.disclose()}get buttonHasFocus(){return this.buttons.some((e=>e.hasFocus))}get hasFocus(){return!!super.hasFocus||(!!this.buttonHasFocus||this.querySelectorAll(":focus").length>0)}focus(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()}get primaryButtons(){return this._primaryButtons}retrievePrimaries(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))}_retrievePrimaries(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}}retrieved(){}_spotlight(){this.disclose(),this.request((()=>{this.ascend(me.SPOTLIGHT)}))}_electPrimaries(e){return e.filter((e=>e.canDisclose&&!this.node.contains(e.node)))}applyAbility(e=!1){const t=!this._primaryButtons.every((e=>e.isDisabled));this.isEnabled!==t&&(this.isEnabled=t,e||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(me.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(me.ADDED),this.hash===this.id&&this._spotlight())))}dispose(){this._group=null,this._primaryButtons=null,super.dispose(),this.ascend(me.REMOVED)}}class be extends ce{constructor(e){super(),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:g.attr(e.id),this._canDisclose=!1}static get instanceClassName(){return"DisclosureButton"}get isPrimary(){return this.registration.creator.primaryButtons.includes(this)}get canDisclose(){return this._canDisclose}get isDisabled(){return this.type.canDisable&&this.hasAttribute("disabled")}init(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()}get proxy(){return Object.assign(super.proxy,{focus:this.focus.bind(this)})}handleClick(e){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)}mutate(e){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&e.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())}apply(e){this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,e),this.request((()=>{this._isApplying=!1})))}get isDisclosed(){return"true"===this.getAttribute(this.attributeName)}get isInitiallyDisclosed(){return this._isInitiallyDisclosed}focus(){super.focus(),this.scrollIntoView()}measure(e){const t=this.rect;this._dx=e.x-t.x,this._dy=e.y-t.y}get dx(){return this._dx}get dy(){return this._dy}}const Ee={PREVENT_CONCEAL:g.attr.selector("prevent-conceal"),GROUP:g.attr("group")};class fe extends ce{constructor(e,t){super(t),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}static get instanceClassName(){return"DisclosuresGroup"}init(){this.addAscent(me.ADDED,this.update.bind(this)),this.addAscent(me.RETRIEVE,this.retrieve.bind(this)),this.addAscent(me.REMOVED,this.update.bind(this)),this.descend(me.GROUP),this._isGrouped="false"!==this.getAttribute(Ee.GROUP),this.update()}get proxy(){const e=this,t={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){const t=e.current;return t?t.proxy:null},get members(){return e.members.map((e=>e.proxy))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return ee(super.proxy,t)}validate(e){return!0}getMembers(){const e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((e=>e.isEnabled));e.filter((e=>!this._members.includes(e))).forEach((e=>e.conceal()))}retrieve(e=!1){this._isRetrieving||this._hasRetrieved&&!e||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))}_retrieve(){if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.isGrouped){if(this.hash)for(let e=0;e{this.ascend(me.SPOTLIGHT)})),e}for(let e=0;e=this.length||e===this._index)){this._index=e;for(let t=0;tt.map((t=>g.selector(`${e}--${t}`))).join(","),we=`${g.selector("responsive-img")}, ${Le("responsive-img",De)}, ${g.selector("responsive-vid")}, ${Le("responsive-vid",["16x9","4x3","1x1"])}`,Ie={RATIO:`${g.selector("ratio")}, ${Le("ratio",De)}, ${we}`},xe=window[s];const Oe={TOP:g.selector("placement--top"),RIGHT:g.selector("placement--right"),BOTTOM:g.selector("placement--bottom"),LEFT:g.selector("placement--left")},Pe={START:g.selector("placement--start"),CENTER:g.selector("placement--center"),END:g.selector("placement--end")},ke={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},Me={START:"align_start",CENTER:"align_center",END:"align_end"},Ge={AUTO:"placement_auto",MANUAL:"placement_manual"};ne.core={Instance:ce,Breakpoints:he,KeyCodes:C,Disclosure:_e,DisclosureButton:be,DisclosuresGroup:fe,DisclosureType:Ae,DisclosureEvent:pe,DisclosureSelector:Ee,DisclosureEmission:me,Collapse:class extends _e{constructor(){super(Ae.EXPAND,Se.COLLAPSE,Te,"CollapsesGroup")}static get instanceClassName(){return"Collapse"}init(){super.init(),this.listen("transitionend",this.endCollapsing.bind(this))}endCollapsing(e){this._isCollpasing&&(this._timeout&&clearTimeout(this._timeout),this._timeout=null,this._isCollpasing=!1,this.removeClass(Se.COLLAPSING),this.isDisclosed||this.isLegacy&&(this.style.maxHeight=""))}unbound(){this.isLegacy&&(this.style.maxHeight="none")}disclose(e){if(!0===this.isDisclosed||!this.isEnabled)return!1;this.unbound(),this.collapsing((()=>super.disclose(e)))}conceal(e,t){if(!1===this.isDisclosed)return!1;this.collapsing((()=>super.conceal(e,t)))}collapsing(e){this._isCollpasing=!0,this._timeout&&clearTimeout(this._timeout),this.addClass(Se.COLLAPSING),this.adjust(),this.request((()=>{e(),this._timeout=setTimeout(this.endCollapsing.bind(this),500)}))}adjust(){this.setProperty("--collapser","none");const e=this.node.offsetHeight;this.setProperty("--collapse",-e+"px"),this.setProperty("--collapser","")}reset(){this.isPristine||(this.isDisclosed=!1)}_electPrimaries(e){const t=this.element.parent.instances.map((e=>e.collapsePrimary)).filter((t=>void 0!==t&&e.indexOf(t)>-1));if(1===t.length)return t;if(1===(e=super._electPrimaries(e)).length)return e;const s=e.filter((e=>e.dy>=0));if(s.length>0&&(e=s),1===e.length)return e;const i=Math.min(...e.map((e=>e.dy))),n=e.filter((e=>e.dy===i));return n.length>0&&(e=n),1===e.length||e.sort(((e,t)=>Math.abs(t.dx)-Math.abs(e.dx))),e}},CollapseButton:Te,CollapsesGroup:class extends fe{constructor(){super("Collapse")}static get instanceClassName(){return"CollapsesGroup"}get canUngroup(){return!0}},CollapseSelector:Se,RootSelector:{ROOT:":root"},RootEmission:y,Equisized:class extends ce{static get instanceClassName(){return"Equisized"}init(){this.ascend(ve.CHANGE)}measure(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width}adjust(e){this.isLegacy&&(this.style.width=`${e}px`)}dispose(){this.ascend(ve.CHANGE)}},EquisizedEmission:ve,Toggle:class extends ce{static get instanceClassName(){return"Toggle"}init(){this.pressed="true"===this.pressed,this.listenClick()}handleClick(){this.toggle()}toggle(){this.pressed="true"!==this.pressed}get pressed(){return this.getAttribute("aria-pressed")}set pressed(e){this.setAttribute("aria-pressed",e?"true":"false")}get proxy(){const e=this,t=Object.assign(super.proxy,{toggle:e.toggle.bind(e)});return ee(t,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})}},EquisizedsGroup:class extends ce{static get instanceClassName(){return"EquisizedsGroup"}init(){this.isResizing=!0,this.isLoading=!0,this.addAscent(ve.CHANGE,this.resize.bind(this))}load(){this.resize()}resize(){const e=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");const t=Math.max(...e.map((e=>e.measure())));this.isLegacy?e.forEach((e=>e.adjust(t))):this.style.setProperty("--equisized-width",`${t}px`)}},InjectSvg:class extends ce{static get instanceClassName(){return"InjectSvg"}init(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()}get proxy(){const e=this;return Object.assign(super.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})}fetch(){this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((e=>e.text())).then((e=>{const t=(new DOMParser).parseFromString(e,"text/html");this.svg=t.querySelector("svg"),this.svg&&this.replace()})))}replace(){if(!this.svg)return void this.fetch();this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);let e=this.imgURL.match(/[ \w-]+\./)[0];e&&(e=e.slice(0,-1),["dark","light","system"].includes(e)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-',`id="${e}-artwork-`),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-',`"#${e}-artwork-`))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var t,s;t=this.svg,s={"aria-hidden":!0,focusable:!1},Object.keys(s).forEach((e=>t.setAttribute(e,s[e]))),this.node.replaceChild(this.svg,this.img)}restore(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))}},InjectSvgSelector:ye,Artwork:class extends ce{static get instanceClassName(){return"Artwork"}init(){this.isLegacy&&this.replace()}get proxy(){return Object.assign(super.proxy,{replace:this.replace.bind(this)})}fetch(){this.xlink=this.node.getAttribute("href");const e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];const t=new XMLHttpRequest;t.onload=()=>{const e=(new DOMParser).parseFromString(t.responseText,"text/html");this.realSvgContent=e.getElementById(this.svgName),this.realSvgContent&&("symbol"===this.realSvgContent.tagName?(this.use=e.querySelector('use[href="#'+this.svgName+'"]'),this.use&&this.node.parentNode.insertBefore(this.use,this.node)):this.realSvgContent.classList.add(this.node.classList),this.replace())},t.open("GET",this.svgUrl),t.send()}replace(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()}},ArtworkSelector:Ce,AssessFile:class extends ce{static get instanceClassName(){return"AssessFile"}init(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Re.ADDED,this.update.bind(this)),this.addDescent(Re.ADDED,this.update.bind(this))}getFileLength(){void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((e=>{this.length=e.headers.get("content-length")||-1,-1===this.length&&h.warn("File size unknown: "+this.href+'\nUnable to get HTTP header: "content-length"'),this.gather()})):this.length=-1}mutate(e){-1!==e.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==e.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())}gather(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){const e=this.parseExtension(this.href);e&&this.details.push(e.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()}update(){this.details&&(this.descend(Re.UPDATE,this.details),this.ascend(Re.UPDATE,this.details))}getLang(e){return e.lang?e.lang:document.documentElement===e?window.navigator.language:this.getLang(e.parentElement)}parseExtension(e){return e.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")}getLangDisplayName(e){if(this.isLegacy)return e;const t=new Intl.DisplayNames([this.lang],{type:"language"}).of(e);return t.charAt(0).toUpperCase()+t.slice(1)}bytesToSize(e){if(-1===e)return null;let t=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(g.attr("assess-file"))&&(t=["bytes","KB","MB","GB","TB"]);const s=parseInt(Math.floor(Math.log(e)/Math.log(1e3)),10);if(0===s)return`${e} ${t[s]}`;const i=e/1e3**s,n=Math.round(100*(i+Number.EPSILON))/100;return`${String(n).replace(".",",")} ${t[s]}`}},AssessDetail:class extends ce{static get instanceClassName(){return"AssessDetail"}init(){this.addDescent(Re.UPDATE,this.update.bind(this)),this.ascend(Re.ADDED)}update(e){this.node.innerHTML=e.join(" - ")}},AssessEmission:Re,AssessSelector:Ne,Ratio:class extends ce{static get instanceClassName(){return"Ratio"}init(){if(!xe.internals.support.supportAspectRatio()){this.ratio=16/9;for(const e in this.classNames)if(this.registration.selector.indexOf(this.classNames[e])>0){const t=this.classNames[e].split("ratio-");t[1]&&(this.ratio=t[1].split("x")[0]/t[1].split("x")[1])}this.isRendering=!0,this.update()}}render(){this.getRect().width!==this.currentWidth&&this.update()}update(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"}},RatioSelector:Ie,Placement:class extends ce{constructor(e=Ge.AUTO,t=[ke.BOTTOM,ke.TOP,ke.LEFT,ke.RIGHT],s=[Me.CENTER,Me.START,Me.END],i=16){super(),this._mode=e,this._places=t,this._aligns=s,this._safeAreaMargin=i,this._isShown=!1,this._x=this._y=0}static get instanceClassName(){return"Placement"}init(){this.isResizing=!0}get proxy(){const e=this,t=Object.assign(super.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return ee(t,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})}get mode(){return this._mode}set mode(e){this._mode=e}get place(){return this._place}set place(e){if(this._place!==e){switch(this._place){case ke.TOP:this.removeClass(Oe.TOP);break;case ke.RIGHT:this.removeClass(Oe.RIGHT);break;case ke.BOTTOM:this.removeClass(Oe.BOTTOM);break;case ke.LEFT:this.removeClass(Oe.LEFT)}switch(this._place=e,this._place){case ke.TOP:this.addClass(Oe.TOP);break;case ke.RIGHT:this.addClass(Oe.RIGHT);break;case ke.BOTTOM:this.addClass(Oe.BOTTOM);break;case ke.LEFT:this.addClass(Oe.LEFT)}}}get align(){return this._align}set align(e){if(this._align!==e){switch(this._align){case Me.START:this.removeClass(Pe.START);break;case Me.CENTER:this.removeClass(Pe.CENTER);break;case Me.END:this.removeClass(Pe.END)}switch(this._align=e,this._align){case Me.START:this.addClass(Pe.START);break;case Me.CENTER:this.addClass(Pe.CENTER);break;case Me.END:this.addClass(Pe.END)}}}show(){this.isShown=!0}hide(){this.isShown=!1}get isShown(){return this._isShown}set isShown(e){this._isShown!==e&&this.isEnabled&&(this.isRendering=e,this._isShown=e)}setReferent(e){this._referent=e}render(){if(!this._referent)return;if(this.referentRect=this._referent.getRect(),this.rect=this.getRect(),this.safeArea=this.getSafeArea(),this.mode===Ge.AUTO)switch(this.place=this.getPlace(),this.place){case ke.TOP:case ke.BOTTOM:this.align=this.getHorizontalAlign();break;case ke.LEFT:case ke.RIGHT:this.align=this.getVerticalAlign()}let e,t;switch(this.place){case ke.TOP:t=this.referentRect.top-this.rect.top-this.rect.height;break;case ke.RIGHT:e=this.referentRect.left-this.rect.left+this.referentRect.width;break;case ke.BOTTOM:t=this.referentRect.top-this.rect.top+this.referentRect.height;break;case ke.LEFT:e=this.referentRect.left-this.rect.left-this.rect.width}switch(this.place){case ke.TOP:case ke.BOTTOM:switch(this.align){case Me.CENTER:e=this.referentRect.left-this.rect.left+.5*this.referentRect.width-.5*this.rect.width;break;case Me.START:e=this.referentRect.left-this.rect.left;break;case Me.END:e=this.referentRect.left-this.rect.left+this.referentRect.width-this.rect.width}break;case ke.RIGHT:case ke.LEFT:switch(this.align){case Me.CENTER:t=this.referentRect.top-this.rect.top+.5*this.referentRect.height-.5*this.rect.height;break;case Me.START:t=this.referentRect.top-this.rect.top;break;case Me.END:t=this.referentRect.top-this.rect.top-this.rect.height}}this._x+=e+.5|0,this._y+=t+.5|0,this.node.style.transform=`translate(${this._x}px,${this._y}px)`}getPlace(){for(const e of this._places)switch(e){case ke.TOP:if(this.referentRect.top-this.rect.height>this.safeArea.top)return ke.TOP;break;case ke.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return ke.LEFT}return this._places[0]}getHorizontalAlign(){for(const e of this._aligns)switch(e){case Me.CENTER:if(this.referentRect.center-.5*this.rect.width>this.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return Me.END}return this._aligns[0]}getVerticalAlign(){for(const e of this._aligns)switch(e){case Me.CENTER:if(this.referentRect.middle-.5*this.rect.height>this.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return Me.END}return this._aligns[0]}getSafeArea(){let e,t,s=this.node,i=this._safeAreaMargin,n=window.innerWidth-this._safeAreaMargin,r=window.innerHeight-this._safeAreaMargin,a=this._safeAreaMargin;for(;s&&s!==document.body;){s=s.parentElement;const o=window.getComputedStyle(s),h=/(visible|(\w+))(\s(visible|(\w+)))?/.exec(o.overflow);if(e=void 0!==h[2],t=void 0!==h[3]?void 0!==h[5]:void 0!==h[2],!e&&!t)continue;const l=s.getBoundingClientRect();e&&(l.left>a&&(a=l.left),l.righti&&(i=l.top),l.bottom-1&&(this.scheme=this.getAttribute(He.SCHEME)),e.indexOf(He.THEME)>-1&&(this.theme=this.getAttribute(He.THEME))}dispose(){this.unlistenPreferences()}}const qe={SCHEME:`:root${xe.internals.ns.attr.selector("theme")}, :root${xe.internals.ns.attr.selector("scheme")}`,SWITCH_THEME:xe.internals.ns.selector("switch-theme"),RADIO_BUTTONS:`input[name="${xe.internals.ns("radios-theme")}"]`};xe.scheme={Scheme:We,SchemeValue:$e,SchemeSelector:qe,SchemeEmission:Be,SchemeTheme:Ue,SchemeEvent:Fe},xe.internals.register(xe.scheme.SchemeSelector.SCHEME,xe.scheme.Scheme);const ze=xe.internals.ns.selector("accordion"),je=xe.internals.ns.selector("collapse"),Ke={GROUP:xe.internals.ns.selector("accordions-group"),ACCORDION:ze,COLLAPSE:`${ze} > ${je}, ${ze} > *:not(${ze}):not(${je}) > ${je}, ${ze} > *:not(${ze}):not(${je}) > *:not(${ze}):not(${je}) > ${je}`,COLLAPSE_LEGACY:`${ze} ${je}`,BUTTON:`${ze}__btn`};class Ve extends xe.core.Instance{static get instanceClassName(){return"Accordion"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(Ke.BUTTON)))[0]}}class Ye extends xe.core.CollapsesGroup{static get instanceClassName(){return"AccordionsGroup"}validate(e){const t=e.node.matches(xe.internals.legacy.isLegacy?Ke.COLLAPSE_LEGACY:Ke.COLLAPSE);return super.validate(e)&&t}}xe.accordion={Accordion:Ve,AccordionSelector:Ke,AccordionsGroup:Ye},xe.internals.register(xe.accordion.AccordionSelector.GROUP,xe.accordion.AccordionsGroup),xe.internals.register(xe.accordion.AccordionSelector.ACCORDION,xe.accordion.Accordion);const Xe={EQUISIZED_BUTTON:`${xe.internals.ns.selector("btns-group--equisized")} ${xe.internals.ns.selector("btn")}`,EQUISIZED_GROUP:xe.internals.ns.selector("btns-group--equisized")};xe.button={ButtonSelector:Xe},xe.internals.register(xe.button.ButtonSelector.EQUISIZED_BUTTON,xe.core.Equisized),xe.internals.register(xe.button.ButtonSelector.EQUISIZED_GROUP,xe.core.EquisizedsGroup);class Qe extends xe.core.Instance{static get instanceClassName(){return"CardDownload"}init(){this.addAscent(xe.core.AssessEmission.UPDATE,(e=>{this.descend(xe.core.AssessEmission.UPDATE,e)})),this.addAscent(xe.core.AssessEmission.ADDED,(()=>{this.descend(xe.core.AssessEmission.ADDED)}))}}const Ze={DOWNLOAD:xe.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:`${xe.internals.ns.selector("card--download")} ${xe.internals.ns.selector("card__end")} ${xe.internals.ns.selector("card__detail")}`};xe.card={CardSelector:Ze,CardDownload:Qe},xe.internals.register(xe.card.CardSelector.DOWNLOAD,xe.card.CardDownload),xe.internals.register(xe.card.CardSelector.DOWNLOAD_DETAIL,xe.core.AssessDetail);const Je={INPUT:`${xe.internals.ns.selector("checkbox-group")} input[type="checkbox"]`},et={CHANGE:xe.internals.ns.emission("checkbox","change"),RETRIEVE:xe.internals.ns.emission("checkbox","retrieve")};class tt extends xe.core.Instance{static get instanceClassName(){return"CheckboxInput"}constructor(){super(),this._handlingChange=this.handleChange.bind(this)}init(){this.node.addEventListener("change",this._handlingChange),this.addDescent(et.RETRIEVE,this._handlingChange),this.handleChange()}get isChecked(){return this.node.checked}handleChange(){this.ascend(et.CHANGE,this.node)}}xe.checkbox={CheckboxSelector:Je,CheckboxEmission:et,CheckboxInput:tt},xe.internals.register(xe.checkbox.CheckboxSelector.INPUT,xe.checkbox.CheckboxInput);const st={SEGMENTED:xe.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:xe.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:xe.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:xe.internals.ns.selector("segmented__legend")},it={ADDED:xe.internals.ns.emission("segmented","added"),REMOVED:xe.internals.ns.emission("segmented","removed")};class nt extends xe.core.Instance{static get instanceClassName(){return"Segmented"}init(){this.elements=this.node.querySelector(st.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(st.SEGMENTED_LEGEND),this.addAscent(it.ADDED,this.resize.bind(this)),this.addAscent(it.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(`${xe.prefix}-segmented__legend--inline`),this.isResizing=!0}resize(){const e=`${xe.prefix}-segmented--vertical`,t=`${xe.prefix}-segmented__legend--inline`;this.removeClass(e),this._isLegendInline&&(this.legend.classList.add(t),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(t)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(e):this.removeClass(e)}}class rt extends xe.core.Instance{static get instanceClassName(){return"SegmentedElement"}init(){this.ascend(it.ADDED)}dispose(){this.ascend(it.REMOVED)}}xe.segmented={SegmentedSelector:st,SegmentedEmission:it,SegmentedElement:rt,Segmented:nt},xe.internals.register(xe.segmented.SegmentedSelector.SEGMENTED,xe.segmented.Segmented),xe.internals.register(xe.segmented.SegmentedSelector.SEGMENTED_ELEMENT,xe.segmented.SegmentedElement);const at={BREADCRUMB:xe.internals.ns.selector("breadcrumb"),BUTTON:xe.internals.ns.selector("breadcrumb__button")};class ot extends xe.core.Instance{constructor(){super(),this.count=0,this.focusing=this.focus.bind(this)}static get instanceClassName(){return"Breadcrumb"}init(){this.getCollapse(),this.isResizing=!0}get proxy(){const e=this;return Object.assign(super.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})}getCollapse(){const e=this.collapse;e?e.listen(xe.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(xe.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))}resize(){const e=this.collapse,t=this.links;e&&t.length&&(this.isBreakpoint(xe.core.Breakpoints.MD)?e.buttonHasFocus&&t[0].focus():t.indexOf(document.activeElement)>-1&&e.focus())}get links(){return[...this.querySelectorAll("a[href]")]}get collapse(){return this.element.getDescendantInstances(xe.core.Collapse.instanceClassName,null,!0)[0]}focus(){this.count=0,this._focus()}_focus(){const e=this.links[0];e&&(e.focus(),this.request(this.verify.bind(this)))}verify(){if(this.count++,this.count>100)return;const e=this.links[0];e&&document.activeElement!==e&&this._focus()}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(at.BUTTON)))[0]}}xe.breadcrumb={BreadcrumbSelector:at,Breadcrumb:ot},xe.internals.register(xe.breadcrumb.BreadcrumbSelector.BREADCRUMB,xe.breadcrumb.Breadcrumb);const ht={TOOLTIP:xe.internals.ns.selector("tooltip"),SHOWN:xe.internals.ns.selector("tooltip--shown"),HIDDING:xe.internals.ns.selector("tooltip--hidding"),BUTTON:xe.internals.ns.selector("btn--tooltip")},lt=1,ct=2;class dt extends xe.core.PlacementReferent{constructor(){super(),this._state=0}static get instanceClassName(){return"TooltipReferent"}init(){if(super.init(),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(ht.BUTTON)){const e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);const t=this.mouseout.bind(this);this.listen("mouseout",t),this.placement.listen("mouseout",t)}this.addEmission(xe.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(xe.core.RootEmission.CLICK,this._clickOut.bind(this))}_click(){this.focus()}_clickOut(e){this.node.contains(e)||this.blur()}_keydown(e){if(e===xe.core.KeyCodes.ESCAPE)this.blur(),this.close()}close(){this.state=0}get state(){return this._state}set state(e){this._state!==e&&(this.isShown=e>0,this._state=e)}focusIn(){this.state|=lt}focusOut(){this.state&=~lt}mouseover(){this.state|=ct}mouseout(){this.state&=~ct}}const ut={SHOW:g.event("show"),HIDE:g.event("hide")},gt="hidden",pt="shown",mt="hiding";class _t extends xe.core.Placement{constructor(){super(xe.core.PlacementMode.AUTO,[xe.core.PlacementPosition.TOP,xe.core.PlacementPosition.BOTTOM],[xe.core.PlacementAlign.CENTER,xe.core.PlacementAlign.START,xe.core.PlacementAlign.END]),this.modifier="",this._state=gt}static get instanceClassName(){return"Tooltip"}init(){super.init(),this.register(`[aria-describedby="${this.id}"]`,dt),this.listen("transitionend",this.transitionEnd.bind(this))}transitionEnd(){this._state===mt&&(this.removeClass(ht.SHOWN),this.removeClass(ht.HIDDING),this._state=gt,this.isShown=!1)}get isShown(){return super.isShown}set isShown(e){if(this.isEnabled)switch(!0){case e:this._state=pt,this.addClass(ht.SHOWN),this.removeClass(ht.HIDDING),this.dispatch(ut.SHOW),super.isShown=!0;break;case this.isShown&&!e&&this._state===pt:this._state=mt,this.addClass(ht.HIDDING);break;case this.isShown&&!e&&this._state===gt:this.dispatch(ut.HIDE),this.removeClass(ht.HIDDING),super.isShown=!1}}render(){super.render(),this.rect=this.getRect();let e=this.referentRect.center-this.rect.center;const t=.5*this.rect.width-8;e<-t&&(e=-t),e>t&&(e=t),this.setProperty("--arrow-x",`${e.toFixed(2)}px`)}}xe.tooltip={Tooltip:_t,TooltipSelector:ht,TooltipEvent:ut},xe.internals.register(xe.tooltip.TooltipSelector.TOOLTIP,xe.tooltip.Tooltip);class bt extends xe.core.Instance{static get instanceClassName(){return"ToggleInput"}get isChecked(){return this.node.checked}}class Et extends xe.core.Instance{static get instanceClassName(){return"ToggleStatusLabel"}init(){this.register(`input[id="${this.getAttribute("for")}"]`,bt),this.update(),this.isSwappingFont=!0}get proxy(){return Object.assign(super.proxy,{update:this.update.bind(this)})}get input(){return this.getRegisteredInstances("ToggleInput")[0]}update(){this.node.style.removeProperty("--toggle-status-width");const e=this.input.isChecked,t=getComputedStyle(this.node,":before");let s=parseFloat(t.width);this.input.node.checked=!e;const i=getComputedStyle(this.node,":before"),n=parseFloat(i.width);n>s&&(s=n),this.input.node.checked=e,this.node.style.setProperty("--toggle-status-width",s/16+"rem")}swapFont(e){this.update()}}const ft={STATUS_LABEL:`${xe.internals.ns.selector("toggle__label")}${xe.internals.ns.attr.selector("checked-label")}${xe.internals.ns.attr.selector("unchecked-label")}`};xe.toggle={ToggleStatusLabel:Et,ToggleSelector:ft},xe.internals.register(xe.toggle.ToggleSelector.STATUS_LABEL,xe.toggle.ToggleStatusLabel);const At=xe.internals.ns.selector("sidemenu__item"),Tt=xe.internals.ns.selector("collapse"),St={LIST:xe.internals.ns.selector("sidemenu__list"),COLLAPSE:`${At} > ${Tt}, ${At} > *:not(${At}):not(${Tt}) > ${Tt}, ${At} > *:not(${At}):not(${Tt}) > *:not(${At}):not(${Tt}) > ${Tt}`,COLLAPSE_LEGACY:`${At} ${Tt}`,ITEM:xe.internals.ns.selector("sidemenu__item"),BUTTON:xe.internals.ns.selector("sidemenu__btn")};class vt extends xe.core.CollapsesGroup{static get instanceClassName(){return"SidemenuList"}validate(e){return super.validate(e)&&e.node.matches(xe.internals.legacy.isLegacy?St.COLLAPSE_LEGACY:St.COLLAPSE)}}class yt extends xe.core.Instance{static get instanceClassName(){return"SidemenuItem"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(St.BUTTON)))[0]}}xe.sidemenu={SidemenuList:vt,SidemenuItem:yt,SidemenuSelector:St},xe.internals.register(xe.sidemenu.SidemenuSelector.LIST,xe.sidemenu.SidemenuList),xe.internals.register(xe.sidemenu.SidemenuSelector.ITEM,xe.sidemenu.SidemenuItem);const Ct={MODAL:xe.internals.ns.selector("modal"),SCROLL_DIVIDER:xe.internals.ns.selector("scroll-divider"),BODY:xe.internals.ns.selector("modal__body"),TITLE:xe.internals.ns.selector("modal__title")};class Nt extends xe.core.DisclosureButton{constructor(){super(xe.core.DisclosureType.OPENED)}static get instanceClassName(){return"ModalButton"}}const Rt={CONCEALING_BACKDROP:xe.internals.ns.attr("concealing-backdrop")};class Dt extends xe.core.Disclosure{constructor(){super(xe.core.DisclosureType.OPENED,Ct.MODAL,Nt,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}static get instanceClassName(){return"Modal"}init(){super.init(),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(xe.core.RootEmission.KEYDOWN,this._keydown.bind(this))}_keydown(e){if(e===xe.core.KeyCodes.ESCAPE)this._escape()}_escape(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}}retrieved(){this._ensureAccessibleName()}get body(){return this.element.getDescendantInstances("ModalBody","Modal")[0]}handleClick(e){e.target===this.node&&"false"!==this.getAttribute(Rt.CONCEALING_BACKDROP)&&this.conceal()}disclose(e){return!!super.disclose(e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)}conceal(e,t){return!!super.conceal(e,t)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)}get isDialog(){return this._isDialog}set isDialog(e){this._isDialog=e}activateModal(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))}deactivateModal(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))}_setAccessibleName(e,t){const s=this.retrieveNodeId(e,t);this.warn(`add reference to ${t} for accessible name (aria-labelledby)`),this.setAttribute("aria-labelledby",s)}_ensureAccessibleName(){if(!this.isEnabled||this.isEnabled&&(this.hasAttribute("aria-labelledby")||this.hasAttribute("aria-label")))return;this.warn("missing accessible name");const e=this.node.querySelector(Ct.TITLE),t=this.primaryButtons[0];switch(!0){case null!==e:this._setAccessibleName(e,"title");break;case void 0!==t:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(t,"primary")}}}const Lt=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),wt=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),It=(e,t)=>{if(!(e instanceof Element))return!1;const s=window.getComputedStyle(e);if(!s)return!1;if("hidden"===s.visibility)return!1;for(void 0===t&&(t=e);t.contains(e);){if("none"===s.display)return!1;e=e.parentElement}return!0};class xt{constructor(e,t){this.element=null,this.activeElement=null,this.onTrap=e,this.onUntrap=t,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null}get trapped(){return null!==this.element}trap(e){this.trapped&&this.untrap(),this.element=e,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){It(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const e=this.focusables;e.length&&-1===e.indexOf(document.activeElement)&&e[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}stun(e){for(const t of e.children)t!==this.element&&(t.contains(this.element)?this.stun(t):this.stunneds.push(new Ot(t)))}maintainFocus(e){if(!this.element.contains(e.target)){const t=this.focusables;if(0===t.length)return;const s=t[0];e.preventDefault(),s.focus()}}handle(e){if(9!==e.keyCode)return;const t=this.focusables;if(0===t.length)return;const s=t[0],i=t[t.length-1],n=t.indexOf(document.activeElement);e.shiftKey?!this.element.contains(document.activeElement)||n<1?(e.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||t[n-1].tabIndex>0)&&(e.preventDefault(),t[n-1].focus()):this.element.contains(document.activeElement)&&n!==t.length-1&&-1!==n?document.activeElement.tabIndex>0&&(e.preventDefault(),t[n+1].focus()):(e.preventDefault(),s.focus())}get focusables(){let e=xe.internals.dom.querySelectorAllArray(this.element,Lt);const t=xe.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(t.length){const s={};for(const e of t){const t=e.getAttribute("name");void 0===s[t]&&(s[t]=new Pt(t)),s[t].push(e)}e=e.filter((e=>{if("input"!==e.tagName.toLowerCase()||e.getAttribute("type")&&"radio"!==e.getAttribute("type").toLowerCase())return!0;const t=e.getAttribute("name");return s[t].keep(e)}))}const s=xe.internals.dom.querySelectorAllArray(this.element,wt);s.sort(((e,t)=>e.tabIndex-t.tabIndex));const i=e.filter((e=>-1===s.indexOf(e)));return s.concat(i).filter((e=>"-1"!==e.tabIndex&&It(e,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),document.body.removeEventListener("focus",this.focusing,!0),this.element=null,this.onUntrap&&this.onUntrap())}dispose(){this.untrap()}}class Ot{constructor(e){this.element=e,this.inert=e.getAttribute("inert"),this.element.setAttribute("inert","")}unstun(){null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class Pt{constructor(e){this.name=e,this.buttons=[]}push(e){this.buttons.push(e),(e===document.activeElement||e.checked||void 0===this.selected)&&(this.selected=e)}keep(e){return this.selected===e}}class kt extends xe.core.DisclosuresGroup{constructor(){super("Modal",!1),this.focusTrap=new xt}static get instanceClassName(){return"ModalsGroup"}apply(e,t){super.apply(e,t),null===this.current?this.focusTrap.untrap():this.focusTrap.trap(this.current.node)}}class Mt extends xe.core.Instance{static get instanceClassName(){return"ModalBody"}init(){this.listen("scroll",this.divide.bind(this))}activate(){this.isResizing=!0,this.resize()}deactivate(){this.isResizing=!1}divide(){this.node.scrollHeight>this.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(Ct.SCROLL_DIVIDER):this.addClass(Ct.SCROLL_DIVIDER):this.removeClass(Ct.SCROLL_DIVIDER)}resize(){this.adjust(),this.request(this.adjust.bind(this))}adjust(){const e=32*(this.isBreakpoint(xe.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-e+"px":this.style.setProperty("--modal-max-height",window.innerHeight-e+"px"),this.divide()}}xe.modal={Modal:Dt,ModalButton:Nt,ModalBody:Mt,ModalsGroup:kt,ModalSelector:Ct},xe.internals.register(xe.modal.ModalSelector.MODAL,xe.modal.Modal),xe.internals.register(xe.modal.ModalSelector.BODY,xe.modal.ModalBody),xe.internals.register(xe.core.RootSelector.ROOT,xe.modal.ModalsGroup);const Gt={TOGGLE:xe.internals.ns.emission("password","toggle"),ADJUST:xe.internals.ns.emission("password","adjust")};class $t extends xe.core.Instance{static get instanceClassName(){return"PasswordToggle"}init(){this.listenClick(),this.ascend(Gt.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked}get width(){const e=getComputedStyle(this.node.parentNode);return parseInt(e.width)}get isChecked(){return this.node.checked}set isChecked(e){this._isChecked=e,this.ascend(Gt.TOGGLE,e)}handleClick(){this.isChecked=!this._isChecked}swapFont(e){this.ascend(Gt.ADJUST,this.width)}}class Ht extends xe.core.Instance{static get instanceClassName(){return"Password"}init(){this.addAscent(Gt.TOGGLE,this.toggle.bind(this)),this.addAscent(Gt.ADJUST,this.adjust.bind(this))}toggle(e){this.descend(Gt.TOGGLE,e)}adjust(e){this.descend(Gt.ADJUST,e)}}const Ut={PASSWORD:xe.internals.ns.selector("password"),INPUT:xe.internals.ns.selector("password__input"),LABEL:xe.internals.ns.selector("password__label"),TOOGLE:`${xe.internals.ns.selector("password__checkbox")} input[type="checkbox"]`};class Bt extends xe.core.Instance{static get instanceClassName(){return"PasswordInput"}init(){this.addDescent(Gt.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))}toggle(e){this.isRevealed=e,this.setAttribute("type",e?"text":"password")}get isRevealed(){return this._isRevealed}capslock(e){e&&"function"!=typeof e.getModifierState||(e.getModifierState("CapsLock")?this.node.parentNode.setAttribute(xe.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(xe.internals.ns.attr("capslock")))}set isRevealed(e){this._isRevealed=e,this.setAttribute("type",e?"text":"password")}}class Ft extends xe.core.Instance{static get instanceClassName(){return"PasswordLabel"}init(){this.addDescent(Gt.ADJUST,this.adjust.bind(this))}adjust(e){const t=Math.ceil(e/16);this.node.style.paddingRight=t+"rem"}}xe.password={Password:Ht,PasswordToggle:$t,PasswordSelector:Ut,PasswordInput:Bt,PasswordLabel:Ft},xe.internals.register(xe.password.PasswordSelector.INPUT,xe.password.PasswordInput),xe.internals.register(xe.password.PasswordSelector.PASSWORD,xe.password.Password),xe.internals.register(xe.password.PasswordSelector.TOOGLE,xe.password.PasswordToggle),xe.internals.register(xe.password.PasswordSelector.LABEL,xe.password.PasswordLabel);const Wt=xe.internals.ns.selector("nav__item"),qt=xe.internals.ns.selector("collapse"),zt={NAVIGATION:xe.internals.ns.selector("nav"),COLLAPSE:`${Wt} > ${qt}, ${Wt} > *:not(${Wt}):not(${qt}) > ${qt}, ${Wt} > *:not(${Wt}):not(${qt}) > *:not(${Wt}):not(${qt}) > ${qt}`,COLLAPSE_LEGACY:`${Wt} ${qt}`,ITEM:Wt,ITEM_RIGHT:`${Wt}--align-right`,MENU:xe.internals.ns.selector("menu"),BUTTON:xe.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:xe.internals.ns.selector("translate__btn")};class jt extends xe.core.Instance{constructor(){super(),this._isRightAligned=!1}static get instanceClassName(){return"NavigationItem"}init(){this.addAscent(xe.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(xe.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()}resize(){this.calculate()}calculate(){const e=this.element.getDescendantInstances(xe.core.Collapse.instanceClassName,null,!0)[0];if(e&&this.isBreakpoint(xe.core.Breakpoints.LG)&&e.element.node.matches(zt.MENU)){const t=this.element.node.parentElement.getBoundingClientRect().right,s=e.element.node.getBoundingClientRect().width,i=this.element.node.getBoundingClientRect().left;this.isRightAligned=i+s>t}else this.isRightAligned=!1}get isRightAligned(){return this._isRightAligned}set isRightAligned(e){this._isRightAligned!==e&&(this._isRightAligned=e,e?xe.internals.dom.addClass(this.element.node,zt.ITEM_RIGHT):xe.internals.dom.removeClass(this.element.node,zt.ITEM_RIGHT))}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&(e.hasClass(zt.BUTTON)||e.hasClass(zt.TRANSLATE_BUTTON))))[0]}}const Kt={NONE:-1,INSIDE:0,OUTSIDE:1};class Vt extends xe.core.CollapsesGroup{static get instanceClassName(){return"Navigation"}init(){super.init(),this.clicked=!1,this.out=!1,this.addEmission(xe.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0}validate(e){return super.validate(e)&&e.element.node.matches(xe.internals.legacy.isLegacy?zt.COLLAPSE_LEGACY:zt.COLLAPSE)}handleMouseDown(e){this.isBreakpoint(xe.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(e.target)?Kt.INSIDE:Kt.OUTSIDE,this.requestPosition())}handleClick(e){!e.target.matches("a, button")||e.target.matches("[aria-controls]")||e.target.matches(xe.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)}_handleRootClick(e){this.isBreakpoint(xe.core.Breakpoints.LG)&&(this.node.contains(e)||(this.out=!0,this.requestPosition()))}requestPosition(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))}getPosition(){if(this.out)switch(this.position){case Kt.OUTSIDE:this.index=-1;break;case Kt.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))}requested(){this.position=Kt.NONE,this.out=!1,this.isRequesting=!1}get index(){return super.index}set index(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),super.index=e}get canUngroup(){return!this.isBreakpoint(xe.core.Breakpoints.LG)}resize(){this.update()}}xe.navigation={Navigation:Vt,NavigationItem:jt,NavigationMousePosition:Kt,NavigationSelector:zt},xe.internals.register(xe.navigation.NavigationSelector.NAVIGATION,xe.navigation.Navigation),xe.internals.register(xe.navigation.NavigationSelector.ITEM,xe.navigation.NavigationItem);class Yt extends xe.core.DisclosureButton{constructor(){super(xe.core.DisclosureType.SELECT)}static get instanceClassName(){return"TabButton"}handleClick(e){super.handleClick(e),this.focus()}apply(e){super.apply(e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))}get list(){return this.element.getAscendantInstance("TabsList","TabsGroup")}}const Xt={TAB:xe.internals.ns.selector("tabs__tab"),GROUP:xe.internals.ns.selector("tabs"),PANEL:xe.internals.ns.selector("tabs__panel"),LIST:xe.internals.ns.selector("tabs__list"),SHADOW:xe.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:xe.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:xe.internals.ns.selector("tabs__shadow--right"),PANEL_START:xe.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:xe.internals.ns.selector("tabs__panel--direction-end")},Qt="direction-start",Zt="direction-end",Jt="none";class es extends xe.core.Disclosure{constructor(){super(xe.core.DisclosureType.SELECT,Xt.PANEL,Yt,"TabsGroup"),this._direction=Jt,this._isPreventingTransition=!1}static get instanceClassName(){return"TabPanel"}get direction(){return this._direction}set direction(e){if(e!==this._direction){switch(this._direction){case Qt:this.removeClass(Xt.PANEL_START);break;case Zt:this.removeClass(Xt.PANEL_END);break;case Jt:break;default:return}switch(this._direction=e,this._direction){case Qt:this.addClass(Xt.PANEL_START);break;case Zt:this.addClass(Xt.PANEL_END)}}}get isPreventingTransition(){return this._isPreventingTransition}set isPreventingTransition(e){this._isPreventingTransition!==e&&(e?this.addClass(xe.internals.motion.TransitionSelector.NONE):this.removeClass(xe.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===e)}translate(e,t){this.isPreventingTransition=t,this.direction=e}reset(){this.group&&this.group.retrieve(!0)}_electPrimaries(e){return this.group&&this.group.list?super._electPrimaries(e).filter((e=>this.group.list.node.contains(e.node))):[]}}const ts="tab_keys_left",ss="tab_keys_right",is="tab_keys_home",ns="tab_keys_end",rs={PRESS_KEY:xe.internals.ns.emission("tab","press_key"),LIST_HEIGHT:xe.internals.ns.emission("tab","list_height")};class as extends xe.core.DisclosuresGroup{constructor(){super("TabPanel")}static get instanceClassName(){return"TabsGroup"}init(){super.init(),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(rs.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(rs.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0}getIndex(e=0){super.getIndex(e)}get list(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]}setListHeight(e){this.listHeight=e}transitionend(e){this.isPreventingTransition=!0}get buttonHasFocus(){return this.members.some((e=>e.buttonHasFocus))}pressKey(e){switch(e){case ts:this.pressLeft();break;case ss:this.pressRight();break;case is:this.pressHome();break;case ns:this.pressEnd()}}pressRight(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())}pressHome(){this.buttonHasFocus&&(this.index=0,this.focus())}pressEnd(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let e=0;es.right&&this.node.scrollTo(i-s.right+t.right+16,0)}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,this.apply())}apply(){this._isScrolling?(this.addClass(Xt.SHADOW),this.scroll()):(this.removeClass(Xt.SHADOW_RIGHT),this.removeClass(Xt.SHADOW_LEFT),this.removeClass(Xt.SHADOW))}scroll(){const e=Math.abs(this.node.scrollLeft),t=e<=16,s=this.node.scrollWidth-this.node.clientWidth-16,i=Math.abs(e)>=s,n="rtl"===getComputedStyle(this.node).direction,r=n?Xt.SHADOW_RIGHT:Xt.SHADOW_LEFT,a=n?Xt.SHADOW_LEFT:Xt.SHADOW_RIGHT;t?this.removeClass(r):this.addClass(r),i?this.removeClass(a):this.addClass(a)}resize(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;const e=this.getRect().height;this.setProperty("--tabs-list-height",`${e}px`),this.ascend(rs.LIST_HEIGHT,e)}dispose(){this.isScrolling=!1}}xe.tab={TabPanel:es,TabButton:Yt,TabsGroup:as,TabsList:os,TabSelector:Xt,TabEmission:rs},xe.internals.register(xe.tab.TabSelector.PANEL,xe.tab.TabPanel),xe.internals.register(xe.tab.TabSelector.GROUP,xe.tab.TabsGroup),xe.internals.register(xe.tab.TabSelector.LIST,xe.tab.TabsList);const hs={DISMISS:xe.internals.ns.event("dismiss")};class ls extends xe.core.Instance{static get instanceClassName(){return"TagDismissible"}init(){this.listenClick()}handleClick(){switch(this.focusClosest(),xe.mode){case xe.Modes.ANGULAR:case xe.Modes.REACT:case xe.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(hs.DISMISS)}verify(){document.body.contains(this.node)&&this.warn(`a TagDismissible has just been dismissed and should be removed from the dom. In ${xe.mode} mode, the api doesn't handle dom modification. An event ${hs.DISMISS} is dispatched by the element to trigger the removal`)}}const cs={PRESSABLE:`${xe.internals.ns.selector("tag")}[aria-pressed]`,DISMISSIBLE:`${xe.internals.ns.selector("tag--dismiss")}`};xe.tag={TagDismissible:ls,TagSelector:cs,TagEvent:hs},xe.internals.register(xe.tag.TagSelector.PRESSABLE,xe.core.Toggle),xe.internals.register(xe.tag.TagSelector.DISMISSIBLE,xe.tag.TagDismissible);const ds=xe.internals.ns.selector("transcription"),us={TRANSCRIPTION:ds,BUTTON:`${ds}__btn`};class gs extends xe.core.Instance{static get instanceClassName(){return"Transcription"}get collapsePrimary(){return this.element.children.map((e=>e.getInstance("CollapseButton"))).filter((e=>null!==e&&e.hasClass(us.BUTTON)))[0]}}xe.transcription={Transcription:gs,TranscriptionSelector:us},xe.internals.register(xe.transcription.TranscriptionSelector.TRANSCRIPTION,xe.transcription.Transcription);class ps extends xe.core.Instance{static get instanceClassName(){return"TileDownload"}init(){this.addAscent(xe.core.AssessEmission.UPDATE,(e=>{this.descend(xe.core.AssessEmission.UPDATE,e)})),this.addAscent(xe.core.AssessEmission.ADDED,(()=>{this.descend(xe.core.AssessEmission.ADDED)}))}}const ms={DOWNLOAD:xe.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:`${xe.internals.ns.selector("tile--download")} ${xe.internals.ns.selector("tile__detail")}`};xe.tile={TileSelector:ms,TileDownload:ps},xe.internals.register(xe.tile.TileSelector.DOWNLOAD,xe.tile.TileDownload),xe.internals.register(xe.tile.TileSelector.DOWNLOAD_DETAIL,xe.core.AssessDetail);const _s={RANGE:xe.internals.ns.selector("range"),RANGE_SM:xe.internals.ns.selector("range--sm"),RANGE_STEP:xe.internals.ns.selector("range--step"),RANGE_DOUBLE:xe.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:xe.internals.ns.selector("range--double")+xe.internals.ns.selector("range--step"),RANGE_INPUT:xe.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:`${xe.internals.ns.selector("range--double")} input[type=range]:nth-of-type(2)`,RANGE_OUTPUT:xe.internals.ns.selector("range__output"),RANGE_MIN:xe.internals.ns.selector("range__min"),RANGE_MAX:xe.internals.ns.selector("range__max"),RANGE_PREFIX:xe.internals.ns.attr("prefix"),RANGE_SUFFIX:xe.internals.ns.attr("suffix")},bs={VALUE:xe.internals.ns.emission("range","value"),VALUE2:xe.internals.ns.emission("range","value2"),OUTPUT:xe.internals.ns.emission("range","output"),CONSTRAINTS:xe.internals.ns.emission("range","constraints"),MIN:xe.internals.ns.emission("range","min"),MAX:xe.internals.ns.emission("range","max"),STEP:xe.internals.ns.emission("range","step"),PREFIX:xe.internals.ns.emission("range","prefix"),SUFFIX:xe.internals.ns.emission("range","suffix"),DISABLED:xe.internals.ns.emission("range","disabled"),ENABLE_POINTER:xe.internals.ns.emission("range","enable_pointer")};class Es{constructor(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}}configure(e){e&&(this._prefix=e._prefix,this._suffix=e._suffix,this._width=e.width,this.setConstraints(e._constraints),this.value=e.value,this.update())}setPrefix(e){this._prefix=null!==e?e:""}setSuffix(e){this._suffix=null!==e?e:""}_decorate(e){return`${this._prefix}${e}${this._suffix}`}get width(){return this._width}set width(e){this._width=e}get isSm(){return this._isSm}set isSm(e){this._isSm!==e&&(this._isSm=e,this.setThumbSize(e?16:24),this.update())}setThumbSize(e,t=1){this._thumbSize=e,this._innerPadding=e*t}get textValue(){return this._decorate(this._value)}get value(){return this._value}set value(e){this._value=e}get outputX(){return this._outputX}setConstraints(e){this._constraints=e,this._min=e.min,this._max=e.max,this._step=e.step,this._rangeWidth=e.rangeWidth}get min(){return this._min}get textMin(){return this._decorate(this._min)}get max(){return this._max}get textMax(){return this._decorate(this._max)}get step(){return this._step}get output(){return{text:this.textValue,transform:`translateX(${this._translateX}px) translateX(-${this._centerPercent}%)`}}_getRatio(e){return(e-this._min)/this._rangeWidth}get progress(){return this._progress}update(){this._update()}_update(){this._innerWidth=this._width-this._innerPadding;const e=this._getRatio(this._value);this._translateX=e*this._width,this._centerPercent=100*e,this._progress={right:`${(this._innerWidth*e+.5*this._innerPadding).toFixed(2)}px`}}}class fs extends Es{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2}}class As extends Es{get value2(){return this._value}set value2(e){this._value2!==e&&(this._value2=e,this.update())}get textValue(){return`${this._decorate(this._value)} - ${this._decorate(this._value2)}`}setThumbSize(e){super.setThumbSize(e,2)}_update(){super._update();const e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;const t=this._getRatio(this._value),s=this._getRatio(this._value2);this._progress={left:`${(this._innerWidth*t+.25*this._innerPadding).toFixed(2)}px`,right:`${(this._innerWidth*s+.75*this._innerPadding).toFixed(2)}px`}}}class Ts extends As{get stepWidth(){return`${this._stepWidth.toFixed(3)}px`}_update(){super._update();const e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))}}const Ss="step",vs="double",ys="double-step",Cs="default";class Ns extends xe.core.Instance{static get instanceClassName(){return"Range"}init(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(bs.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(bs.VALUE,this.setValue.bind(this)),this.addAscent(bs.VALUE2,this.setValue2.bind(this)),this.getAttribute(_s.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(_s.RANGE_PREFIX)),this.getAttribute(_s.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(_s.RANGE_SUFFIX)),this.update()}_retrieveType(){switch(!0){case this.matches(_s.RANGE_DOUBLE_STEP):case this.matches(_s.RANGE_DOUBLE):this.type=vs;break;case this.matches(_s.RANGE_STEP):this.type=Ss;break;default:this.type=Cs}}set type(e){if(this._type===e)return;this._type=e;const t=this._model;switch(this._type){case ys:this._model=new Ts;break;case vs:this._model=new As;break;case Ss:this._model=new fs;break;default:this._model=new Es}this._model.configure(t)}get type(){return this._type}_retrieveSize(){this._model.isSm=this.matches(_s.RANGE_SM)}resize(){this._retrieveWidth(),this.update()}_retrieveWidth(){this._model.width=this.getRect().width}setValue(e){switch(this._model.value=e,this._type){case ys:case vs:this.descend(bs.VALUE,e)}this.update()}setValue2(e){this._model.value2=e,this.descend(bs.VALUE2,e),this.update()}setConstraints(e){this._model.setConstraints(e),this.update(),this.descend(bs.CONSTRAINTS,e)}setPrefix(e){this._model.setPrefix(e),this.update()}setSuffix(e){this._model.setSuffix(e),this.update()}mutate(e){switch(!0){case e.includes("class"):this._retrieveType(),this._retrieveSize();break;case e.includes(_s.RANGE_PREFIX):case e.includes(_s.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(_s.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(_s.RANGE_SUFFIX)),this.update()}}update(){this._model.update(),this.descend(bs.OUTPUT,this._model.output),this.descend(bs.MIN,this._model.textMin),this.descend(bs.MAX,this._model.textMax);const e=this._model.progress;e.left?this.style.setProperty("--progress-left",e.left):this.style.removeProperty("--progress-left"),e.right?(this.style.setProperty("--progress-right",e.right),this.isLegacy&&e.left&&(this.style.setProperty("background-position-x",e.left),this.style.setProperty("background-size",`${parseFloat(e.right)-parseFloat(e.left)}px ${this._model.isSm?"8px":"12px"}`))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")}mouseMove(e){if(this._type!==vs&&this._type!==ys)return;const t=e.x-this.getRect().left;this.descend(bs.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left){this.hasAttribute("min")||this.setAttribute("min",0),this.ascend(bs.CONSTRAINTS,new Rs(this.node)),this.ascend(bs.DISABLED,this.node.disabled)})),this.addDescent(bs.VALUE2,this.setValue.bind(this))}get proxy(){const e=this,t={get value(){return e.value},set value(t){e.value=t}};return xe.internals.property.completeAssign(super.proxy,t)}_enablePointer(e){const t=e===this._pointerId;this._isPointerEnabled!==t&&(this._isPointerEnabled=t,t?this.style.removeProperty("pointer-events"):this.style.setProperty("pointer-events","none"))}get value(){return parseFloat(this.node.value)}set value(e){const t=parseFloat(e);t!==this._value&&(this._value=t,this.node.value=t,this.dispatch("change"),this.change())}setValue(e){parseFloat(this.node.value)>e&&(this.value=e)}change(){this.ascend(bs.VALUE,this._value)}render(){const e=parseFloat(this.node.value);e!==this._value&&(this.value=e)}mutate(e){e.includes("disabled")&&this.ascend(bs.DISABLED,this.node.disabled),(e.includes("min")||e.includes("max")||e.includes("step"))&&(this.ascend(bs.CONSTRAINTS,new Rs(this.node)),this.change())}dispose(){this._listenerType&&this.unlisten(this._listenerType,this._changing)}}class Ls extends xe.core.Instance{static get instanceClassName(){return"RangeOutput"}init(){this.addDescent(bs.OUTPUT,this.change.bind(this))}change(e){this.node.innerText=e.text,this.node.style.transform=e.transform}}class ws extends xe.core.Instance{static get instanceClassName(){return"RangeLimit"}init(){switch(!0){case this.matches(_s.RANGE_MIN):this.addDescent(bs.MIN,this.change.bind(this));break;case this.matches(_s.RANGE_MAX):this.addDescent(bs.MAX,this.change.bind(this))}}change(e){this.node.innerText=e}}xe.range={Range:Ns,RangeInput:Ds,RangeInput2:class extends Ds{static get instanceClassName(){return"RangeInput2"}_init(){this._pointerId=2,this.addDescent(bs.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(bs.VALUE,this.setValue.bind(this))}setValue(e){parseFloat(this.node.value)e.replace('id="',"").replace('"',"")));const r=["aria-controls","aria-describedby","aria-labelledby"];let a=s.replace(/id="(.*?)"/gm,`id="$1${t}"`);for(const e of r){const i=s.match(new RegExp(`${e}="(.*?)"`,"gm"));if(i)for(const s of i){const i=s.replace(`${e}="`,"").replace('"',"");n.includes(i)&&(a=a.replace(`${e}="${i}"`,`${e}="${i+t}"`))}}if(a!==i)switch(xe.mode){case xe.Modes.ANGULAR:case xe.Modes.REACT:case xe.Modes.VUE:this.warn(`header__tools-links content is different from header__menu-links content.\nAs you're using a dynamic framework, you should handle duplication of this content yourself, please refer to documentation:\n${xe.header.doc}`);break;default:this.menuLinks.innerHTML=a}}}class Os extends xe.core.Instance{static get instanceClassName(){return"HeaderModal"}init(){this.storeAria(),this.isResizing=!0}resize(){this.isBreakpoint(xe.core.Breakpoints.LG)?this.deactivateModal():this.activateModal()}activateModal(){const e=this.element.getInstance("Modal");e&&(e.isEnabled=!0,this.restoreAria(),this.listenClick({capture:!0}))}deactivateModal(){const e=this.element.getInstance("Modal");e&&(e.conceal(),e.isEnabled=!1,this.storeAria(),this.unlistenClick({capture:!0}))}storeAria(){this.hasAttribute("aria-labelledby")&&(this._ariaLabelledby=this.getAttribute("aria-labelledby")),this.hasAttribute("aria-label")&&(this._ariaLabel=this.getAttribute("aria-label")),this.removeAttribute("aria-labelledby"),this.removeAttribute("aria-label")}restoreAria(){this._ariaLabelledby&&this.setAttribute("aria-labelledby",this._ariaLabelledby),this._ariaLabel&&this.setAttribute("aria-label",this._ariaLabel)}handleClick(e){if(e.target.matches("a, button")&&!e.target.matches("[aria-controls]")&&!e.target.matches(xe.core.DisclosureSelector.PREVENT_CONCEAL)){this.element.getInstance("Modal").conceal()}}}xe.header={HeaderLinks:xs,HeaderModal:Os,HeaderSelector:Is,doc:"https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/en-tete"},xe.internals.register(xe.header.HeaderSelector.TOOLS_LINKS,xe.header.HeaderLinks),xe.internals.register(xe.header.HeaderSelector.MODALS,xe.header.HeaderModal);const Ps={DISPLAY:xe.internals.ns.selector("display"),RADIO_BUTTONS:`input[name="${xe.internals.ns("radios-theme")}"]`,FIELDSET:xe.internals.ns.selector("fieldset")};class ks extends xe.core.Instance{static get instanceClassName(){return"Display"}init(){if(this.radios=this.querySelectorAll(Ps.RADIO_BUTTONS),xe.scheme){this.changing=this.change.bind(this);for(const e of this.radios)e.addEventListener("change",this.changing);this.addDescent(xe.scheme.SchemeEmission.SCHEME,this.apply.bind(this)),this.ascend(xe.scheme.SchemeEmission.ASK)}else this.querySelector(Ps.FIELDSET).setAttribute("disabled","")}get scheme(){return this._scheme}set scheme(e){if(this._scheme!==e&&xe.scheme)switch(e){case xe.scheme.SchemeValue.SYSTEM:case xe.scheme.SchemeValue.LIGHT:case xe.scheme.SchemeValue.DARK:this._scheme=e;for(const t of this.radios)t.checked=t.value===e;this.ascend(xe.scheme.SchemeEmission.SCHEME,e)}}change(){for(const e of this.radios)if(e.checked)return void(this.scheme=e.value)}apply(e){this.scheme=e}dispose(){for(const e of this.radios)e.removeEventListener("change",this.changing)}}xe.display={Display:ks,DisplaySelector:Ps},xe.internals.register(xe.display.DisplaySelector.DISPLAY,xe.display.Display);const Ms={SCROLLABLE:xe.internals.ns.emission("table","scrollable"),CHANGE:xe.internals.ns.emission("table","change"),CAPTION_HEIGHT:xe.internals.ns.emission("table","captionheight"),CAPTION_WIDTH:xe.internals.ns.emission("table","captionwidth")};class Gs extends xe.core.Instance{static get instanceClassName(){return"Table"}init(){this.addAscent(Ms.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){this.setProperty("--table-offset",e)}}class $s extends xe.core.Instance{static get instanceClassName(){return"TableWrapper"}init(){this.addAscent(Ms.CAPTION_HEIGHT,this.setCaptionHeight.bind(this))}setCaptionHeight(e){requestAnimationFrame((()=>this.ascend(Ms.CAPTION_HEIGHT,0))),this.setProperty("--table-offset",e)}}const Hs={TABLE:xe.internals.ns.selector("table"),TABLE_WRAPPER:[`${xe.internals.ns.selector("table")} ${xe.internals.ns.selector("table__wrapper")}`],SHADOW:xe.internals.ns.selector("table__shadow"),SHADOW_LEFT:xe.internals.ns.selector("table__shadow--left"),SHADOW_RIGHT:xe.internals.ns.selector("table__shadow--right"),ELEMENT:[`${xe.internals.ns.selector("table")}:not(${xe.internals.ns.selector("table--no-scroll")}) table`],CAPTION:`${xe.internals.ns.selector("table")} table caption`,ROW:`${xe.internals.ns.selector("table")} tbody tr`,COL:`${xe.internals.ns.selector("table")} thead th`};class Us extends xe.core.Instance{static get instanceClassName(){return"TableElement"}init(){this.listen("scroll",this.scroll.bind(this)),this.content=this.querySelector("tbody"),this.tableOffsetHeight=0,this.isResizing=!0}get isScrolling(){return this._isScrolling}set isScrolling(e){this._isScrolling!==e&&(this._isScrolling=e,e?(this.addClass(Hs.SHADOW),this.scroll()):(this.removeClass(Hs.SHADOW),this.removeClass(Hs.SHADOW_LEFT),this.removeClass(Hs.SHADOW_RIGHT)))}scroll(){const e=this.node.scrollLeft<=0,t=this.content.offsetWidth-this.node.offsetWidth-0,s=Math.abs(this.node.scrollLeft)>=t,i="rtl"===document.documentElement.getAttribute("dir"),n=i?Hs.SHADOW_RIGHT:Hs.SHADOW_LEFT,r=i?Hs.SHADOW_LEFT:Hs.SHADOW_RIGHT;e?this.removeClass(n):this.addClass(n),s?this.removeClass(r):this.addClass(r)}resize(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth}dispose(){this.isScrolling=!1}}class Bs extends xe.core.Instance{static get instanceClassName(){return"TableCaption"}init(){this.height=0,this.isResizing=!0}resize(){const e=this.getRect().height;this.height!==e&&(this.height=e,this.ascend(Ms.CAPTION_HEIGHT,`calc(${e}px + 1rem)`))}}class Fs extends xe.core.Instance{static get instanceClassName(){return"TableRow"}init(){xe.checkbox&&(this.addAscent(et.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(et.RETRIEVE))}_handleCheckboxChange(e){"row-select"!==e.name&&"true"!==e.getAttribute(xe.internals.ns.attr("row-select"))||(this.isSelected=!0===e.checked)}render(){const e=this.getRect().height+2;this._height!==e&&(this._height=e,this.setProperty("--row-height",`${this._height}px`))}get isSelected(){return this._isSelected}set isSelected(e){this._isSelected!==e&&(this.isRendering=e,this._isSelected=e,this.setAttribute("aria-selected",e))}}xe.table={Table:Gs,TableWrapper:$s,TableElement:Us,TableCaption:Bs,TableSelector:Hs,TableRow:Fs},xe.internals.register(xe.table.TableSelector.TABLE,xe.table.Table),xe.internals.register(xe.table.TableSelector.TABLE_WRAPPER,xe.table.TableWrapper),xe.internals.register(xe.table.TableSelector.ELEMENT,xe.table.TableElement),xe.internals.register(xe.table.TableSelector.CAPTION,xe.table.TableCaption),xe.internals.register(xe.table.TableSelector.ROW,xe.table.TableRow); diff --git a/dsfr/static/dsfr/dist/dsfr/dsfr.nomodule.min.js b/dsfr/static/dsfr/dist/dsfr/dsfr.nomodule.min.js index 25af1cedd..7dc1c03d6 100644 --- a/dsfr/static/dsfr/dist/dsfr/dsfr.nomodule.min.js +++ b/dsfr/static/dsfr/dist/dsfr/dsfr.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -!function(){"use strict";var t=function(){this.modules={}},e={isActive:{configurable:!0},isLegacy:{configurable:!0}};t.prototype.create=function(t){var e=new t;this.modules[e.type]=e},t.prototype.getModule=function(t){return this.modules[t]},t.prototype.add=function(t,e){this.modules[t].add(e)},t.prototype.remove=function(t,e){this.modules[t].remove(e)},e.isActive.get=function(){return this._isActive},e.isActive.set=function(t){var e=this;if(t!==this._isActive){this._isActive=t;var r=Object.keys(this.modules).map((function(t){return e.modules[t]}));if(t)for(var n=0,i=r;n0){for(var i="",o=0;o-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)},v.prototype.remove=function(t){var e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()},v.prototype.execute=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];for(var r=0,n=this._collection;r-1},O.prototype.introduce=function(){this.isIntroduced||(this.isIntroduced=!0,r.getModule("stage").parse(document.documentElement,this))},O.prototype.parse=function(t,e){var r=[];return t.matches&&t.matches(this.selector)&&r.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&r.push.apply(r,S(t,this.selector)),r},O.prototype.create=function(t){if(t.node.matches(this.selector)){var e=new this.InstanceClass;return this.instances.add(e),e}},O.prototype.remove=function(t){this.instances.remove(t)},O.prototype.dispose=function(){for(var t=this.instances.collection,e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null},j.instanceClassName.get=function(){return this._instanceClassName},j.instanceClassNames.get=function(){return this._instanceClassNames},j.property.get=function(){return this._property},j.attribute.get=function(){return this._attribute},Object.defineProperties(O.prototype,j);var T=function(t){function e(){t.call(this,"register")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,n){var i=new O(t,e,n);return this.add(i),r.isActive&&i.introduce(),i},e.prototype.activate=function(){for(var t=0,e=this.collection;t");return this.node.outerHTML.substring(0,t+1)},A.prototype.project=function(t){-1===this._projects.indexOf(t)&&this._projects.push(t)},A.prototype.populate=function(){var t=this._projects.slice();this._projects.length=0;for(var e=0,r=t;e-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]},N.parent.get=function(){return this._parent},N.ascendants.get=function(){return[this.parent].concat(this.parent.ascendants)},N.children.get=function(){return this._children},N.descendants.get=function(){var t=[].concat(this._children);return this._children.forEach((function(e){return t.push.apply(t,e.descendants)})),t},A.prototype.addChild=function(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){var e=this.instances[t];e&&e._dispose()}this.instances.length=0,r.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug("remove element ["+this.id+"] "+this.html)},A.prototype.prepare=function(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)},A.prototype.examine=function(){var t=this.attributeNames.slice();this.attributeNames.length=0;for(var e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)},Object.defineProperties(A.prototype,N);var C={CLICK:w.emission("root","click"),KEYDOWN:w.emission("root","keydown"),KEYUP:w.emission("root","keyup")},I={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},L=function(t){return Object.values(I).filter((function(e){return e.value===t}))[0]},M=function(t){function e(){t.call(this,document.documentElement,"root"),this.node.setAttribute(w.attr("js"),!0),this.listen()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})},e.prototype.click=function(t){this.emit(C.CLICK,t.target)},e.prototype.keydown=function(t){this.emit(C.KEYDOWN,L(t.keyCode))},e.prototype.keyup=function(t){this.emit(C.KEYUP,L(t.keyCode))},e}(A),D=function(t){function e(){t.call(this,"stage"),this.root=new M,t.prototype.add.call(this,this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasElement=function(t){for(var e=0,r=this.collection;e-1;n--){var i=e.children[n],o=t.node.compareDocumentPosition(i.node);if(o&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,i);if(o&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(i),t.addChild(i,0);else if(o&Node.DOCUMENT_POSITION_PRECEDING){r=n+1;break}}e.addChild(t,r)},e.prototype.activate=function(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})},e.prototype.deactivate=function(){this.observer.disconnect()},e.prototype.mutate=function(t){var e=this,r=[];t.forEach((function(t){switch(t.type){case"childList":t.removedNodes.forEach((function(t){return e.dispose(t)})),t.addedNodes.forEach((function(t){return e.parse(t)}));break;case"attributes":if(e.hasElement(t.target)){var n=e.getElement(t.target);n.prepare(t.attributeName),-1===r.indexOf(n)&&r.push(n);for(var i=0,o=n.descendants;i0&&document.documentElement.style.setProperty("--scrollbar-width",t+"px")}},e.prototype.unlock=function(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(w.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"))},e.prototype.move=function(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)},Object.defineProperties(e.prototype,r),e}(_),H=function(t){function e(){t.call(this,"load"),this.loading=this.load.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){window.addEventListener("load",this.loading)},e.prototype.load=function(){this.forEach((function(t){return t.load()}))},e}(_),G=["Marianne","Spectral"],$=function(t){function e(){t.call(this,"font-swap"),this.swapping=this.swap.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)},e.prototype.swap=function(){var t=G.filter((function(t){return document.fonts.check("16px "+t)}));this.forEach((function(e){return e.swapFont(t)}))},e}(_),F=function(t){function e(){t.call(this,"mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))},e.prototype.unlisten=function(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))},e.prototype.request=function(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))},e.prototype.move=function(){var t=this;this.requireMove&&(this.forEach((function(e){return e.mouseMove(t.point)})),this.requireMove=!1)},e}(_),U=function(t){function e(){t.call(this,"hash"),this.handling=this.handle.bind(this),this.getLocationHash()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={hash:{configurable:!0}};return e.prototype.activate=function(){window.addEventListener("hashchange",this.handling)},e.prototype.deactivate=function(){window.removeEventListener("hashchange",this.handling)},e.prototype._sanitize=function(t){return"#"===t.charAt(0)?t.substring(1):t},r.hash.set=function(t){var e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)},r.hash.get=function(){return this._hash},e.prototype.getLocationHash=function(){var t=window.location.hash;this._hash=this._sanitize(t)},e.prototype.handle=function(t){var e=this;this.getLocationHash(),this.forEach((function(r){return r.handleHash(e._hash,t)}))},Object.defineProperties(e.prototype,r),e}(_),z=function(){r.create(T),r.create(D),r.create(x),r.create(R),r.create(k),r.create(H),r.create($),r.create(F),r.create(U);var t=r.getModule("register");this.register=t.register.bind(t)},B={isActive:{configurable:!0}};B.isActive.get=function(){return r.isActive},z.prototype.start=function(){h.debug("START"),r.isActive=!0},z.prototype.stop=function(){h.debug("STOP"),r.isActive=!1},Object.defineProperties(z.prototype,B);var W=new z,q=function(){};q.prototype.getColor=function(t,e,r,n){void 0===n&&(n={});var i="--"+t+"-"+e+"-"+r+V(n);return getComputedStyle(document.documentElement).getPropertyValue(i).trim()||null};var V=function(t){switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},K=new q,Y=function(t){return"."===t.charAt(0)?t.substr(1):t},X=function(t){switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},Q=function(t,e,r){e=Y(e);var n=X(t),i=n.indexOf(e);!0===r?i>-1&&n.splice(i,1):-1===i&&n.push(e),t.className=n.join(" ")},J=function(t,e){return Q(t,e)},Z=function(t,e){return Q(t,e,!0)},tt=function(t,e){return X(t).indexOf(Y(e))>-1},et=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),rt=function(t){return t.querySelectorAll(et)},nt=0,it=function(t){if(!document.getElementById(t))return t;for(var e=!0,r=t;e;)t=r+"-"+ ++nt,e=document.getElementById(t);return t},ot={addClass:J,hasClass:tt,removeClass:Z,queryParentSelector:E,querySelectorAllArray:S,queryActions:rt,uniqueId:it},st=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._width=t,this._height=e,this._content=""},at={width:{configurable:!0},height:{configurable:!0},content:{configurable:!0}};at.width.get=function(){return this._width},at.width.set=function(t){this._width=t},at.height.get=function(){return this._height},at.height.set=function(t){this._height=t},at.content.get=function(){return this._content},at.content.set=function(t){this._content=t},st.prototype.getDataURI=function(t){void 0===t&&(t=!1);var e=""+this._content+"";return e=e.replace(/#/gi,"%23"),t&&(e=(e=(e=(e=(e=e.replace(//gi,"%3E")).replace(/"/gi,"'")).replace(/{/gi,"%7B")).replace(/}/gi,"%7D")),"data:image/svg+xml;charset=utf8,"+e},Object.defineProperties(st.prototype,at);var ct={DataURISVG:st},lt={supportLocalStorage:function(){try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:function(){return!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")}},ut={TransitionSelector:{NONE:w.selector("transition-none")}},pt=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return e.forEach((function(e){var r=Object.keys(e).reduce((function(t,r){return t[r]=Object.getOwnPropertyDescriptor(e,r),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);n.enumerable&&(r[t]=n)})),Object.defineProperties(t,r)})),t},ht={completeAssign:pt},ft={},dt={};Object.defineProperty(dt,"isLegacy",{get:function(){return r.isLegacy}}),dt.setLegacy=function(){r.isLegacy=!0},ft.legacy=dt,ft.dom=ot,ft.image=ct,ft.support=lt,ft.motion=ut,ft.property=ht,ft.ns=w,ft.register=W.register,ft.state=r,ft.query=function(t){if(t&&t.search){var e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null}(window.location),Object.defineProperty(ft,"preventManipulation",{get:function(){return g.preventManipulation}}),Object.defineProperty(ft,"stage",{get:function(){return r.getModule("stage")}});var yt=function(t){return r.getModule("stage").getProxy(t)};yt.version=s,yt.prefix=n,yt.organisation=o,yt.Modes=d,Object.defineProperty(yt,"mode",{set:function(t){g.mode=t},get:function(){return g.mode}}),yt.internals=ft,yt.version=s,yt.start=W.start,yt.stop=W.stop,yt.inspector=h,yt.colors=K;var bt=window[i];yt.internals.configuration=bt,g.configure(bt,yt.start,yt.internals.query),window[i]=yt;var gt=function(){this.emissions={}};gt.prototype.add=function(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)},gt.prototype.remove=function(t,e){if(this.emissions[t])if(e){var r=this.emissions[t].indexOf(e);r>-1&&this.emissions[t].splice(r)}else delete this.emissions[t]},gt.prototype.emit=function(t,e){if(!this.emissions[t])return[];for(var r=[],n=0,i=this.emissions[t];nwindow.innerHeight&&e.move(t.bottom-window.innerHeight+50)},_t.prototype.matches=function(t){return this.node.matches(t)},_t.prototype.querySelector=function(t){return this.node.querySelector(t)},_t.prototype.querySelectorAll=function(t){return S(this.node,t)},_t.prototype.queryParentSelector=function(t){return E(this.node,t)},_t.prototype.getRect=function(){var t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t},wt.isLegacy.get=function(){return r.isLegacy},Object.defineProperties(_t.prototype,wt),Object.defineProperties(_t,St);var Et=function(t,e,r,n,i){this.type=t,this.eventType="key"+t,this.keyCode=e,this.closure=r,this.preventDefault=!0===n,this.stopPropagation=!0===i};Et.prototype.handle=function(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())};var Ot=function(t,e,r,n){this._node=t,this._type=e,this._closure=r,this._options=n},jt={closure:{configurable:!0}};jt.closure.get=function(){return this._closure},Ot.prototype.listen=function(){this._node.addEventListener(this._type,this._closure,this._options)},Ot.prototype.matchOptions=function(t){var e=this;switch(void 0===t&&(t=null),!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((function(r){return e._options[r]===t[r]})):return!0}return!1},Ot.prototype.unlisten=function(){this._node.removeEventListener(this._type,this._closure,this._options)},Object.defineProperties(Ot.prototype,jt);var Tt=function(t,e){this.hash=t,this.add=e};Tt.prototype.handle=function(t,e){this.hash===t&&this.add(e)};var Pt={DISCLOSE:w.event("disclose"),CONCEAL:w.event("conceal")},At={RESET:w.emission("disclosure","reset"),ADDED:w.emission("disclosure","added"),RETRIEVE:w.emission("disclosure","retrieve"),REMOVED:w.emission("disclosure","removed"),GROUP:w.emission("disclosure","group"),UNGROUP:w.emission("disclosure","ungroup"),SPOTLIGHT:w.emission("disclosure","spotlight")},Nt=function(t){function e(e,r,n,i){t.call(this),this.type=e,this._selector=r,this.DisclosureButtonInstanceClass=n,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isEnabled:{configurable:!0},isPristine:{configurable:!0},proxy:{configurable:!0},buttons:{configurable:!0},group:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0},primaryButtons:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Disclosure"},e.prototype.init=function(){this.addDescent(At.RESET,this.reset.bind(this)),this.addDescent(At.GROUP,this.update.bind(this)),this.addDescent(At.UNGROUP,this.update.bind(this)),this.addAscent(At.SPOTLIGHT,this.disclose.bind(this)),this.register('[aria-controls="'+this.id+'"]',this.DisclosureButtonInstanceClass),this.ascend(At.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()},r.isEnabled.get=function(){return t.prototype.isEnabled},r.isEnabled.set=function(e){this.isEnabled!==e&&(t.prototype.isEnabled=e,e?this.ascend(At.ADDED):this.ascend(At.REMOVED))},r.isPristine.get=function(){return this._isPristine},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});return this.type.canConceal&&(r.conceal=e.conceal.bind(e)),pt(r,{get buttons(){return e.buttons.map((function(t){return t.proxy}))},get group(){var t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})},r.buttons.get=function(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)},e.prototype.update=function(){this.getGroup(),this.retrievePrimaries()},e.prototype.getGroup=function(){if(this.disclosuresGroupInstanceClassName){var t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}else this._group=null},r.group.get=function(){return this._group},e.prototype.disclose=function(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)},e.prototype.conceal=function(t,e){return void 0===e&&(e=!0),!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(At.RESET),!0))},r.isDisclosed.get=function(){return this._isDisclosed},r.isDisclosed.set=function(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?Pt.DISCLOSE:Pt.CONCEAL,this.type),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(var e=0;e0)},e.prototype.focus=function(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()},r.primaryButtons.get=function(){return this._primaryButtons},e.prototype.retrievePrimaries=function(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))},e.prototype._retrievePrimaries=function(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}},e.prototype.retrieved=function(){},e.prototype._spotlight=function(){var t=this;this.disclose(),this.request((function(){t.ascend(At.SPOTLIGHT)}))},e.prototype._electPrimaries=function(t){var e=this;return t.filter((function(t){return t.canDisclose&&!e.node.contains(t.node)}))},e.prototype.applyAbility=function(t){void 0===t&&(t=!1);var e=!this._primaryButtons.every((function(t){return t.isDisabled}));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(At.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(At.ADDED),this.hash===this.id&&this._spotlight())))},e.prototype.dispose=function(){this._group=null,this._primaryButtons=null,t.prototype.dispose.call(this),this.ascend(At.REMOVED)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),Ct=function(t){function e(e){t.call(this),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:w.attr(e.id),this._canDisclose=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isPrimary:{configurable:!0},canDisclose:{configurable:!0},isDisabled:{configurable:!0},proxy:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},dx:{configurable:!0},dy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosureButton"},r.isPrimary.get=function(){return this.registration.creator.primaryButtons.includes(this)},r.canDisclose.get=function(){return this._canDisclose},r.isDisabled.get=function(){return this.type.canDisable&&this.hasAttribute("disabled")},e.prototype.init=function(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{focus:this.focus.bind(this)})},e.prototype.handleClick=function(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)},e.prototype.mutate=function(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())},e.prototype.apply=function(t){var e=this;this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((function(){e._isApplying=!1})))},r.isDisclosed.get=function(){return"true"===this.getAttribute(this.attributeName)},r.isInitiallyDisclosed.get=function(){return this._isInitiallyDisclosed},e.prototype.focus=function(){t.prototype.focus.call(this),this.scrollIntoView()},e.prototype.measure=function(t){var e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y},r.dx.get=function(){return this._dx},r.dy.get=function(){return this._dy},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),It={PREVENT_CONCEAL:w.attr.selector("prevent-conceal"),GROUP:w.attr("group")},Lt=function(t){function e(e,r){t.call(this,r),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},members:{configurable:!0},length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0},isGrouped:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosuresGroup"},e.prototype.init=function(){this.addAscent(At.ADDED,this.update.bind(this)),this.addAscent(At.RETRIEVE,this.retrieve.bind(this)),this.addAscent(At.REMOVED,this.update.bind(this)),this.descend(At.GROUP),this._isGrouped="false"!==this.getAttribute(It.GROUP),this.update()},r.proxy.get=function(){var e=this,r={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){var t=e.current;return t?t.proxy:null},get members(){return e.members.map((function(t){return t.proxy}))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return pt.call(this,t.prototype.proxy,r)},e.prototype.validate=function(t){return!0},e.prototype.getMembers=function(){var t=this,e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((function(t){return t.isEnabled})),e.filter((function(e){return!t._members.includes(e)})).forEach((function(t){return t.conceal()}))},e.prototype.retrieve=function(t){void 0===t&&(t=!1),this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))},e.prototype._retrieve=function(){var t=this;if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.hash)for(var e=0;e=this.length||t===this._index)){this._index=t;for(var e=0;e-1}));if(1===r.length)return r;if(1===(e=t.prototype._electPrimaries.call(this,e)).length)return e;var n=e.filter((function(t){return t.dy>=0}));if(n.length>0&&(e=n),1===e.length)return e;var i=Math.min.apply(Math,e.map((function(t){return t.dy}))),o=e.filter((function(t){return t.dy===i}));return o.length>0&&(e=o),1===e.length||e.sort((function(t,e){return Math.abs(e.dx)-Math.abs(t.dx)})),e},Object.defineProperties(e,r),e}(Nt),kt=function(t){function e(){t.call(this,"Collapse")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CollapsesGroup"},r.canUngroup.get=function(){return!0},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Lt),Ht={CHANGE:w("equisized")},Gt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Equisized"},e.prototype.init=function(){this.ascend(Ht.CHANGE)},e.prototype.measure=function(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width},e.prototype.adjust=function(t){this.isLegacy&&(this.style.width=t+"px")},e.prototype.dispose=function(){this.ascend(Ht.CHANGE)},Object.defineProperties(e,r),e}(_t),$t=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"EquisizedsGroup"},e.prototype.init=function(){this.isResizing=!0,this.isLoading=!0,this.addAscent(Ht.CHANGE,this.resize.bind(this))},e.prototype.load=function(){this.resize()},e.prototype.resize=function(){var t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");var e=Math.max.apply(Math,t.map((function(t){return t.measure()})));this.isLegacy?t.forEach((function(t){return t.adjust(e)})):this.style.setProperty("--equisized-width",e+"px")},Object.defineProperties(e,r),e}(_t),Ft={TOGGLE:w.event("toggle")},Ut=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={pressed:{configurable:!0},proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Toggle"},e.prototype.init=function(){this.pressed="true"===this.pressed,this.listenClick()},e.prototype.handleClick=function(){this.toggle()},e.prototype.toggle=function(){this.pressed="true"!==this.pressed},r.pressed.get=function(){return this.getAttribute("aria-pressed")},r.pressed.set=function(t){this.setAttribute("aria-pressed",t?"true":"false"),this.dispatch(Ft.TOGGLE,t)},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{toggle:e.toggle.bind(e)});return pt(r,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"InjectSvg"},e.prototype.init=function(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})},e.prototype.fetch=function(){var t=this;this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((function(t){return t.text()})).then((function(e){var r=(new DOMParser).parseFromString(e,"text/html");t.svg=r.querySelector("svg"),t.svg&&t.replace()})))},e.prototype.replace=function(){if(this.svg){this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);var t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-','id="'+t+"-artwork-"),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-','"#'+t+"-artwork-"))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,r;e=this.svg,r={"aria-hidden":!0,focusable:!1},Object.keys(r).forEach((function(t){return e.setAttribute(t,r[t])})),this.node.replaceChild(this.svg,this.img)}else this.fetch()},e.prototype.restore=function(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),Bt={INJECT_SVG:"["+w.attr("inject-svg")+"]"},Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Artwork"},e.prototype.init=function(){this.isLegacy&&this.replace()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{replace:this.replace.bind(this)})},e.prototype.fetch=function(){var t=this;this.xlink=this.node.getAttribute("href");var e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];var r=new XMLHttpRequest;r.onload=function(){var e=(new DOMParser).parseFromString(r.responseText,"text/html");t.realSvgContent=e.getElementById(t.svgName),t.realSvgContent&&("symbol"===t.realSvgContent.tagName?(t.use=e.querySelector('use[href="#'+t.svgName+'"]'),t.use&&t.node.parentNode.insertBefore(t.use,t.node)):t.realSvgContent.classList.add(t.node.classList),t.replace())},r.open("GET",this.svgUrl),r.send()},e.prototype.replace=function(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),qt={ARTWORK_USE:w.selector("artwork")+" use"},Vt={ASSESS_FILE:""+w.attr.selector("assess-file"),DETAIL:w.attr.selector("assess-file")+' [class$="__detail"], '+w.attr.selector("assess-file")+' [class*="__detail "]'},Kt={UPDATE:w.emission("assess","update"),ADDED:w.emission("assess","added")},Yt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessFile"},e.prototype.init=function(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Kt.ADDED,this.update.bind(this)),this.addDescent(Kt.ADDED,this.update.bind(this))},e.prototype.getFileLength=function(){var t=this;void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((function(e){t.length=e.headers.get("content-length")||-1,-1===t.length&&h.warn("File size unknown: "+t.href+'\nUnable to get HTTP header: "content-length"'),t.gather()})):this.length=-1},e.prototype.mutate=function(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())},e.prototype.gather=function(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){var t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()},e.prototype.update=function(){this.details&&(this.descend(Kt.UPDATE,this.details),this.ascend(Kt.UPDATE,this.details))},e.prototype.getLang=function(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)},e.prototype.parseExtension=function(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")},e.prototype.getLangDisplayName=function(t){if(this.isLegacy)return t;var e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)},e.prototype.bytesToSize=function(t){if(-1===t)return null;var e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(w.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);var r=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===r)return t+" "+e[r];var n=t/Math.pow(1e3,r),i=Math.round(100*(n+Number.EPSILON))/100;return String(i).replace(".",",")+" "+e[r]},Object.defineProperties(e,r),e}(_t),Xt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessDetail"},e.prototype.init=function(){this.addDescent(Kt.UPDATE,this.update.bind(this)),this.ascend(Kt.ADDED)},e.prototype.update=function(t){this.node.innerHTML=t.join(" - ")},Object.defineProperties(e,r),e}(_t),Qt=["32x9","16x9","3x2","4x3","1x1","3x4","2x3"],Jt=function(t,e){return e.map((function(e){return w.selector(t+"--"+e)})).join(",")},Zt=w.selector("responsive-img")+", "+Jt("responsive-img",Qt)+", "+w.selector("responsive-vid")+", "+Jt("responsive-vid",["16x9","4x3","1x1"]),te={RATIO:w.selector("ratio")+", "+Jt("ratio",Qt)+", "+Zt},ee=window[i],re=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Ratio"},e.prototype.init=function(){if(!ee.internals.support.supportAspectRatio()){for(var t in this.ratio=16/9,this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){var e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}},e.prototype.render=function(){this.getRect().width!==this.currentWidth&&this.update()},e.prototype.update=function(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"},Object.defineProperties(e,r),e}(_t),ne={TOP:w.selector("placement--top"),RIGHT:w.selector("placement--right"),BOTTOM:w.selector("placement--bottom"),LEFT:w.selector("placement--left")},ie={START:w.selector("placement--start"),CENTER:w.selector("placement--center"),END:w.selector("placement--end")},oe={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},se={START:"align_start",CENTER:"align_center",END:"align_end"},ae={AUTO:"placement_auto",MANUAL:"placement_manual"},ce=function(t){function e(e,r,n,i){void 0===e&&(e=ae.AUTO),void 0===r&&(r=[oe.BOTTOM,oe.TOP,oe.LEFT,oe.RIGHT]),void 0===n&&(n=[se.CENTER,se.START,se.END]),void 0===i&&(i=16),t.call(this),this._mode=e,this._places=r,this._aligns=n,this._safeAreaMargin=i,this._isShown=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},mode:{configurable:!0},place:{configurable:!0},align:{configurable:!0},isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Placement"},e.prototype.init=function(){this.isResizing=!0},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return pt(r,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})},r.mode.get=function(){return this._mode},r.mode.set=function(t){this._mode=t},r.place.get=function(){return this._place},r.place.set=function(t){if(this._place!==t){switch(this._place){case oe.TOP:this.removeClass(ne.TOP);break;case oe.RIGHT:this.removeClass(ne.RIGHT);break;case oe.BOTTOM:this.removeClass(ne.BOTTOM);break;case oe.LEFT:this.removeClass(ne.LEFT)}switch(this._place=t,this._place){case oe.TOP:this.addClass(ne.TOP);break;case oe.RIGHT:this.addClass(ne.RIGHT);break;case oe.BOTTOM:this.addClass(ne.BOTTOM);break;case oe.LEFT:this.addClass(ne.LEFT)}}},r.align.get=function(){return this._align},r.align.set=function(t){if(this._align!==t){switch(this._align){case se.START:this.removeClass(ie.START);break;case se.CENTER:this.removeClass(ie.CENTER);break;case se.END:this.removeClass(ie.END)}switch(this._align=t,this._align){case se.START:this.addClass(ie.START);break;case se.CENTER:this.addClass(ie.CENTER);break;case se.END:this.addClass(ie.END)}}},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},r.isShown.get=function(){return this._isShown},r.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)},e.prototype.setReferent=function(t){this._referent=t},e.prototype.resize=function(){this.safeArea={top:this._safeAreaMargin,right:window.innerWidth-this._safeAreaMargin,bottom:window.innerHeight-this._safeAreaMargin,left:this._safeAreaMargin,center:.5*window.innerWidth,middle:.5*window.innerHeight}},e.prototype.render=function(){if(this._referent){if(this.rect=this.getRect(),this.referentRect=this._referent.getRect(),this.mode===ae.AUTO)switch(this.place=this.getPlace(),this.place){case oe.TOP:case oe.BOTTOM:this.align=this.getHorizontalAlign();break;case oe.LEFT:case oe.RIGHT:this.align=this.getVerticalAlign()}var t,e;switch(this.place){case oe.TOP:e=this.referentRect.top-this.rect.height;break;case oe.RIGHT:t=this.referentRect.right;break;case oe.BOTTOM:e=this.referentRect.bottom;break;case oe.LEFT:t=this.referentRect.left-this.rect.width}switch(this.place){case oe.TOP:case oe.BOTTOM:switch(this.align){case se.CENTER:t=this.referentRect.center-.5*this.rect.width;break;case se.START:t=this.referentRect.left;break;case se.END:t=this.referentRect.right-this.rect.width}break;case oe.RIGHT:case oe.LEFT:switch(this.align){case se.CENTER:e=this.referentRect.middle-.5*this.rect.height;break;case se.START:e=this.referentRect.top;break;case se.END:e=this.referentRect.bottom-this.rect.height}}this._x===t&&this._y===e||(this._x=t+.5|0,this._y=e+.5|0,this.node.style.transform="translate("+this._x+"px,"+this._y+"px)")}},e.prototype.getPlace=function(){for(var t=0,e=this._places;tthis.safeArea.top)return oe.TOP;break;case oe.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return oe.LEFT}}return this._places[0]},e.prototype.getHorizontalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return se.END}}return this._aligns[0]},e.prototype.getVerticalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return se.END}}return this._aligns[0]},e.prototype.dispose=function(){this._referent=null,t.prototype.dispose.call(this)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t),le=function(t){function e(){t.call(this),this._isShown=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={placement:{configurable:!0},isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PlacementReferent"},e.prototype.init=function(){this.registration.creator.setReferent(this),this._placement=this.registration.creator},r.placement.get=function(){return this._placement},r.isShown.get=function(){return this._isShown},r.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this._isShown=t,t?this.registration.creator.show():this.registration.creator.hide())},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(_t);yt.core={Instance:_t,Breakpoints:mt,KeyCodes:I,Disclosure:Nt,DisclosureButton:Ct,DisclosuresGroup:Lt,DisclosureType:Mt,DisclosureEvent:Pt,DisclosureSelector:It,DisclosureEmission:At,Collapse:Rt,CollapseButton:Dt,CollapsesGroup:kt,CollapseSelector:xt,RootSelector:{ROOT:":root"},RootEmission:C,Equisized:Gt,EquisizedEmission:Ht,Toggle:Ut,EquisizedsGroup:$t,InjectSvg:zt,InjectSvgSelector:Bt,Artwork:Wt,ArtworkSelector:qt,AssessFile:Yt,AssessDetail:Xt,AssessEmission:Kt,AssessSelector:Vt,Ratio:re,RatioSelector:te,Placement:ce,PlacementReferent:le,PlacementAlign:se,PlacementPosition:oe,PlacementMode:ae},yt.internals.register(yt.core.CollapseSelector.COLLAPSE,yt.core.Collapse),yt.internals.register(yt.core.InjectSvgSelector.INJECT_SVG,yt.core.InjectSvg),yt.internals.register(yt.core.RatioSelector.RATIO,yt.core.Ratio),yt.internals.register(yt.core.AssessSelector.ASSESS_FILE,yt.core.AssessFile),yt.internals.register(yt.core.AssessSelector.DETAIL,yt.core.AssessDetail);var ue={SYSTEM:"system",LIGHT:"light",DARK:"dark"},pe={THEME:ee.internals.ns.attr("theme"),SCHEME:ee.internals.ns.attr("scheme"),TRANSITION:ee.internals.ns.attr("transition")},he={LIGHT:"light",DARK:"dark"},fe={SCHEME:ee.internals.ns.emission("scheme","scheme"),THEME:ee.internals.ns.emission("scheme","theme"),ASK:ee.internals.ns.emission("scheme","ask")},de={SCHEME:ee.internals.ns.event("scheme"),THEME:ee.internals.ns.event("theme")},ye=function(t){function e(){t.call(this,!1)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},scheme:{configurable:!0},theme:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Scheme"},e.prototype.init=function(){this.changing=this.change.bind(this),this.hasAttribute(pe.TRANSITION)&&(this.removeAttribute(pe.TRANSITION),this.request(this.restoreTransition.bind(this)));var t=ee.internals.support.supportLocalStorage()?localStorage.getItem("scheme"):"",e=this.getAttribute(pe.SCHEME);switch(t){case ue.DARK:case ue.LIGHT:case ue.SYSTEM:this.scheme=t;break;default:switch(e){case ue.DARK:this.scheme=ue.DARK;break;case ue.LIGHT:this.scheme=ue.LIGHT;break;default:this.scheme=ue.SYSTEM}}this.addAscent(fe.ASK,this.ask.bind(this)),this.addAscent(fe.SCHEME,this.apply.bind(this))},r.proxy.get=function(){var e=this,r={get scheme(){return e.scheme},set scheme(t){e.scheme=t}};return ee.internals.property.completeAssign.call(this,t.prototype.proxy,r)},e.prototype.restoreTransition=function(){this.setAttribute(pe.TRANSITION,"")},e.prototype.ask=function(){this.descend(fe.SCHEME,this.scheme)},e.prototype.apply=function(t){this.scheme=t},r.scheme.get=function(){return this._scheme},r.scheme.set=function(t){if(this._scheme!==t){switch(this._scheme=t,t){case ue.SYSTEM:this.listenPreferences();break;case ue.DARK:this.unlistenPreferences(),this.theme=he.DARK;break;case ue.LIGHT:this.unlistenPreferences(),this.theme=he.LIGHT;break;default:return void(this.scheme=ue.SYSTEM)}this.descend(fe.SCHEME,t),ee.internals.support.supportLocalStorage()&&localStorage.setItem("scheme",t),this.setAttribute(pe.SCHEME,t),this.dispatch(de.SCHEME,{scheme:this._scheme})}},r.theme.get=function(){return this._theme},r.theme.set=function(t){if(this._theme!==t)switch(t){case he.LIGHT:case he.DARK:this._theme=t,this.setAttribute(pe.THEME,t),this.descend(fe.THEME,t),this.dispatch(de.THEME,{theme:this._theme}),document.documentElement.style.colorScheme=t===he.DARK?"dark":""}},e.prototype.listenPreferences=function(){this.isListening||(this.isListening=!0,this.mediaQuery=window.matchMedia("(prefers-color-scheme: dark)"),this.mediaQuery.addEventListener&&this.mediaQuery.addEventListener("change",this.changing),this.change())},e.prototype.unlistenPreferences=function(){this.isListening&&(this.isListening=!1,this.mediaQuery.removeEventListener("change",this.changing),this.mediaQuery=null)},e.prototype.change=function(){this.isListening&&(this.theme=this.mediaQuery.matches?he.DARK:he.LIGHT)},e.prototype.mutate=function(t){t.indexOf(pe.SCHEME)>-1&&(this.scheme=this.getAttribute(pe.SCHEME)),t.indexOf(pe.THEME)>-1&&(this.theme=this.getAttribute(pe.THEME))},e.prototype.dispose=function(){this.unlistenPreferences()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),be={SCHEME:":root"+ee.internals.ns.attr.selector("theme")+", :root"+ee.internals.ns.attr.selector("scheme"),SWITCH_THEME:ee.internals.ns.selector("switch-theme"),RADIO_BUTTONS:'input[name="'+ee.internals.ns("radios-theme")+'"]'};ee.scheme={Scheme:ye,SchemeValue:ue,SchemeSelector:be,SchemeEmission:fe,SchemeTheme:he,SchemeEvent:de},ee.internals.register(ee.scheme.SchemeSelector.SCHEME,ee.scheme.Scheme);var ge=ee.internals.ns.selector("accordion"),ve=ee.internals.ns.selector("collapse"),me={GROUP:ee.internals.ns.selector("accordions-group"),ACCORDION:ge,COLLAPSE:ge+" > "+ve+", "+ge+" > *:not("+ge+"):not("+ve+") > "+ve+", "+ge+" > *:not("+ge+"):not("+ve+") > *:not("+ge+"):not("+ve+") > "+ve,COLLAPSE_LEGACY:ge+" "+ve,BUTTON:ge+"__btn"},_e=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Accordion"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(me.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),we=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var r=e.node.matches(ee.internals.legacy.isLegacy?me.COLLAPSE_LEGACY:me.COLLAPSE);return t.prototype.validate.call(this,e)&&r},Object.defineProperties(e,r),e}(ee.core.CollapsesGroup);ee.accordion={Accordion:_e,AccordionSelector:me,AccordionsGroup:we},ee.internals.register(ee.accordion.AccordionSelector.GROUP,ee.accordion.AccordionsGroup),ee.internals.register(ee.accordion.AccordionSelector.ACCORDION,ee.accordion.Accordion);var Se={EQUISIZED_BUTTON:ee.internals.ns.selector("btns-group--equisized")+" "+ee.internals.ns.selector("btn"),EQUISIZED_GROUP:ee.internals.ns.selector("btns-group--equisized")};ee.button={ButtonSelector:Se},ee.internals.register(ee.button.ButtonSelector.EQUISIZED_BUTTON,ee.core.Equisized),ee.internals.register(ee.button.ButtonSelector.EQUISIZED_GROUP,ee.core.EquisizedsGroup);var Ee=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"CardDownload"},e.prototype.init=function(){var t=this;this.addAscent(ee.core.AssessEmission.UPDATE,(function(e){t.descend(ee.core.AssessEmission.UPDATE,e)})),this.addAscent(ee.core.AssessEmission.ADDED,(function(){t.descend(ee.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ee.core.Instance),Oe={DOWNLOAD:ee.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:ee.internals.ns.selector("card--download")+" "+ee.internals.ns.selector("card__end")+" "+ee.internals.ns.selector("card__detail")};ee.card={CardSelector:Oe,CardDownload:Ee},ee.internals.register(ee.card.CardSelector.DOWNLOAD,ee.card.CardDownload),ee.internals.register(ee.card.CardSelector.DOWNLOAD_DETAIL,ee.core.AssessDetail);var je={INPUT:ee.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},Te={CHANGE:ee.internals.ns.emission("checkbox","change"),RETRIEVE:ee.internals.ns.emission("checkbox","retrieve")},Pe=function(t){function e(){t.call(this),this._handlingChange=this.handleChange.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CheckboxInput"},e.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(Te.RETRIEVE,this._handlingChange),this.handleChange()},r.isChecked.get=function(){return this.node.checked},e.prototype.handleChange=function(){this.ascend(Te.CHANGE,this.node)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.checkbox={CheckboxSelector:je,CheckboxEmission:Te,CheckboxInput:Pe},ee.internals.register(ee.checkbox.CheckboxSelector.INPUT,ee.checkbox.CheckboxInput);var Ae={SEGMENTED:ee.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:ee.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:ee.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:ee.internals.ns.selector("segmented__legend")},Ne={ADDED:ee.internals.ns.emission("segmented","added"),REMOVED:ee.internals.ns.emission("segmented","removed")},Ce=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Segmented"},e.prototype.init=function(){this.elements=this.node.querySelector(Ae.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(Ae.SEGMENTED_LEGEND),this.addAscent(Ne.ADDED,this.resize.bind(this)),this.addAscent(Ne.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(ee.prefix+"-segmented__legend--inline"),this.isResizing=!0},e.prototype.resize=function(){var t=ee.prefix+"-segmented--vertical",e=ee.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(e),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(e)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(e,r),e}(ee.core.Instance),Ie=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SegmentedElement"},e.prototype.init=function(){this.ascend(Ne.ADDED)},e.prototype.dispose=function(){this.ascend(Ne.REMOVED)},Object.defineProperties(e,r),e}(ee.core.Instance);ee.segmented={SegmentedSelector:Ae,SegmentedEmission:Ne,SegmentedElement:Ie,Segmented:Ce},ee.internals.register(ee.segmented.SegmentedSelector.SEGMENTED,ee.segmented.Segmented),ee.internals.register(ee.segmented.SegmentedSelector.SEGMENTED_ELEMENT,ee.segmented.SegmentedElement);var Le={BREADCRUMB:ee.internals.ns.selector("breadcrumb"),BUTTON:ee.internals.ns.selector("breadcrumb__button")},Me=function(t){function e(){t.call(this),this.count=0,this.focusing=this.focus.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Breadcrumb"},e.prototype.init=function(){this.getCollapse(),this.isResizing=!0},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})},e.prototype.getCollapse=function(){var t=this.collapse;t?t.listen(ee.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(ee.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},e.prototype.resize=function(){var t=this.collapse,e=this.links;t&&e.length&&(this.isBreakpoint(ee.core.Breakpoints.MD)?t.buttonHasFocus&&e[0].focus():e.indexOf(document.activeElement)>-1&&t.focus())},r.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},r.collapse.get=function(){return this.element.getDescendantInstances(ee.core.Collapse.instanceClassName,null,!0)[0]},e.prototype.focus=function(){this.count=0,this._focus()},e.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},e.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Le.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.breadcrumb={BreadcrumbSelector:Le,Breadcrumb:Me},ee.internals.register(ee.breadcrumb.BreadcrumbSelector.BREADCRUMB,ee.breadcrumb.Breadcrumb);var De={TOOLTIP:ee.internals.ns.selector("tooltip"),SHOWN:ee.internals.ns.selector("tooltip--shown"),BUTTON:ee.internals.ns.selector("btn--tooltip")},xe=1,Re=2,ke=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={state:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(De.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var r=this.mouseout.bind(this);this.listen("mouseout",r),this.placement.listen("mouseout",r)}this.addEmission(ee.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(ee.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===ee.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},r.state.get=function(){return this._state},r.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=xe},e.prototype.focusOut=function(){this.state&=~xe},e.prototype.mouseover=function(){this.state|=Re},e.prototype.mouseout=function(){this.state&=~Re},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.PlacementReferent),He={SHOW:w.event("show"),HIDE:w.event("hide")},Ge="hidden",$e="shown",Fe="hiding",Ue=function(t){function e(){t.call(this,ee.core.PlacementMode.AUTO,[ee.core.PlacementPosition.TOP,ee.core.PlacementPosition.BOTTOM],[ee.core.PlacementAlign.CENTER,ee.core.PlacementAlign.START,ee.core.PlacementAlign.END]),this.modifier="",this._state=Ge}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',ke),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===Fe&&(this._state=Ge,this.isShown=!1)},r.isShown.get=function(){return t.prototype.isShown},r.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=$e,this.addClass(De.SHOWN),this.dispatch(He.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===$e:this._state=Fe,this.removeClass(De.SHOWN);break;case this.isShown&&!e&&this._state===Ge:this.dispatch(He.HIDE),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this);var e=this.referentRect.center-this.rect.center,r=.5*this.rect.width-8;e<-r&&(e=-r),e>r&&(e=r),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Placement);ee.tooltip={Tooltip:Ue,TooltipSelector:De,TooltipEvent:He},ee.internals.register(ee.tooltip.TooltipSelector.TOOLTIP,ee.tooltip.Tooltip);var ze=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},r.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),Be=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},input:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleStatusLabel"},e.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',ze),this.update(),this.isSwappingFont=!0},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},r.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},e.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),r=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),i=parseFloat(n.width);i>r&&(r=i),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",r/16+"rem")},e.prototype.swapFont=function(t){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),We={STATUS_LABEL:""+ee.internals.ns.selector("toggle__label")+ee.internals.ns.attr.selector("checked-label")+ee.internals.ns.attr.selector("unchecked-label")};ee.toggle={ToggleStatusLabel:Be,ToggleSelector:We},ee.internals.register(ee.toggle.ToggleSelector.STATUS_LABEL,ee.toggle.ToggleStatusLabel);var qe=ee.internals.ns.selector("sidemenu__item"),Ve=ee.internals.ns.selector("collapse"),Ke={LIST:ee.internals.ns.selector("sidemenu__list"),COLLAPSE:qe+" > "+Ve+", "+qe+" > *:not("+qe+"):not("+Ve+") > "+Ve+", "+qe+" > *:not("+qe+"):not("+Ve+") > *:not("+qe+"):not("+Ve+") > "+Ve,COLLAPSE_LEGACY:qe+" "+Ve,ITEM:ee.internals.ns.selector("sidemenu__item"),BUTTON:ee.internals.ns.selector("sidemenu__btn")},Ye=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SidemenuList"},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.node.matches(ee.internals.legacy.isLegacy?Ke.COLLAPSE_LEGACY:Ke.COLLAPSE)},Object.defineProperties(e,r),e}(ee.core.CollapsesGroup),Xe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuItem"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Ke.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.sidemenu={SidemenuList:Ye,SidemenuItem:Xe,SidemenuSelector:Ke},ee.internals.register(ee.sidemenu.SidemenuSelector.LIST,ee.sidemenu.SidemenuList),ee.internals.register(ee.sidemenu.SidemenuSelector.ITEM,ee.sidemenu.SidemenuItem);var Qe={MODAL:ee.internals.ns.selector("modal"),SCROLL_DIVIDER:ee.internals.ns.selector("scroll-divider"),BODY:ee.internals.ns.selector("modal__body"),TITLE:ee.internals.ns.selector("modal__title")},Je=function(t){function e(){t.call(this,ee.core.DisclosureType.OPENED)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(e,r),e}(ee.core.DisclosureButton),Ze={CONCEALING_BACKDROP:ee.internals.ns.attr("concealing-backdrop")},tr=function(t){function e(){t.call(this,ee.core.DisclosureType.OPENED,Qe.MODAL,Je,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={body:{configurable:!0},isDialog:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Modal"},e.prototype.init=function(){t.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(ee.core.RootEmission.KEYDOWN,this._keydown.bind(this))},e.prototype._keydown=function(t){if(t===ee.core.KeyCodes.ESCAPE)this._escape()},e.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},e.prototype.retrieved=function(){this._ensureAccessibleName()},r.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},e.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(Ze.CONCEALING_BACKDROP)&&this.conceal()},e.prototype.disclose=function(e){return!!t.prototype.disclose.call(this,e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},e.prototype.conceal=function(e,r){return!!t.prototype.conceal.call(this,e,r)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},r.isDialog.get=function(){return this._isDialog},r.isDialog.set=function(t){this._isDialog=t},e.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},e.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},e.prototype._setAccessibleName=function(t,e){var r=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",r)},e.prototype._ensureAccessibleName=function(){if(!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label")){this.warn("missing accessible name");var t=this.node.querySelector(Qe.TITLE),e=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==e:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(e,"primary")}}},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Disclosure),er=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),rr=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),nr=function(t,e){if(!(t instanceof Element))return!1;var r=window.getComputedStyle(t);if(!r)return!1;if("hidden"===r.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===r.display)return!1;t=t.parentElement}return!0},ir=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},or={trapped:{configurable:!0},focusables:{configurable:!0}};or.trapped.get=function(){return null!==this.element},ir.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},ir.prototype.wait=function(){nr(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},ir.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},ir.prototype.stun=function(t){for(var e=0,r=t.children;e0||e[i-1].tabIndex>0)&&(t.preventDefault(),e[i-1].focus()):this.element.contains(document.activeElement)&&i!==e.length-1&&-1!==i?document.activeElement.tabIndex>0&&(t.preventDefault(),e[i+1].focus()):(t.preventDefault(),r.focus())}}},or.focusables.get=function(){var t=this,e=ee.internals.dom.querySelectorAllArray(this.element,er),r=ee.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(r.length){for(var n={},i=0,o=r;ithis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(Qe.SCROLL_DIVIDER):this.addClass(Qe.SCROLL_DIVIDER):this.removeClass(Qe.SCROLL_DIVIDER)},e.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},e.prototype.adjust=function(){var t=32*(this.isBreakpoint(ee.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-t+"px":this.style.setProperty("--modal-max-height",window.innerHeight-t+"px"),this.divide()},Object.defineProperties(e,r),e}(ee.core.Instance);ee.modal={Modal:tr,ModalButton:Je,ModalBody:lr,ModalsGroup:cr,ModalSelector:Qe},ee.internals.register(ee.modal.ModalSelector.MODAL,ee.modal.Modal),ee.internals.register(ee.modal.ModalSelector.BODY,ee.modal.ModalBody),ee.internals.register(ee.core.RootSelector.ROOT,ee.modal.ModalsGroup);var ur={TOGGLE:ee.internals.ns.emission("password","toggle"),ADJUST:ee.internals.ns.emission("password","adjust")},pr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},e.prototype.init=function(){this.listenClick(),this.ascend(ur.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},r.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},r.isChecked.get=function(){return this.node.checked},r.isChecked.set=function(t){this._isChecked=t,this.ascend(ur.TOGGLE,t)},e.prototype.handleClick=function(){this.isChecked=!this._isChecked},e.prototype.swapFont=function(t){this.ascend(ur.ADJUST,this.width)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),hr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Password"},e.prototype.init=function(){this.addAscent(ur.TOGGLE,this.toggle.bind(this)),this.addAscent(ur.ADJUST,this.adjust.bind(this))},e.prototype.toggle=function(t){this.descend(ur.TOGGLE,t)},e.prototype.adjust=function(t){this.descend(ur.ADJUST,t)},Object.defineProperties(e,r),e}(ee.core.Instance),fr={PASSWORD:ee.internals.ns.selector("password"),INPUT:ee.internals.ns.selector("password__input"),LABEL:ee.internals.ns.selector("password__label"),TOOGLE:ee.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},dr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRevealed:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordInput"},e.prototype.init=function(){this.addDescent(ur.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},e.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},r.isRevealed.get=function(){return this._isRevealed},e.prototype.capslock=function(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(ee.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(ee.internals.ns.attr("capslock")))},r.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),yr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"PasswordLabel"},e.prototype.init=function(){this.addDescent(ur.ADJUST,this.adjust.bind(this))},e.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(e,r),e}(ee.core.Instance);ee.password={Password:hr,PasswordToggle:pr,PasswordSelector:fr,PasswordInput:dr,PasswordLabel:yr},ee.internals.register(ee.password.PasswordSelector.INPUT,ee.password.PasswordInput),ee.internals.register(ee.password.PasswordSelector.PASSWORD,ee.password.Password),ee.internals.register(ee.password.PasswordSelector.TOOGLE,ee.password.PasswordToggle),ee.internals.register(ee.password.PasswordSelector.LABEL,ee.password.PasswordLabel);var br=ee.internals.ns.selector("nav__item"),gr=ee.internals.ns.selector("collapse"),vr={NAVIGATION:ee.internals.ns.selector("nav"),COLLAPSE:br+" > "+gr+", "+br+" > *:not("+br+"):not("+gr+") > "+gr+", "+br+" > *:not("+br+"):not("+gr+") > *:not("+br+"):not("+gr+") > "+gr,COLLAPSE_LEGACY:br+" "+gr,ITEM:br,ITEM_RIGHT:br+"--align-right",MENU:ee.internals.ns.selector("menu"),BUTTON:ee.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:ee.internals.ns.selector("translate__btn")},mr=function(t){function e(){t.call(this),this._isRightAligned=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"NavigationItem"},e.prototype.init=function(){this.addAscent(ee.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(ee.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},e.prototype.resize=function(){this.calculate()},e.prototype.calculate=function(){var t=this.element.getDescendantInstances(ee.core.Collapse.instanceClassName,null,!0)[0];if(t&&this.isBreakpoint(ee.core.Breakpoints.LG)&&t.element.node.matches(vr.MENU)){var e=this.element.node.parentElement.getBoundingClientRect().right,r=t.element.node.getBoundingClientRect().width,n=this.element.node.getBoundingClientRect().left;this.isRightAligned=n+r>e}else this.isRightAligned=!1},r.isRightAligned.get=function(){return this._isRightAligned},r.isRightAligned.set=function(t){this._isRightAligned!==t&&(this._isRightAligned=t,t?ee.internals.dom.addClass(this.element.node,vr.ITEM_RIGHT):ee.internals.dom.removeClass(this.element.node,vr.ITEM_RIGHT))},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(vr.BUTTON)||t.hasClass(vr.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),_r={NONE:-1,INSIDE:0,OUTSIDE:1},wr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={index:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Navigation"},e.prototype.init=function(){t.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(ee.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.element.node.matches(ee.internals.legacy.isLegacy?vr.COLLAPSE_LEGACY:vr.COLLAPSE)},e.prototype.handleMouseDown=function(t){this.isBreakpoint(ee.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(t.target)?_r.INSIDE:_r.OUTSIDE,this.requestPosition())},e.prototype.handleClick=function(t){!t.target.matches("a, button")||t.target.matches("[aria-controls]")||t.target.matches(ee.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},e.prototype._handleRootClick=function(t){this.isBreakpoint(ee.core.Breakpoints.LG)&&(this.node.contains(t)||(this.out=!0,this.requestPosition()))},e.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},e.prototype.getPosition=function(){if(this.out)switch(this.position){case _r.OUTSIDE:this.index=-1;break;case _r.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},e.prototype.requested=function(){this.position=_r.NONE,this.out=!1,this.isRequesting=!1},r.index.get=function(){return t.prototype.index},r.index.set=function(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},r.canUngroup.get=function(){return!this.isBreakpoint(ee.core.Breakpoints.LG)},e.prototype.resize=function(){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.CollapsesGroup);ee.navigation={Navigation:wr,NavigationItem:mr,NavigationMousePosition:_r,NavigationSelector:vr},ee.internals.register(ee.navigation.NavigationSelector.NAVIGATION,ee.navigation.Navigation),ee.internals.register(ee.navigation.NavigationSelector.ITEM,ee.navigation.NavigationItem);var Sr=function(t){function e(){t.call(this,ee.core.DisclosureType.SELECT)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabButton"},e.prototype.handleClick=function(e){t.prototype.handleClick.call(this,e),this.focus()},e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))},r.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.DisclosureButton),Er={TAB:ee.internals.ns.selector("tabs__tab"),GROUP:ee.internals.ns.selector("tabs"),PANEL:ee.internals.ns.selector("tabs__panel"),LIST:ee.internals.ns.selector("tabs__list"),SHADOW:ee.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:ee.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:ee.internals.ns.selector("tabs__shadow--right"),PANEL_START:ee.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:ee.internals.ns.selector("tabs__panel--direction-end")},Or="direction-start",jr="direction-end",Tr="none",Pr=function(t){function e(){t.call(this,ee.core.DisclosureType.SELECT,Er.PANEL,Sr,"TabsGroup"),this._direction=Tr,this._isPreventingTransition=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabPanel"},r.direction.get=function(){return this._direction},r.direction.set=function(t){if(t!==this._direction){switch(this._direction){case Or:this.removeClass(Er.PANEL_START);break;case jr:this.removeClass(Er.PANEL_END);break;case Tr:break;default:return}switch(this._direction=t,this._direction){case Or:this.addClass(Er.PANEL_START);break;case jr:this.addClass(Er.PANEL_END)}}},r.isPreventingTransition.get=function(){return this._isPreventingTransition},r.isPreventingTransition.set=function(t){this._isPreventingTransition!==t&&(t?this.addClass(ee.internals.motion.TransitionSelector.NONE):this.removeClass(ee.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)},e.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},e.prototype.reset=function(){this.group&&this.group.retrieve(!0)},e.prototype._electPrimaries=function(e){var r=this;return this.group&&this.group.list?t.prototype._electPrimaries.call(this,e).filter((function(t){return r.group.list.node.contains(t.node)})):[]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Disclosure),Ar="tab_keys_left",Nr="tab_keys_right",Cr="tab_keys_home",Ir="tab_keys_end",Lr={PRESS_KEY:ee.internals.ns.emission("tab","press_key"),LIST_HEIGHT:ee.internals.ns.emission("tab","list_height")},Mr=function(t){function e(){t.call(this,"TabPanel")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabsGroup"},e.prototype.init=function(){t.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(Lr.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(Lr.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},e.prototype.getIndex=function(e){void 0===e&&(e=0),t.prototype.getIndex.call(this,e)},r.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},e.prototype.setListHeight=function(t){this.listHeight=t},e.prototype.transitionend=function(t){this.isPreventingTransition=!0},r.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},e.prototype.pressKey=function(t){switch(t){case Ar:this.pressLeft();break;case Nr:this.pressRight();break;case Cr:this.pressHome();break;case Ir:this.pressEnd()}},e.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},e.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},e.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},e.prototype.focus=function(){this.current&&this.current.focus()},e.prototype.apply=function(){for(var t=0;tr.right&&this.node.scrollTo(n-r.right+e.right+16,0)},r.isScrolling.get=function(){return this._isScrolling},r.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},e.prototype.apply=function(){this._isScrolling?(this.addClass(Er.SHADOW),this.scroll()):(this.removeClass(Er.SHADOW_RIGHT),this.removeClass(Er.SHADOW_LEFT),this.removeClass(Er.SHADOW))},e.prototype.scroll=function(){var t=this.node.scrollLeft,e=t<=16,r=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=r,i="rtl"===document.documentElement.getAttribute("dir"),o=i?Er.SHADOW_RIGHT:Er.SHADOW_LEFT,s=i?Er.SHADOW_LEFT:Er.SHADOW_RIGHT;e?this.removeClass(o):this.addClass(o),n?this.removeClass(s):this.addClass(s)},e.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(Lr.LIST_HEIGHT,t)},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.tab={TabPanel:Pr,TabButton:Sr,TabsGroup:Mr,TabsList:Dr,TabSelector:Er,TabEmission:Lr},ee.internals.register(ee.tab.TabSelector.PANEL,ee.tab.TabPanel),ee.internals.register(ee.tab.TabSelector.GROUP,ee.tab.TabsGroup),ee.internals.register(ee.tab.TabSelector.LIST,ee.tab.TabsList);var xr={DISMISS:ee.internals.ns.event("dismiss")},Rr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TagDismissible"},e.prototype.init=function(){this.listenClick()},e.prototype.handleClick=function(){switch(this.focusClosest(),ee.mode){case ee.Modes.ANGULAR:case ee.Modes.REACT:case ee.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(xr.DISMISS)},e.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+ee.mode+" mode, the api doesn't handle dom modification. An event "+xr.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(e,r),e}(ee.core.Instance),kr={PRESSABLE:ee.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+ee.internals.ns.selector("tag--dismiss")};ee.tag={TagDismissible:Rr,TagSelector:kr,TagEvent:xr},ee.internals.register(ee.tag.TagSelector.PRESSABLE,ee.core.Toggle),ee.internals.register(ee.tag.TagSelector.DISMISSIBLE,ee.tag.TagDismissible);var Hr=ee.internals.ns.selector("transcription"),Gr={TRANSCRIPTION:Hr,BUTTON:Hr+"__btn"},$r=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Transcription"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Gr.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.transcription={Transcription:$r,TranscriptionSelector:Gr},ee.internals.register(ee.transcription.TranscriptionSelector.TRANSCRIPTION,ee.transcription.Transcription);var Fr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TileDownload"},e.prototype.init=function(){var t=this;this.addAscent(ee.core.AssessEmission.UPDATE,(function(e){t.descend(ee.core.AssessEmission.UPDATE,e)})),this.addAscent(ee.core.AssessEmission.ADDED,(function(){t.descend(ee.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ee.core.Instance),Ur={DOWNLOAD:ee.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:ee.internals.ns.selector("tile--download")+" "+ee.internals.ns.selector("tile__detail")};ee.tile={TileSelector:Ur,TileDownload:Fr},ee.internals.register(ee.tile.TileSelector.DOWNLOAD,ee.tile.TileDownload),ee.internals.register(ee.tile.TileSelector.DOWNLOAD_DETAIL,ee.core.AssessDetail);var zr={RANGE:ee.internals.ns.selector("range"),RANGE_SM:ee.internals.ns.selector("range--sm"),RANGE_STEP:ee.internals.ns.selector("range--step"),RANGE_DOUBLE:ee.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:ee.internals.ns.selector("range--double")+ee.internals.ns.selector("range--step"),RANGE_INPUT:ee.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:ee.internals.ns.selector("range--double")+" input[type=range]:nth-of-type(2)",RANGE_OUTPUT:ee.internals.ns.selector("range__output"),RANGE_MIN:ee.internals.ns.selector("range__min"),RANGE_MAX:ee.internals.ns.selector("range__max"),RANGE_PREFIX:ee.internals.ns.attr("prefix"),RANGE_SUFFIX:ee.internals.ns.attr("suffix")},Br={VALUE:ee.internals.ns.emission("range","value"),VALUE2:ee.internals.ns.emission("range","value2"),OUTPUT:ee.internals.ns.emission("range","output"),CONSTRAINTS:ee.internals.ns.emission("range","constraints"),MIN:ee.internals.ns.emission("range","min"),MAX:ee.internals.ns.emission("range","max"),STEP:ee.internals.ns.emission("range","step"),PREFIX:ee.internals.ns.emission("range","prefix"),SUFFIX:ee.internals.ns.emission("range","suffix"),DISABLED:ee.internals.ns.emission("range","disabled"),ENABLE_POINTER:ee.internals.ns.emission("range","enable_pointer")},Wr=function(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}},qr={width:{configurable:!0},isSm:{configurable:!0},textValue:{configurable:!0},value:{configurable:!0},outputX:{configurable:!0},min:{configurable:!0},textMin:{configurable:!0},max:{configurable:!0},textMax:{configurable:!0},step:{configurable:!0},output:{configurable:!0},progress:{configurable:!0}};Wr.prototype.configure=function(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())},Wr.prototype.setPrefix=function(t){this._prefix=null!==t?t:""},Wr.prototype.setSuffix=function(t){this._suffix=null!==t?t:""},Wr.prototype._decorate=function(t){return""+this._prefix+t+this._suffix},qr.width.get=function(){return this._width},qr.width.set=function(t){this._width=t},qr.isSm.get=function(){return this._isSm},qr.isSm.set=function(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())},Wr.prototype.setThumbSize=function(t,e){void 0===e&&(e=1),this._thumbSize=t,this._innerPadding=t*e},qr.textValue.get=function(){return this._decorate(this._value)},qr.value.get=function(){return this._value},qr.value.set=function(t){this._value=t},qr.outputX.get=function(){return this._outputX},Wr.prototype.setConstraints=function(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth},qr.min.get=function(){return this._min},qr.textMin.get=function(){return this._decorate(this._min)},qr.max.get=function(){return this._max},qr.textMax.get=function(){return this._decorate(this._max)},qr.step.get=function(){return this._step},qr.output.get=function(){return{text:this.textValue,transform:"translateX("+this._translateX+"px) translateX(-"+this._centerPercent+"%)"}},Wr.prototype._getRatio=function(t){return(t-this._min)/this._rangeWidth},qr.progress.get=function(){return this._progress},Wr.prototype.update=function(){this._update()},Wr.prototype._update=function(){this._innerWidth=this._width-this._innerPadding;var t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:(this._innerWidth*t+.5*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(Wr.prototype,qr);var Vr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2},Object.defineProperties(e.prototype,r),e}(Wr),Kr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={value2:{configurable:!0},textValue:{configurable:!0}};return r.value2.get=function(){return this._value},r.value2.set=function(t){this._value2!==t&&(this._value2=t,this.update())},r.textValue.get=function(){return this._decorate(this._value)+" - "+this._decorate(this._value2)},e.prototype.setThumbSize=function(e){t.prototype.setThumbSize.call(this,e,2)},e.prototype._update=function(){t.prototype._update.call(this);var e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;var r=this._getRatio(this._value),n=this._getRatio(this._value2);this._progress={left:(this._innerWidth*r+.25*this._innerPadding).toFixed(2)+"px",right:(this._innerWidth*n+.75*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(e.prototype,r),e}(Wr),Yr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))},Object.defineProperties(e.prototype,r),e}(Kr),Xr="step",Qr="double",Jr="double-step",Zr="default",tn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={type:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Range"},e.prototype.init=function(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Br.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Br.VALUE,this.setValue.bind(this)),this.addAscent(Br.VALUE2,this.setValue2.bind(this)),this.getAttribute(zr.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(zr.RANGE_PREFIX)),this.getAttribute(zr.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(zr.RANGE_SUFFIX)),this.update()},e.prototype._retrieveType=function(){switch(!0){case this.matches(zr.RANGE_DOUBLE_STEP):case this.matches(zr.RANGE_DOUBLE):this.type=Qr;break;case this.matches(zr.RANGE_STEP):this.type=Xr;break;default:this.type=Zr}},r.type.set=function(t){if(this._type!==t){this._type=t;var e=this._model;switch(this._type){case Jr:this._model=new Yr;break;case Qr:this._model=new Kr;break;case Xr:this._model=new Vr;break;default:this._model=new Wr}this._model.configure(e)}},r.type.get=function(){return this._type},e.prototype._retrieveSize=function(){this._model.isSm=this.matches(zr.RANGE_SM)},e.prototype.resize=function(){this._retrieveWidth(),this.update()},e.prototype._retrieveWidth=function(){this._model.width=this.getRect().width},e.prototype.setValue=function(t){switch(this._model.value=t,this._type){case Jr:case Qr:this.descend(Br.VALUE,t)}this.update()},e.prototype.setValue2=function(t){this._model.value2=t,this.descend(Br.VALUE2,t),this.update()},e.prototype.setConstraints=function(t){this._model.setConstraints(t),this.update(),this.descend(Br.CONSTRAINTS,t)},e.prototype.setPrefix=function(t){this._model.setPrefix(t),this.update()},e.prototype.setSuffix=function(t){this._model.setSuffix(t),this.update()},e.prototype.mutate=function(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(zr.RANGE_PREFIX):case t.includes(zr.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(zr.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(zr.RANGE_SUFFIX)),this.update()}},e.prototype.update=function(){this._model.update(),this.descend(Br.OUTPUT,this._model.output),this.descend(Br.MIN,this._model.textMin),this.descend(Br.MAX,this._model.textMax);var t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",parseFloat(t.right)-parseFloat(t.left)+"px "+(this._model.isSm?"8px":"12px")))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")},e.prototype.mouseMove=function(t){if(this._type===Qr||this._type===Jr){var e=t.x-this.getRect().left;this.descend(Br.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left)t&&(this.node.value=t,this.dispatch("change",void 0,!0),this.change())},e.prototype.change=function(){this.ascend(Br.VALUE,parseFloat(this.node.value))},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(Br.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(Br.CONSTRAINTS,new en(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e,r),e}(ee.core.Instance),on=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(Br.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Br.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)=e,n="rtl"===document.documentElement.getAttribute("dir"),i=n?bn.SHADOW_RIGHT:bn.SHADOW_LEFT,o=n?bn.SHADOW_LEFT:bn.SHADOW_RIGHT;t?this.removeClass(i):this.addClass(i),r?this.removeClass(o):this.addClass(o)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance),vn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TableCaption"},e.prototype.init=function(){this.height=0,this.isResizing=!0},e.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend(fn.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(e,r),e}(ee.core.Instance),mn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isSelected:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TableRow"},e.prototype.init=function(){ee.checkbox&&(this.addAscent(Te.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(Te.RETRIEVE))},e.prototype._handleCheckboxChange=function(t){"row-select"===t.name&&(this.isSelected=!0===t.checked)},e.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},r.isSelected.get=function(){return this._isSelected},r.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ee.core.Instance);ee.table={Table:dn,TableWrapper:yn,TableElement:gn,TableCaption:vn,TableSelector:bn,TableRow:mn},ee.internals.register(ee.table.TableSelector.TABLE,ee.table.Table),ee.internals.register(ee.table.TableSelector.TABLE_WRAPPER,ee.table.TableWrapper),ee.internals.register(ee.table.TableSelector.ELEMENT,ee.table.TableElement),ee.internals.register(ee.table.TableSelector.CAPTION,ee.table.TableCaption),ee.internals.register(ee.table.TableSelector.ROW,ee.table.TableRow),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===i(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e){return t[e]}function i(t){return"function"==typeof t}function o(t){if(null===t||t===e)throw TypeError();return Object(t)}function s(t,r){var n=function(t,e){return o(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function a(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function c(t,e){return a(t)===a(e)&&("number"===a(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function l(t){if("symbol"===a(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function u(o){var c=arguments.length>1?arguments[1]:e;if("object"===a(o)){if(arguments.length<2)var l="default";else c===String?l="string":c===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?s(o,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,o,[l]);if("object"!==a(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var o=["toString","valueOf"];else o=["valueOf","toString"];for(var s=0;s=0)var s=i;else(s=r+i)<0&&(s=0);for(;s=c)for(;c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u())},i.remove=function(){p.apply(i,e=arguments);for(var e,r={},c=0,l=[];c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u()},i.toggle=function(t,r){return p.apply(i,[t]),e!==r?r?(i.add(t),!0):(i.remove(t),!1):s[t]?(i.remove(t),!1):(i.add(t),!0)},i.forEach=Array.prototype.forEach,i}}();"DOMTokenList"in(r=t)&&r.DOMTokenList&&(!document.createElementNS||!document.createElementNS("http://www.w3.org/2000/svg","svg")||document.createElementNS("http://www.w3.org/2000/svg","svg").classList instanceof DOMTokenList)||(r.DOMTokenList=n),function(){var t=document.createElement("span");"classList"in t&&(t.classList.toggle("x",!1),t.classList.contains("x")&&(t.classList.constructor.prototype.toggle=function(t){var r=arguments[1];if(r===e){var n=!this.contains(t);return this[n?"add":"remove"](t),n}return r=!!r,this[r?"add":"remove"](t),r}))}(),function(){var t=document.createElement("span");if("classList"in t&&(t.classList.add("a","b"),!t.classList.contains("b"))){var e=t.classList.constructor.prototype.add;t.classList.constructor.prototype.add=function(){for(var t=arguments,r=arguments.length,n=0;n2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;ot&&(n.length=t)}var n=x(t),i=0;return function(t,e){n[i++]=t,n[i++]=e,2===i&&rt.nextTick(r)}}function p(t,e){var r,n,s,a,c=0;if(!t)throw h(K);var u=t[rt[$][F]];if(i(u))n=u.call(t);else{if(!i(t.next)){if(o(t,x)){for(r=t.length;cMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;jMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function o(t,e){return t[e]}function s(t,e){return e in t}function a(t){return"[object Array]"===Object.prototype.toString.call(t)}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,r){var n=function(t,e){return l(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function p(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function h(t,e){var r=arguments[2]||{},n=function(t,e){var r=o(t,"prototype");return"object"!==p(r)&&(r=e),r}(t,e),i=Object.create(n);for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&Object.defineProperty(i,s,{configurable:!0,enumerable:!1,writable:!0,value:r[s]});return i}function f(t){return"object"===p(t)&&"function"==typeof t&&!!t.prototype}function d(i,s){if(0===s&&1/s==-1/0&&(s=0),!1===a(i))return r(s);var c=o(i,"constructor");if("object"===p(c)&&null===(c="Symbol"in t&&"species"in t.Symbol?o(c,t.Symbol.species):e)&&(c=e),c===e)return r(s);if(!f(c))throw new TypeError("C must be a constructor");return function(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!f(t))throw new TypeError("F must be a constructor.");if(!f(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,h(e,Object.prototype),r)}(c,[s])}function y(t){if("symbol"===p(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function b(t){var e=y(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function g(r){var i=arguments.length>1?arguments[1]:e;if("object"===p(r)){if(arguments.length<2)var s="default";else i===String?s="string":i===Number&&(s="number");var a="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?u(r,t.Symbol.toPrimitive):e;if(a!==e){var l=n(a,r,[s]);if("object"!==p(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===s&&(s="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i0&&(_=a(g)),!0===_)f=m(t,g,b(o(g,"length")),f,l-1);else{if(f>=Math.pow(2,53)-1)throw new TypeError("targetIndex is greater than or equal to 2^53-1");i(t,v(f),g),f+=1}}d+=1}return f}var _,w,S,E;_=Array.prototype,w="flat",S=function(){var t=arguments[0],e=l(this),r=b(o(e,"length")),n=1;void 0!==t&&(n=y(t));var i=d(e,0);return m(i,e,r,0,n),i},E={value:S,writable:!0,enumerable:!1,configurable:!0},Object.defineProperty(_,w,E)}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===s(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function i(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function o(t,e){return t[e]}function s(t){return"function"==typeof t}function a(t){if(null===t||t===e)throw TypeError(Object.prototype.toString.call(t)+" is not coercible to Object.");return t}function c(t){return Boolean(t)}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===s(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function f(t,n){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return n;try{var s=r(o,i)}catch(t){var a=t}if(n)return n;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return n}function d(t){var e=function(t){if(arguments.length<2)var e=r(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=r(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==function(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return c(o(t,"done"))}(e)&&e}function y(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return o(t,"value")}function b(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function g(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function v(n){var i=arguments.length>1?arguments[1]:e;if("object"===h(n)){if(arguments.length<2)var a="default";else i===String?a="string":i===Number&&(a="number");var c="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(n,t.Symbol.toPrimitive):e;if(c!==e){var l=r(c,n,[a]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===a&&(a="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var i=0;i=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i1?arguments[1]:e,i=m(a(this));if(function(r){if("object"!==h(r))return!1;var n="Symbol"in t&&"match"in t.Symbol?o(r,t.Symbol.match):e;if(n!==e)return c(n);try{var i=r.lastIndex;return r.lastIndex=0,RegExp.prototype.exec.call(r),!0}catch(t){}finally{r.lastIndex=i}return!1}(r))throw new TypeError("First argument to String.prototype.includes must not be a regular expression");var s=m(r),l=g(n),u=i.length,p=Math.min(Math.max(l,0),u);return-1!==String.prototype.indexOf.call(i,s,p)})),function(){var t=Object.getOwnPropertyDescriptor,e=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(t){return!1}},r={}.toString,n="".split;i(Object,"getOwnPropertyDescriptor",(function(i,o){var s=l(i);s=("string"===h(s)||s instanceof String)&&"[object String]"==r.call(i)?n.call(i,""):Object(i);var a=T(o);if(e)try{return t(s,a)}catch(t){}if(function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}(s,a))return{enumerable:!0,configurable:!0,writable:!0,value:s[a]}}))}(),i(Object,"assign",(function(t,r){var n=l(t);if(1===arguments.length)return n;var i,s,a,c,u=Array.prototype.slice.call(arguments,1);for(i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var n=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=n,i["[[Done]]"]=!1,i}(i);;){var l=d(c);if(!1===l)return n;var b,g,v=y(l);if("object"!==h(v)){var m=new TypeError("nextItem is not an object");throw f(c,m),m}v=("string"===h(v)||v instanceof String)&&"[object String]"==t.call(v)?e.call(v,""):v;try{b=o(v,"0")}catch(t){return f(c,t)}try{g=o(v,"1")}catch(t){return f(c,t)}try{r(a,n,[b,g])}catch(t){return f(c,t)}}}}();Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});var A=function(){var t=function(){return this.length=0,this},r=function(t,e){if(!(this instanceof r))return new r(t,e);Object.defineProperties(this,{__list__:{writable:!0,value:t},__context__:{writable:!0,value:e},__nextIndex__:{writable:!0,value:0}}),e&&(function(t){if("function"!=typeof t)throw new TypeError(t+" is not a function")}(e.on),e.on("_add",this._onAdd.bind(this)),e.on("_delete",this._onDelete.bind(this)),e.on("_clear",this._onClear.bind(this)))};return Object.defineProperties(r.prototype,Object.assign({constructor:{value:r,configurable:!0,enumerable:!1,writable:!0},_next:{value:function(){var t;if(this.__list__)return this.__redo__&&(t=this.__redo__.shift())!==e?t:this.__nextIndex__=this.__nextIndex__)){if(++this.__nextIndex__,!this.__redo__)return void Object.defineProperty(this,"__redo__",{value:[t],configurable:!0,enumerable:!1,writable:!1});this.__redo__.forEach((function(e,r){e>=t&&(this.__redo__[r]=++e)}),this),this.__redo__.push(t)}},configurable:!0,enumerable:!1,writable:!0},_onDelete:{value:function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach((function(e,r){e>t&&(this.__redo__[r]=--e)}),this)))},configurable:!0,enumerable:!1,writable:!0},_onClear:{value:function(){this.__redo__&&t.call(this.__redo__),this.__nextIndex__=0},configurable:!0,enumerable:!1,writable:!0}})),Object.defineProperty(r.prototype,Symbol.iterator,{value:function(){return this},configurable:!0,enumerable:!1,writable:!0}),Object.defineProperty(r.prototype,Symbol.toStringTag,{value:"Iterator",configurable:!1,enumerable:!1,writable:!0}),r}(),N=function(){var t=function(e,r){if(!(this instanceof t))return new t(e,r);A.call(this,e),r=r?String.prototype.includes.call(r,"key+value")?"key+value":String.prototype.includes.call(r,"key")?"key":"value":"value",Object.defineProperty(this,"__kind__",{value:r,configurable:!1,enumerable:!1,writable:!1})};return Object.setPrototypeOf&&Object.setPrototypeOf(t,A.prototype),t.prototype=Object.create(A.prototype,{constructor:{value:t,configurable:!0,enumerable:!1,writable:!0},_resolve:{value:function(t){return"value"===this.__kind__?this.__list__[t]:"key+value"===this.__kind__?[t,this.__list__[t]]:t},configurable:!0,enumerable:!1,writable:!0},toString:{value:function(){return"[object Array Iterator]"},configurable:!0,enumerable:!1,writable:!0}}),t}();"Symbol"in t&&"iterator"in Symbol&&"function"==typeof Array.prototype[Symbol.iterator]?i(Array.prototype,"values",Array.prototype[Symbol.iterator]):i(Array.prototype,"values",(function(){var t=l(this);return new N(t,"value")})),i(Array.prototype,Symbol.iterator,Array.prototype.values),i(Object,"fromEntries",(function(t){a(t);return P({},t,(function(t,e){n(this,T(t),e)}))}))}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}var n,i;r(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;oMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;j=t.length)return{done:!0,value:e};var i=t[n++];return{done:!1,value:"key"===r?i.name:"value"===r?i.value:[i.name,i.value]}}}function c(e,r){function n(){var t=a.href.replace(/#$|\?$|\?(?=#)/g,"");a.href!==t&&(a.href=t)}function i(){h._setList(a.search?o(a.search.substring(1)):[]),h._update_steps()}if(!(this instanceof t.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");r&&(e=function(){if(l)return new u(e,r).href;var t;try{var n;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?((t=document.createElement("iframe")).style.display="none",document.documentElement.appendChild(t),n=t.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?n=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?((n=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null)).documentElement.appendChild(n.createElement("head")),n.documentElement.appendChild(n.createElement("body"))):window.ActiveXObject&&((n=new window.ActiveXObject("htmlfile")).write(""),n.close()),!n)throw Error("base not supported");var i=n.createElement("base");i.href=r,n.getElementsByTagName("head")[0].appendChild(i);var o=n.createElement("a");return o.href=e,o.href}finally{t&&t.parentNode.removeChild(t)}}());var a=function(t){if(l)return new u(t);var e=document.createElement("a");return e.href=t,e}(e||""),c=function(){if(!("defineProperties"in Object))return!1;try{var t={};return Object.defineProperties(t,{prop:{get:function(){return!0}}}),t.prop}catch(t){return!1}}(),p=c?this:document.createElement("a"),h=new s(a.search?a.search.substring(1):null);return h._url_object=p,Object.defineProperties(p,{href:{get:function(){return a.href},set:function(t){a.href=t,n(),i()},enumerable:!0,configurable:!0},origin:{get:function(){return"data:"===this.protocol.toLowerCase()?null:"origin"in a?a.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return a.protocol},set:function(t){a.protocol=t},enumerable:!0,configurable:!0},username:{get:function(){return a.username},set:function(t){a.username=t},enumerable:!0,configurable:!0},password:{get:function(){return a.password},set:function(t){a.password=t},enumerable:!0,configurable:!0},host:{get:function(){var t={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[a.protocol];return t?a.host.replace(t,""):a.host},set:function(t){a.host=t},enumerable:!0,configurable:!0},hostname:{get:function(){return a.hostname},set:function(t){a.hostname=t},enumerable:!0,configurable:!0},port:{get:function(){return a.port},set:function(t){a.port=t},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==a.pathname.charAt(0)?"/"+a.pathname:a.pathname},set:function(t){a.pathname=t},enumerable:!0,configurable:!0},search:{get:function(){return a.search},set:function(t){a.search!==t&&(a.search=t,n(),i())},enumerable:!0,configurable:!0},searchParams:{get:function(){return h},enumerable:!0,configurable:!0},hash:{get:function(){return a.hash},set:function(t){a.hash=t,n()},enumerable:!0,configurable:!0},toString:{value:function(){return a.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return a.valueOf()},enumerable:!1,configurable:!0}}),p}var l,u=t.URL;try{if(u){if("searchParams"in(l=new t.URL("http://example.com"))){var p=new c("http://example.com");if(p.search="a=1&b=2","http://example.com/?a=1&b=2"===p.href&&(p.search="","http://example.com/"===p.href))return}"href"in l||(l=e),l=e}}catch(t){}if(Object.defineProperties(s.prototype,{append:{value:function(t,e){this._list.push({name:t,value:e}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},delete:{value:function(t){for(var e=0;e1?arguments[1]:e;this._list.forEach((function(e){t.call(r,e.value,e.name)}))},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return n(this._list)},writable:!0,enumerable:!1,configurable:!0},sort:{value:function(){for(var t=this.entries(),e=t.next(),r=[],n={};!e.done;){var i=e.value,o=i[0];r.push(o),Object.prototype.hasOwnProperty.call(n,o)||(n[o]=[]),n[o].push(i[1]),e=t.next()}r.sort();for(var s=0;s0){for(var i="",o=0;o-1)&&(this._collection.push(t),this.onAdd&&this.onAdd(),this.onPopulate&&1===this._collection.length&&this.onPopulate(),!0)},S.prototype.remove=function(t){var e=this._collection.indexOf(t);if(-1===e)return!1;this._collection.splice(e,1),this.onRemove&&this.onRemove(),this.onEmpty&&0===this._collection.length&&this.onEmpty()},S.prototype.execute=function(){for(var t=[],e=arguments.length;e--;)t[e]=arguments[e];for(var r=0,n=this._collection;r-1},P.prototype.introduce=function(){this.isIntroduced||(this.isIntroduced=!0,r.getModule("stage").parse(document.documentElement,this))},P.prototype.parse=function(t,e){var r=[];return t.matches&&t.matches(this.selector)&&r.push(t),!e&&t.querySelectorAll&&t.querySelector(this.selector)&&r.push.apply(r,j(t,this.selector)),r},P.prototype.create=function(t){if(t.node.matches(this.selector)){var e=new this.InstanceClass;return this.instances.add(e),e}},P.prototype.remove=function(t){this.instances.remove(t)},P.prototype.dispose=function(){for(var t=this.instances.collection,e=t.length-1;e>-1;e--)t[e]._dispose();this.creator=null},A.instanceClassName.get=function(){return this._instanceClassName},A.instanceClassNames.get=function(){return this._instanceClassNames},A.property.get=function(){return this._property},A.attribute.get=function(){return this._attribute},Object.defineProperties(P.prototype,A);var N=function(t){function e(){t.call(this,"register")}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.register=function(t,e,n){var i=new P(t,e,n);return this.add(i),r.isActive&&i.introduce(),i},e.prototype.activate=function(){for(var t=0,e=this.collection;t");return this.node.outerHTML.substring(0,t+1)},I.prototype.project=function(t){-1===this._projects.indexOf(t)&&this._projects.push(t)},I.prototype.populate=function(){var t=this._projects.slice();this._projects.length=0;for(var e=0,r=t;e-1&&this.instances.splice(e,1),this._proxy&&delete this._proxy[t.registration.property]},L.parent.get=function(){return this._parent},L.ascendants.get=function(){return[this.parent].concat(this.parent.ascendants)},L.children.get=function(){return this._children},L.descendants.get=function(){var t=[].concat(this._children);return this._children.forEach((function(e){return t.push.apply(t,e.descendants)})),t},I.prototype.addChild=function(t,e){return this._children.indexOf(t)>-1?null:(t._parent=this,!isNaN(e)&&e>-1&&e=0;t--){var e=this.instances[t];e&&e._dispose()}this.instances.length=0,r.remove("stage",this),this.parent.removeChild(this),this._children.length=0,h.debug("remove element ["+this.id+"] "+this.html)},I.prototype.prepare=function(t){-1===this.attributeNames.indexOf(t)&&this.attributeNames.push(t)},I.prototype.examine=function(){var t=this.attributeNames.slice();this.attributeNames.length=0;for(var e=this.instances.length-1;e>-1;e--)this.instances[e].examine(t)},Object.defineProperties(I.prototype,L);var M={CLICK:g.emission("root","click"),KEYDOWN:g.emission("root","keydown"),KEYUP:g.emission("root","keyup")},D={TAB:{id:"tab",value:9},ESCAPE:{id:"escape",value:27},END:{id:"end",value:35},HOME:{id:"home",value:36},LEFT:{id:"left",value:37},UP:{id:"up",value:38},RIGHT:{id:"right",value:39},DOWN:{id:"down",value:40}},x=function(t){return Object.values(D).filter((function(e){return e.value===t}))[0]},R=function(t){function e(){t.call(this,document.documentElement,"root"),this.node.setAttribute(g.attr("js"),!0),this.listen()}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){document.documentElement.addEventListener("click",this.click.bind(this),{capture:!0}),document.documentElement.addEventListener("keydown",this.keydown.bind(this),{capture:!0}),document.documentElement.addEventListener("keyup",this.keyup.bind(this),{capture:!0})},e.prototype.click=function(t){this.emit(M.CLICK,t.target)},e.prototype.keydown=function(t){this.emit(M.KEYDOWN,x(t.keyCode))},e.prototype.keyup=function(t){this.emit(M.KEYUP,x(t.keyCode))},e}(I),k=function(t){function e(){t.call(this,"stage"),this.root=new R,t.prototype.add.call(this,this.root),this.observer=new MutationObserver(this.mutate.bind(this)),this.modifications=[],this.willModify=!1,this.modifying=this.modify.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.hasElement=function(t){for(var e=0,r=this.collection;e-1;n--){var i=e.children[n],o=t.node.compareDocumentPosition(i.node);if(o&Node.DOCUMENT_POSITION_CONTAINS)return void this.put(t,i);if(o&Node.DOCUMENT_POSITION_CONTAINED_BY)e.removeChild(i),t.addChild(i,0);else if(o&Node.DOCUMENT_POSITION_PRECEDING){r=n+1;break}}e.addChild(t,r)},e.prototype.activate=function(){this.observer.observe(document.documentElement,{childList:!0,subtree:!0,attributes:!0})},e.prototype.deactivate=function(){this.observer.disconnect()},e.prototype.mutate=function(t){var e=this,r=[];t.forEach((function(t){switch(t.type){case"childList":t.removedNodes.forEach((function(t){return e.dispose(t)})),t.addedNodes.forEach((function(t){return e.parse(t)}));break;case"attributes":if(e.hasElement(t.target)){var n=e.getElement(t.target);n.prepare(t.attributeName),-1===r.indexOf(n)&&r.push(n);for(var i=0,o=n.descendants;i0&&document.documentElement.style.setProperty("--scrollbar-width",t+"px"),b(v.SCROLL_LOCK)}},e.prototype.unlock=function(){this._isLocked&&(this._isLocked=!1,document.documentElement.removeAttribute(g.attr("scrolling")),document.body.style.top="",window.scrollTo(0,this._scrollY),"smooth"===this.behavior&&document.documentElement.style.removeProperty("scroll-behavior"),document.documentElement.style.removeProperty("--scrollbar-width"),b(v.SCROLL_UNLOCK))},e.prototype.move=function(t){this._isLocked?(this._scrollY+=t,document.body.style.top=-this._scrollY+"px"):window.scrollTo(0,window.scrollY+t)},Object.defineProperties(e.prototype,r),e}(O),F=function(t){function e(){t.call(this,"load"),this.loading=this.load.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){window.addEventListener("load",this.loading)},e.prototype.load=function(){this.forEach((function(t){return t.load()}))},e}(O),U=["Marianne","Spectral"],z=function(t){function e(){t.call(this,"font-swap"),this.swapping=this.swap.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.activate=function(){document.fonts&&document.fonts.addEventListener("loadingdone",this.swapping)},e.prototype.swap=function(){var t=U.filter((function(t){return document.fonts.check("16px "+t)}));this.forEach((function(e){return e.swapFont(t)}))},e}(O),B=function(t){function e(){t.call(this,"mouse-move"),this.requireMove=!1,this._isMoving=!1,this.moving=this.move.bind(this),this.requesting=this.request.bind(this),this.onPopulate=this.listen.bind(this),this.onEmpty=this.unlisten.bind(this)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.listen=function(){this._isMoving||(this._isMoving=!0,this.requireMove=!1,document.documentElement.addEventListener("mousemove",this.requesting))},e.prototype.unlisten=function(){this._isMoving&&(this._isMoving=!1,this.requireMove=!1,document.documentElement.removeEventListener("mousemove",this.requesting))},e.prototype.request=function(t){this._isMoving&&(this.point={x:t.clientX,y:t.clientY},this.requireMove||(this.requireMove=!0,window.requestAnimationFrame(this.moving)))},e.prototype.move=function(){var t=this;this.requireMove&&(this.forEach((function(e){return e.mouseMove(t.point)})),this.requireMove=!1)},e}(O),W=function(t){function e(){t.call(this,"hash"),this.handling=this.handle.bind(this),this.getLocationHash()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={hash:{configurable:!0}};return e.prototype.activate=function(){window.addEventListener("hashchange",this.handling)},e.prototype.deactivate=function(){window.removeEventListener("hashchange",this.handling)},e.prototype._sanitize=function(t){return"#"===t.charAt(0)?t.substring(1):t},r.hash.set=function(t){var e=this._sanitize(t);this._hash!==e&&(window.location.hash=e)},r.hash.get=function(){return this._hash},e.prototype.getLocationHash=function(){var t=window.location.hash;this._hash=this._sanitize(t)},e.prototype.handle=function(t){var e=this;this.getLocationHash(),this.forEach((function(r){return r.handleHash(e._hash,t)}))},Object.defineProperties(e.prototype,r),e}(O),q=function(){r.create(N),r.create(k),r.create(H),r.create(G),r.create($),r.create(F),r.create(z),r.create(B),r.create(W);var t=r.getModule("register");this.register=t.register.bind(t)},K={isActive:{configurable:!0}};K.isActive.get=function(){return r.isActive},q.prototype.start=function(){h.debug("START"),r.isActive=!0,b(v.START)},q.prototype.stop=function(){h.debug("STOP"),r.isActive=!1,b(v.STOP)},Object.defineProperties(q.prototype,K);var V=new q,Y=function(){};Y.prototype.getColor=function(t,e,r,n){void 0===n&&(n={});var i="--"+t+"-"+e+"-"+r+X(n);return getComputedStyle(document.documentElement).getPropertyValue(i).trim()||null};var X=function(t){switch(!0){case t.hover:return"-hover";case t.active:return"-active";default:return""}},Q=new Y,Z=function(t){return"."===t.charAt(0)?t.substr(1):t},J=function(t){switch(!0){case!t.className:return[];case"string"==typeof t.className:return t.className.split(" ");case"string"==typeof t.className.baseVal:return t.className.baseVal.split(" ")}return[]},tt=function(t,e,r){e=Z(e);var n=J(t),i=n.indexOf(e);!0===r?i>-1&&n.splice(i,1):-1===i&&n.push(e),t.className=n.join(" ")},et=function(t,e){return tt(t,e)},rt=function(t,e){return tt(t,e,!0)},nt=function(t,e){return J(t).indexOf(Z(e))>-1},it=['[tabindex]:not([tabindex="-1"])',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),ot=function(t){return t.querySelectorAll(it)},st=0,at=function(t){if(!document.getElementById(t))return t;for(var e=!0,r=t;e;)t=r+"-"+ ++st,e=document.getElementById(t);return t},ct={addClass:et,hasClass:nt,removeClass:rt,queryParentSelector:T,querySelectorAllArray:j,queryActions:ot,uniqueId:at,dispatch:y},lt=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this._width=t,this._height=e,this._content=""},ut={width:{configurable:!0},height:{configurable:!0},content:{configurable:!0}};ut.width.get=function(){return this._width},ut.width.set=function(t){this._width=t},ut.height.get=function(){return this._height},ut.height.set=function(t){this._height=t},ut.content.get=function(){return this._content},ut.content.set=function(t){this._content=t},lt.prototype.getDataURI=function(t){void 0===t&&(t=!1);var e=""+this._content+"";return e=e.replace(/#/gi,"%23"),t&&(e=(e=(e=(e=(e=e.replace(//gi,"%3E")).replace(/"/gi,"'")).replace(/{/gi,"%7B")).replace(/}/gi,"%7D")),"data:image/svg+xml;charset=utf8,"+e},Object.defineProperties(lt.prototype,ut);var pt={DataURISVG:lt},ht={supportLocalStorage:function(){try{return"localStorage"in window&&null!==window.localStorage}catch(t){return!1}},supportAspectRatio:function(){return!!window.CSS&&CSS.supports("aspect-ratio: 16 / 9")}},ft={TransitionSelector:{NONE:g.selector("transition-none")}},dt=function(t){for(var e=[],r=arguments.length-1;r-- >0;)e[r]=arguments[r+1];return e.forEach((function(e){var r=Object.keys(e).reduce((function(t,r){return t[r]=Object.getOwnPropertyDescriptor(e,r),t}),{});Object.getOwnPropertySymbols(e).forEach((function(t){var n=Object.getOwnPropertyDescriptor(e,t);n.enumerable&&(r[t]=n)})),Object.defineProperties(t,r)})),t},yt={completeAssign:dt},bt={},gt={};Object.defineProperty(gt,"isLegacy",{get:function(){return r.isLegacy}}),gt.setLegacy=function(){r.isLegacy=!0},bt.legacy=gt,bt.dom=ct,bt.image=pt,bt.support=ht,bt.motion=ft,bt.property=yt,bt.ns=g,bt.register=V.register,bt.state=r,bt.query=function(t){if(t&&t.search){var e=new URLSearchParams(window.location.search).entries();return Object.fromEntries(e)}return null}(window.location),Object.defineProperty(bt,"preventManipulation",{get:function(){return w.preventManipulation}}),Object.defineProperty(bt,"stage",{get:function(){return r.getModule("stage")}});var vt=function(t){return r.getModule("stage").getProxy(t)};vt.version=s,vt.prefix=n,vt.organisation=o,vt.Modes=d,Object.defineProperty(vt,"mode",{set:function(t){w.mode=t},get:function(){return w.mode}}),vt.internals=bt,vt.version=s,vt.start=V.start,vt.stop=V.stop,vt.inspector=h,vt.colors=Q;var mt=window[i];vt.internals.configuration=mt,w.configure(mt,vt.start,vt.internals.query),window[i]=vt;var _t=function(){this.emissions={}};_t.prototype.add=function(t,e){if("function"!=typeof e)throw new Error("closure must be a function");this.emissions[t]||(this.emissions[t]=[]),this.emissions[t].push(e)},_t.prototype.remove=function(t,e){if(this.emissions[t])if(e){var r=this.emissions[t].indexOf(e);r>-1&&this.emissions[t].splice(r)}else delete this.emissions[t]},_t.prototype.emit=function(t,e){if(!this.emissions[t])return[];for(var r=[],n=0,i=this.emissions[t];nwindow.innerHeight&&e.move(t.bottom-window.innerHeight+50)},Ot.prototype.matches=function(t){return this.node.matches(t)},Ot.prototype.querySelector=function(t){return this.node.querySelector(t)},Ot.prototype.querySelectorAll=function(t){return j(this.node,t)},Ot.prototype.queryParentSelector=function(t){return T(this.node,t)},Ot.prototype.getRect=function(){var t=this.node.getBoundingClientRect();return t.center=t.left+.5*t.width,t.middle=t.top+.5*t.height,t},jt.isLegacy.get=function(){return r.isLegacy},Object.defineProperties(Ot.prototype,jt),Object.defineProperties(Ot,Tt);var Pt=function(t,e,r,n,i){this.type=t,this.eventType="key"+t,this.keyCode=e,this.closure=r,this.preventDefault=!0===n,this.stopPropagation=!0===i};Pt.prototype.handle=function(t){t.type===this.eventType&&t.keyCode===this.keyCode.value&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())};var At=function(t,e,r,n){this._node=t,this._type=e,this._closure=r,this._options=n},Nt={closure:{configurable:!0}};Nt.closure.get=function(){return this._closure},At.prototype.listen=function(){this._node.addEventListener(this._type,this._closure,this._options)},At.prototype.matchOptions=function(t){var e=this;switch(void 0===t&&(t=null),!0){case null===t:case"boolean"==typeof this._options&&"boolean"==typeof t&&this._options===t:return!0;case Object.keys(this._options).length!==Object.keys(t).length:return!1;case Object.keys(t).every((function(r){return e._options[r]===t[r]})):return!0}return!1},At.prototype.unlisten=function(){this._node.removeEventListener(this._type,this._closure,this._options)},Object.defineProperties(At.prototype,Nt);var Ct=function(t,e){this.hash=t,this.add=e};Ct.prototype.handle=function(t,e){this.hash===t&&this.add(e)};var It={DISCLOSE:g.event("disclose"),CONCEAL:g.event("conceal"),CURRENT:g.event("current")},Lt={RESET:g.emission("disclosure","reset"),ADDED:g.emission("disclosure","added"),RETRIEVE:g.emission("disclosure","retrieve"),REMOVED:g.emission("disclosure","removed"),GROUP:g.emission("disclosure","group"),UNGROUP:g.emission("disclosure","ungroup"),SPOTLIGHT:g.emission("disclosure","spotlight")},Mt=function(t){function e(e,r,n,i){t.call(this),this.type=e,this._selector=r,this.DisclosureButtonInstanceClass=n,this.disclosuresGroupInstanceClassName=i,this.modifier=this._selector+"--"+this.type.id,this._isPristine=!0,this._isRetrievingPrimaries=!1,this._hasRetrieved=!1,this._primaryButtons=[]}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isEnabled:{configurable:!0},isPristine:{configurable:!0},proxy:{configurable:!0},buttons:{configurable:!0},group:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0},primaryButtons:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Disclosure"},e.prototype.init=function(){this.addDescent(Lt.RESET,this.reset.bind(this)),this.addDescent(Lt.GROUP,this.update.bind(this)),this.addDescent(Lt.UNGROUP,this.update.bind(this)),this.addAscent(Lt.SPOTLIGHT,this.disclose.bind(this)),this.register('[aria-controls="'+this.id+'"]',this.DisclosureButtonInstanceClass),this.ascend(Lt.ADDED),this.listenHash(this.id,this._spotlight.bind(this)),this.update()},r.isEnabled.get=function(){return t.prototype.isEnabled},r.isEnabled.set=function(e){this.isEnabled!==e&&(t.prototype.isEnabled=e,e?this.ascend(Lt.ADDED):this.ascend(Lt.REMOVED))},r.isPristine.get=function(){return this._isPristine},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{disclose:e.disclose.bind(e),focus:e.focus.bind(e)});return this.type.canConceal&&(r.conceal=e.conceal.bind(e)),dt(r,{get buttons(){return e.buttons.map((function(t){return t.proxy}))},get group(){var t=e.group;return t?t.proxy:null},get isDisclosed(){return e.isDisclosed}})},r.buttons.get=function(){return this.getRegisteredInstances(this.DisclosureButtonInstanceClass.instanceClassName)},e.prototype.update=function(){this.getGroup(),this.retrievePrimaries()},e.prototype.getGroup=function(){if(this.disclosuresGroupInstanceClassName){var t=this.element.getAscendantInstance(this.disclosuresGroupInstanceClassName,this.constructor.instanceClassName);t&&t.validate(this)?this._group=t:this._group=null}else this._group=null},r.group.get=function(){return this._group},e.prototype.disclose=function(t){return!(!0===this.isDisclosed||!this.isEnabled)&&(this._isPristine=!1,this.isDisclosed=!0,!t&&this.group&&(this.group.current=this),!0)},e.prototype.conceal=function(t,e){return void 0===e&&(e=!0),!1!==this.isDisclosed&&(!(!this.type.canConceal&&this.group&&this.group.current===this)&&(this.isDisclosed=!1,!t&&this.group&&this.group.current===this&&(this.group.current=null),e||this.focus(),this._isPristine||this.descend(Lt.RESET),!0))},r.isDisclosed.get=function(){return this._isDisclosed},r.isDisclosed.set=function(t){if(this._isDisclosed!==t&&(this.isEnabled||!0!==t)){this.dispatch(t?It.DISCLOSE:It.CONCEAL,this),this._isDisclosed=t,t?this.addClass(this.modifier):this.removeClass(this.modifier);for(var e=0;e0)},e.prototype.focus=function(){this._primaryButtons.length>0&&this._primaryButtons[0].focus()},r.primaryButtons.get=function(){return this._primaryButtons},e.prototype.retrievePrimaries=function(){this._isRetrievingPrimaries||(this._isRetrievingPrimaries=!0,this.request(this._retrievePrimaries.bind(this)))},e.prototype._retrievePrimaries=function(){if(this._isRetrievingPrimaries=!1,this._primaryButtons=this._electPrimaries(this.buttons),!this._hasRetrieved&&0!==this._primaryButtons.length)if(this.retrieved(),this._hasRetrieved=!0,this.applyAbility(!0),this.group)this.group.retrieve();else if(this._isPristine&&this.isEnabled&&!this.group)switch(!0){case this.hash===this.id:this._spotlight();break;case this.isInitiallyDisclosed:this.disclose()}},e.prototype.retrieved=function(){},e.prototype._spotlight=function(){var t=this;this.disclose(),this.request((function(){t.ascend(Lt.SPOTLIGHT)}))},e.prototype._electPrimaries=function(t){var e=this;return t.filter((function(t){return t.canDisclose&&!e.node.contains(t.node)}))},e.prototype.applyAbility=function(t){void 0===t&&(t=!1);var e=!this._primaryButtons.every((function(t){return t.isDisabled}));this.isEnabled!==e&&(this.isEnabled=e,t||(!this.isEnabled&&this.isDisclosed&&(this.group?this.ascend(Lt.REMOVED):this.type.canConceal&&this.conceal()),this.isEnabled&&(this.group&&this.ascend(Lt.ADDED),this.hash===this.id&&this._spotlight())))},e.prototype.dispose=function(){this._group=null,this._primaryButtons=null,t.prototype.dispose.call(this),this.ascend(Lt.REMOVED)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),Dt=function(t){function e(e){t.call(this),this.type=e,this.attributeName=e.ariaState?"aria-"+e.id:g.attr(e.id),this._canDisclose=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isPrimary:{configurable:!0},canDisclose:{configurable:!0},isDisabled:{configurable:!0},proxy:{configurable:!0},isDisclosed:{configurable:!0},isInitiallyDisclosed:{configurable:!0},dx:{configurable:!0},dy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosureButton"},r.isPrimary.get=function(){return this.registration.creator.primaryButtons.includes(this)},r.canDisclose.get=function(){return this._canDisclose},r.isDisabled.get=function(){return this.type.canDisable&&this.hasAttribute("disabled")},e.prototype.init=function(){this._canDisclose=this.hasAttribute(this.attributeName),this._isInitiallyDisclosed=this.isDisclosed,this._isContained=this.registration.creator.node.contains(this.node),this.controlsId=this.getAttribute("aria-controls"),this.registration.creator.retrievePrimaries(),this.listenClick()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{focus:this.focus.bind(this)})},e.prototype.handleClick=function(t){this.registration.creator&&this.registration.creator.toggle(this.canDisclose)},e.prototype.mutate=function(t){this._canDisclose=this.hasAttribute(this.attributeName),this.registration.creator.applyAbility(),!this._isApplying&&this.isPrimary&&t.indexOf(this.attributeName)>-1&&this.registration.creator&&(this.isDisclosed?this.registration.creator.disclose():this.type.canConceal&&this.registration.creator.conceal())},e.prototype.apply=function(t){var e=this;this.canDisclose&&(this._isApplying=!0,this.setAttribute(this.attributeName,t),this.request((function(){e._isApplying=!1})))},r.isDisclosed.get=function(){return"true"===this.getAttribute(this.attributeName)},r.isInitiallyDisclosed.get=function(){return this._isInitiallyDisclosed},e.prototype.focus=function(){t.prototype.focus.call(this),this.scrollIntoView()},e.prototype.measure=function(t){var e=this.rect;this._dx=t.x-e.x,this._dy=t.y-e.y},r.dx.get=function(){return this._dx},r.dy.get=function(){return this._dy},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),xt={PREVENT_CONCEAL:g.attr.selector("prevent-conceal"),GROUP:g.attr("group")},Rt=function(t){function e(e,r){t.call(this,r),this.disclosureInstanceClassName=e,this._members=[],this._index=-1,this._isRetrieving=!1,this._hasRetrieved=!1,this._isGrouped=!0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},members:{configurable:!0},length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0},isGrouped:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"DisclosuresGroup"},e.prototype.init=function(){this.addAscent(Lt.ADDED,this.update.bind(this)),this.addAscent(Lt.RETRIEVE,this.retrieve.bind(this)),this.addAscent(Lt.REMOVED,this.update.bind(this)),this.descend(Lt.GROUP),this._isGrouped="false"!==this.getAttribute(xt.GROUP),this.update()},r.proxy.get=function(){var e=this,r={set index(t){e.index=t},get index(){return e.index},get length(){return e.length},get current(){var t=e.current;return t?t.proxy:null},get members(){return e.members.map((function(t){return t.proxy}))},get hasFocus(){return e.hasFocus},set isGrouped(t){e.isGrouped=t},get isGrouped(){return e.isGrouped}};return dt.call(this,t.prototype.proxy,r)},e.prototype.validate=function(t){return!0},e.prototype.getMembers=function(){var t=this,e=this.element.getDescendantInstances(this.disclosureInstanceClassName,this.constructor.instanceClassName,!0);this._members=e.filter(this.validate.bind(this)).filter((function(t){return t.isEnabled})),e.filter((function(e){return!t._members.includes(e)})).forEach((function(t){return t.conceal()}))},e.prototype.retrieve=function(t){void 0===t&&(t=!1),this._isRetrieving||this._hasRetrieved&&!t||(this._isRetrieving=!0,this.request(this._retrieve.bind(this)))},e.prototype._retrieve=function(){var t=this;if(this.getMembers(),this._isRetrieving=!1,this._hasRetrieved=!0,this.isGrouped){if(this.hash)for(var e=0;e=this.length||t===this._index)){this._index=t;for(var e=0;e-1}));if(1===r.length)return r;if(1===(e=t.prototype._electPrimaries.call(this,e)).length)return e;var n=e.filter((function(t){return t.dy>=0}));if(n.length>0&&(e=n),1===e.length)return e;var i=Math.min.apply(Math,e.map((function(t){return t.dy}))),o=e.filter((function(t){return t.dy===i}));return o.length>0&&(e=o),1===e.length||e.sort((function(t,e){return Math.abs(e.dx)-Math.abs(t.dx)})),e},Object.defineProperties(e,r),e}(Mt),Ft=function(t){function e(){t.call(this,"Collapse")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CollapsesGroup"},r.canUngroup.get=function(){return!0},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Rt),Ut={CHANGE:g("equisized")},zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Equisized"},e.prototype.init=function(){this.ascend(Ut.CHANGE)},e.prototype.measure=function(){return this.isLegacy&&(this.style.width="auto"),this.getRect().width},e.prototype.adjust=function(t){this.isLegacy&&(this.style.width=t+"px")},e.prototype.dispose=function(){this.ascend(Ut.CHANGE)},Object.defineProperties(e,r),e}(Ot),Bt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"EquisizedsGroup"},e.prototype.init=function(){this.isResizing=!0,this.isLoading=!0,this.addAscent(Ut.CHANGE,this.resize.bind(this))},e.prototype.load=function(){this.resize()},e.prototype.resize=function(){var t=this.element.getDescendantInstances("Equisized");this.isLegacy||this.style.setProperty("--equisized-width","auto");var e=Math.max.apply(Math,t.map((function(t){return t.measure()})));this.isLegacy?t.forEach((function(t){return t.adjust(e)})):this.style.setProperty("--equisized-width",e+"px")},Object.defineProperties(e,r),e}(Ot),Wt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={pressed:{configurable:!0},proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Toggle"},e.prototype.init=function(){this.pressed="true"===this.pressed,this.listenClick()},e.prototype.handleClick=function(){this.toggle()},e.prototype.toggle=function(){this.pressed="true"!==this.pressed},r.pressed.get=function(){return this.getAttribute("aria-pressed")},r.pressed.set=function(t){this.setAttribute("aria-pressed",t?"true":"false")},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{toggle:e.toggle.bind(e)});return dt(r,{get pressed(){return e.pressed},set pressed(t){e.pressed=t}})},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),qt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"InjectSvg"},e.prototype.init=function(){this.node&&(this.img=this.node.querySelector("img")),this.isLegacy||this.replace()},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{replace:e.replace.bind(e),restore:e.restore.bind(e)})},e.prototype.fetch=function(){var t=this;this.img&&(this.imgID=this.img.getAttribute("id"),this.imgClass=this.img.getAttribute("class"),this.imgURL=this.img.getAttribute("src"),fetch(this.imgURL).then((function(t){return t.text()})).then((function(e){var r=(new DOMParser).parseFromString(e,"text/html");t.svg=r.querySelector("svg"),t.svg&&t.replace()})))},e.prototype.replace=function(){if(this.svg){this.imgID&&void 0!==this.imgID&&this.svg.setAttribute("id",this.imgID);var t=this.imgURL.match(/[ \w-]+\./)[0];t&&(t=t.slice(0,-1),["dark","light","system"].includes(t)&&(this.svg.innerHTML=this.svg.innerHTML.replaceAll('id="artwork-','id="'+t+"-artwork-"),this.svg.innerHTML=this.svg.innerHTML.replaceAll('"#artwork-','"#'+t+"-artwork-"))),this.imgClass&&void 0!==this.imgClass&&this.svg.setAttribute("class",this.imgClass),this.svg.hasAttribute("xmlns:a")&&this.svg.removeAttribute("xmlns:a"),this.node.setAttribute("data-fr-inject-svg",!0);var e,r;e=this.svg,r={"aria-hidden":!0,focusable:!1},Object.keys(r).forEach((function(t){return e.setAttribute(t,r[t])})),this.node.replaceChild(this.svg,this.img)}else this.fetch()},e.prototype.restore=function(){this.img&&this.svg&&(this.node.setAttribute("data-fr-inject-svg",!1),this.node.replaceChild(this.img,this.svg))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),Kt={INJECT_SVG:"["+g.attr("inject-svg")+"]"},Vt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Artwork"},e.prototype.init=function(){this.isLegacy&&this.replace()},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{replace:this.replace.bind(this)})},e.prototype.fetch=function(){var t=this;this.xlink=this.node.getAttribute("href");var e=this.xlink.split("#");this.svgUrl=e[0],this.svgName=e[1];var r=new XMLHttpRequest;r.onload=function(){var e=(new DOMParser).parseFromString(r.responseText,"text/html");t.realSvgContent=e.getElementById(t.svgName),t.realSvgContent&&("symbol"===t.realSvgContent.tagName?(t.use=e.querySelector('use[href="#'+t.svgName+'"]'),t.use&&t.node.parentNode.insertBefore(t.use,t.node)):t.realSvgContent.classList.add(t.node.classList),t.replace())},r.open("GET",this.svgUrl),r.send()},e.prototype.replace=function(){this.realSvgContent?this.node.parentNode.replaceChild(this.realSvgContent,this.node):this.fetch()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(Ot),Yt={ARTWORK_USE:g.selector("artwork")+" use"},Xt={ASSESS_FILE:""+g.attr.selector("assess-file"),DETAIL:g.attr.selector("assess-file")+' [class$="__detail"], '+g.attr.selector("assess-file")+' [class*="__detail "]'},Qt={UPDATE:g.emission("assess","update"),ADDED:g.emission("assess","added")},Zt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessFile"},e.prototype.init=function(){this.lang=this.getLang(this.node),this.href=this.getAttribute("href"),this.hreflang=this.getAttribute("hreflang"),this.file={},this.gather(),this.addAscent(Qt.ADDED,this.update.bind(this)),this.addDescent(Qt.ADDED,this.update.bind(this))},e.prototype.getFileLength=function(){var t=this;void 0!==this.href?fetch(this.href,{method:"HEAD",mode:"cors"}).then((function(e){t.length=e.headers.get("content-length")||-1,-1===t.length&&h.warn("File size unknown: "+t.href+'\nUnable to get HTTP header: "content-length"'),t.gather()})):this.length=-1},e.prototype.mutate=function(t){-1!==t.indexOf("href")&&(this.href=this.getAttribute("href"),this.getFileLength()),-1!==t.indexOf("hreflang")&&(this.hreflang=this.getAttribute("hreflang"),this.gather())},e.prototype.gather=function(){if(this.isLegacy&&(this.length=-1),this.length){if(this.details=[],this.href){var t=this.parseExtension(this.href);t&&this.details.push(t.toUpperCase())}-1!==this.length&&this.details.push(this.bytesToSize(this.length)),this.hreflang&&this.details.push(this.getLangDisplayName(this.hreflang)),this.update()}else this.getFileLength()},e.prototype.update=function(){this.details&&(this.descend(Qt.UPDATE,this.details),this.ascend(Qt.UPDATE,this.details))},e.prototype.getLang=function(t){return t.lang?t.lang:document.documentElement===t?window.navigator.language:this.getLang(t.parentElement)},e.prototype.parseExtension=function(t){return t.match(/\.(\w{1,9})(?:$|[?#])/)[0].replace(".","")},e.prototype.getLangDisplayName=function(t){if(this.isLegacy)return t;var e=new Intl.DisplayNames([this.lang],{type:"language"}).of(t);return e.charAt(0).toUpperCase()+e.slice(1)},e.prototype.bytesToSize=function(t){if(-1===t)return null;var e=["octets","ko","Mo","Go","To"];"bytes"===this.getAttribute(g.attr("assess-file"))&&(e=["bytes","KB","MB","GB","TB"]);var r=parseInt(Math.floor(Math.log(t)/Math.log(1e3)),10);if(0===r)return t+" "+e[r];var n=t/Math.pow(1e3,r),i=Math.round(100*(n+Number.EPSILON))/100;return String(i).replace(".",",")+" "+e[r]},Object.defineProperties(e,r),e}(Ot),Jt=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AssessDetail"},e.prototype.init=function(){this.addDescent(Qt.UPDATE,this.update.bind(this)),this.ascend(Qt.ADDED)},e.prototype.update=function(t){this.node.innerHTML=t.join(" - ")},Object.defineProperties(e,r),e}(Ot),te=["32x9","16x9","3x2","4x3","1x1","3x4","2x3"],ee=function(t,e){return e.map((function(e){return g.selector(t+"--"+e)})).join(",")},re=g.selector("responsive-img")+", "+ee("responsive-img",te)+", "+g.selector("responsive-vid")+", "+ee("responsive-vid",["16x9","4x3","1x1"]),ne={RATIO:g.selector("ratio")+", "+ee("ratio",te)+", "+re},ie=window[i],oe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Ratio"},e.prototype.init=function(){if(!ie.internals.support.supportAspectRatio()){for(var t in this.ratio=16/9,this.classNames)if(this.registration.selector.indexOf(this.classNames[t])>0){var e=this.classNames[t].split("ratio-");e[1]&&(this.ratio=e[1].split("x")[0]/e[1].split("x")[1])}this.isRendering=!0,this.update()}},e.prototype.render=function(){this.getRect().width!==this.currentWidth&&this.update()},e.prototype.update=function(){this.currentWidth=this.getRect().width,this.style.height=this.currentWidth/this.ratio+"px"},Object.defineProperties(e,r),e}(Ot),se={TOP:g.selector("placement--top"),RIGHT:g.selector("placement--right"),BOTTOM:g.selector("placement--bottom"),LEFT:g.selector("placement--left")},ae={START:g.selector("placement--start"),CENTER:g.selector("placement--center"),END:g.selector("placement--end")},ce={TOP:"place_top",RIGHT:"place_right",BOTTOM:"place_bottom",LEFT:"place_left"},le={START:"align_start",CENTER:"align_center",END:"align_end"},ue={AUTO:"placement_auto",MANUAL:"placement_manual"},pe=function(t){function e(e,r,n,i){void 0===e&&(e=ue.AUTO),void 0===r&&(r=[ce.BOTTOM,ce.TOP,ce.LEFT,ce.RIGHT]),void 0===n&&(n=[le.CENTER,le.START,le.END]),void 0===i&&(i=16),t.call(this),this._mode=e,this._places=r,this._aligns=n,this._safeAreaMargin=i,this._isShown=!1,this._x=this._y=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},mode:{configurable:!0},place:{configurable:!0},align:{configurable:!0},isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Placement"},e.prototype.init=function(){this.isResizing=!0},r.proxy.get=function(){var e=this,r=Object.assign.call(this,t.prototype.proxy,{show:e.show.bind(e),hide:e.hide.bind(e)});return dt(r,{get mode(){return e.mode},set mode(t){e.mode=t},get place(){return e.place},set place(t){e.place=t},get align(){return e.align},set align(t){e.align=t},get isShown(){return e.isShown},set isShown(t){e.isShown=t}})},r.mode.get=function(){return this._mode},r.mode.set=function(t){this._mode=t},r.place.get=function(){return this._place},r.place.set=function(t){if(this._place!==t){switch(this._place){case ce.TOP:this.removeClass(se.TOP);break;case ce.RIGHT:this.removeClass(se.RIGHT);break;case ce.BOTTOM:this.removeClass(se.BOTTOM);break;case ce.LEFT:this.removeClass(se.LEFT)}switch(this._place=t,this._place){case ce.TOP:this.addClass(se.TOP);break;case ce.RIGHT:this.addClass(se.RIGHT);break;case ce.BOTTOM:this.addClass(se.BOTTOM);break;case ce.LEFT:this.addClass(se.LEFT)}}},r.align.get=function(){return this._align},r.align.set=function(t){if(this._align!==t){switch(this._align){case le.START:this.removeClass(ae.START);break;case le.CENTER:this.removeClass(ae.CENTER);break;case le.END:this.removeClass(ae.END)}switch(this._align=t,this._align){case le.START:this.addClass(ae.START);break;case le.CENTER:this.addClass(ae.CENTER);break;case le.END:this.addClass(ae.END)}}},e.prototype.show=function(){this.isShown=!0},e.prototype.hide=function(){this.isShown=!1},r.isShown.get=function(){return this._isShown},r.isShown.set=function(t){this._isShown!==t&&this.isEnabled&&(this.isRendering=t,this._isShown=t)},e.prototype.setReferent=function(t){this._referent=t},e.prototype.render=function(){if(this._referent){if(this.referentRect=this._referent.getRect(),this.rect=this.getRect(),this.safeArea=this.getSafeArea(),this.mode===ue.AUTO)switch(this.place=this.getPlace(),this.place){case ce.TOP:case ce.BOTTOM:this.align=this.getHorizontalAlign();break;case ce.LEFT:case ce.RIGHT:this.align=this.getVerticalAlign()}var t,e;switch(this.place){case ce.TOP:e=this.referentRect.top-this.rect.top-this.rect.height;break;case ce.RIGHT:t=this.referentRect.left-this.rect.left+this.referentRect.width;break;case ce.BOTTOM:e=this.referentRect.top-this.rect.top+this.referentRect.height;break;case ce.LEFT:t=this.referentRect.left-this.rect.left-this.rect.width}switch(this.place){case ce.TOP:case ce.BOTTOM:switch(this.align){case le.CENTER:t=this.referentRect.left-this.rect.left+.5*this.referentRect.width-.5*this.rect.width;break;case le.START:t=this.referentRect.left-this.rect.left;break;case le.END:t=this.referentRect.left-this.rect.left+this.referentRect.width-this.rect.width}break;case ce.RIGHT:case ce.LEFT:switch(this.align){case le.CENTER:e=this.referentRect.top-this.rect.top+.5*this.referentRect.height-.5*this.rect.height;break;case le.START:e=this.referentRect.top-this.rect.top;break;case le.END:e=this.referentRect.top-this.rect.top-this.rect.height}}this._x+=t+.5|0,this._y+=e+.5|0,this.node.style.transform="translate("+this._x+"px,"+this._y+"px)"}},e.prototype.getPlace=function(){for(var t=0,e=this._places;tthis.safeArea.top)return ce.TOP;break;case ce.RIGHT:if(this.referentRect.right+this.rect.widththis.safeArea.left)return ce.LEFT}}return this._places[0]},e.prototype.getHorizontalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.left&&this.referentRect.center+.5*this.rect.widththis.safeArea.left)return le.END}}return this._aligns[0]},e.prototype.getVerticalAlign=function(){for(var t=0,e=this._aligns;tthis.safeArea.top&&this.referentRect.middle+.5*this.rect.heightthis.safeArea.top)return le.END}}return this._aligns[0]},e.prototype.getSafeArea=function(){for(var t,e,r=this.node,n=this._safeAreaMargin,i=window.innerWidth-this._safeAreaMargin,o=window.innerHeight-this._safeAreaMargin,s=this._safeAreaMargin;r&&r!==document.body;){r=r.parentElement;var a=window.getComputedStyle(r),c=/(visible|(\w+))(\s(visible|(\w+)))?/.exec(a.overflow);if(t=void 0!==c[2],e=void 0!==c[3]?void 0!==c[5]:void 0!==c[2],t||e){var l=r.getBoundingClientRect();t&&(l.left>s&&(s=l.left),l.rightn&&(n=l.top),l.bottom-1&&(this.scheme=this.getAttribute(de.SCHEME)),t.indexOf(de.THEME)>-1&&(this.theme=this.getAttribute(de.THEME))},e.prototype.dispose=function(){this.unlistenPreferences()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),me={SCHEME:":root"+ie.internals.ns.attr.selector("theme")+", :root"+ie.internals.ns.attr.selector("scheme"),SWITCH_THEME:ie.internals.ns.selector("switch-theme"),RADIO_BUTTONS:'input[name="'+ie.internals.ns("radios-theme")+'"]'};ie.scheme={Scheme:ve,SchemeValue:fe,SchemeSelector:me,SchemeEmission:be,SchemeTheme:ye,SchemeEvent:ge},ie.internals.register(ie.scheme.SchemeSelector.SCHEME,ie.scheme.Scheme);var _e=ie.internals.ns.selector("accordion"),we=ie.internals.ns.selector("collapse"),Se={GROUP:ie.internals.ns.selector("accordions-group"),ACCORDION:_e,COLLAPSE:_e+" > "+we+", "+_e+" > *:not("+_e+"):not("+we+") > "+we+", "+_e+" > *:not("+_e+"):not("+we+") > *:not("+_e+"):not("+we+") > "+we,COLLAPSE_LEGACY:_e+" "+we,BUTTON:_e+"__btn"},Ee=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Accordion"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Se.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Oe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"AccordionsGroup"},e.prototype.validate=function(e){var r=e.node.matches(ie.internals.legacy.isLegacy?Se.COLLAPSE_LEGACY:Se.COLLAPSE);return t.prototype.validate.call(this,e)&&r},Object.defineProperties(e,r),e}(ie.core.CollapsesGroup);ie.accordion={Accordion:Ee,AccordionSelector:Se,AccordionsGroup:Oe},ie.internals.register(ie.accordion.AccordionSelector.GROUP,ie.accordion.AccordionsGroup),ie.internals.register(ie.accordion.AccordionSelector.ACCORDION,ie.accordion.Accordion);var je={EQUISIZED_BUTTON:ie.internals.ns.selector("btns-group--equisized")+" "+ie.internals.ns.selector("btn"),EQUISIZED_GROUP:ie.internals.ns.selector("btns-group--equisized")};ie.button={ButtonSelector:je},ie.internals.register(ie.button.ButtonSelector.EQUISIZED_BUTTON,ie.core.Equisized),ie.internals.register(ie.button.ButtonSelector.EQUISIZED_GROUP,ie.core.EquisizedsGroup);var Te=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"CardDownload"},e.prototype.init=function(){var t=this;this.addAscent(ie.core.AssessEmission.UPDATE,(function(e){t.descend(ie.core.AssessEmission.UPDATE,e)})),this.addAscent(ie.core.AssessEmission.ADDED,(function(){t.descend(ie.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ie.core.Instance),Pe={DOWNLOAD:ie.internals.ns.selector("card--download"),DOWNLOAD_DETAIL:ie.internals.ns.selector("card--download")+" "+ie.internals.ns.selector("card__end")+" "+ie.internals.ns.selector("card__detail")};ie.card={CardSelector:Pe,CardDownload:Te},ie.internals.register(ie.card.CardSelector.DOWNLOAD,ie.card.CardDownload),ie.internals.register(ie.card.CardSelector.DOWNLOAD_DETAIL,ie.core.AssessDetail);var Ae={INPUT:ie.internals.ns.selector("checkbox-group")+' input[type="checkbox"]'},Ne={CHANGE:ie.internals.ns.emission("checkbox","change"),RETRIEVE:ie.internals.ns.emission("checkbox","retrieve")},Ce=function(t){function e(){t.call(this),this._handlingChange=this.handleChange.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"CheckboxInput"},e.prototype.init=function(){this.node.addEventListener("change",this._handlingChange),this.addDescent(Ne.RETRIEVE,this._handlingChange),this.handleChange()},r.isChecked.get=function(){return this.node.checked},e.prototype.handleChange=function(){this.ascend(Ne.CHANGE,this.node)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.checkbox={CheckboxSelector:Ae,CheckboxEmission:Ne,CheckboxInput:Ce},ie.internals.register(ie.checkbox.CheckboxSelector.INPUT,ie.checkbox.CheckboxInput);var Ie={SEGMENTED:ie.internals.ns.selector("segmented"),SEGMENTED_ELEMENTS:ie.internals.ns.selector("segmented__elements"),SEGMENTED_ELEMENT:ie.internals.ns.selector("segmented__element input"),SEGMENTED_LEGEND:ie.internals.ns.selector("segmented__legend")},Le={ADDED:ie.internals.ns.emission("segmented","added"),REMOVED:ie.internals.ns.emission("segmented","removed")},Me=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Segmented"},e.prototype.init=function(){this.elements=this.node.querySelector(Ie.SEGMENTED_ELEMENTS),this.legend=this.node.querySelector(Ie.SEGMENTED_LEGEND),this.addAscent(Le.ADDED,this.resize.bind(this)),this.addAscent(Le.REMOVED,this.resize.bind(this)),this._isLegendInline=this.legend&&this.legend.classList.contains(ie.prefix+"-segmented__legend--inline"),this.isResizing=!0},e.prototype.resize=function(){var t=ie.prefix+"-segmented--vertical",e=ie.prefix+"-segmented__legend--inline";this.removeClass(t),this._isLegendInline&&(this.legend.classList.add(e),(this.node.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth+this.legend.offsetWidth+16>this.node.parentNode.offsetWidth)&&this.legend.classList.remove(e)),this.elements.offsetWidth>this.node.parentNode.offsetWidth||this.elements.scrollWidth>this.node.parentNode.offsetWidth?this.addClass(t):this.removeClass(t)},Object.defineProperties(e,r),e}(ie.core.Instance),De=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SegmentedElement"},e.prototype.init=function(){this.ascend(Le.ADDED)},e.prototype.dispose=function(){this.ascend(Le.REMOVED)},Object.defineProperties(e,r),e}(ie.core.Instance);ie.segmented={SegmentedSelector:Ie,SegmentedEmission:Le,SegmentedElement:De,Segmented:Me},ie.internals.register(ie.segmented.SegmentedSelector.SEGMENTED,ie.segmented.Segmented),ie.internals.register(ie.segmented.SegmentedSelector.SEGMENTED_ELEMENT,ie.segmented.SegmentedElement);var xe={BREADCRUMB:ie.internals.ns.selector("breadcrumb"),BUTTON:ie.internals.ns.selector("breadcrumb__button")},Re=function(t){function e(){t.call(this),this.count=0,this.focusing=this.focus.bind(this)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},links:{configurable:!0},collapse:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Breadcrumb"},e.prototype.init=function(){this.getCollapse(),this.isResizing=!0},r.proxy.get=function(){var e=this;return Object.assign.call(this,t.prototype.proxy,{focus:e.focus.bind(e),disclose:e.collapse.disclose.bind(e.collapse)})},e.prototype.getCollapse=function(){var t=this.collapse;t?t.listen(ie.core.DisclosureEvent.DISCLOSE,this.focusing):this.addAscent(ie.core.DisclosureEmission.ADDED,this.getCollapse.bind(this))},e.prototype.resize=function(){var t=this.collapse,e=this.links;t&&e.length&&(this.isBreakpoint(ie.core.Breakpoints.MD)?t.buttonHasFocus&&e[0].focus():e.indexOf(document.activeElement)>-1&&t.focus())},r.links.get=function(){return[].concat(this.querySelectorAll("a[href]"))},r.collapse.get=function(){return this.element.getDescendantInstances(ie.core.Collapse.instanceClassName,null,!0)[0]},e.prototype.focus=function(){this.count=0,this._focus()},e.prototype._focus=function(){var t=this.links[0];t&&(t.focus(),this.request(this.verify.bind(this)))},e.prototype.verify=function(){if(this.count++,!(this.count>100)){var t=this.links[0];t&&document.activeElement!==t&&this._focus()}},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(xe.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.breadcrumb={BreadcrumbSelector:xe,Breadcrumb:Re},ie.internals.register(ie.breadcrumb.BreadcrumbSelector.BREADCRUMB,ie.breadcrumb.Breadcrumb);var ke={TOOLTIP:ie.internals.ns.selector("tooltip"),SHOWN:ie.internals.ns.selector("tooltip--shown"),HIDDING:ie.internals.ns.selector("tooltip--hidding"),BUTTON:ie.internals.ns.selector("btn--tooltip")},He=1,Ge=2,$e=function(t){function e(){t.call(this),this._state=0}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={state:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TooltipReferent"},e.prototype.init=function(){if(t.prototype.init.call(this),this.listen("focusin",this.focusIn.bind(this)),this.listen("focusout",this.focusOut.bind(this)),!this.matches(ke.BUTTON)){var e=this.mouseover.bind(this);this.listen("mouseover",e),this.placement.listen("mouseover",e);var r=this.mouseout.bind(this);this.listen("mouseout",r),this.placement.listen("mouseout",r)}this.addEmission(ie.core.RootEmission.KEYDOWN,this._keydown.bind(this)),this.listen("click",this._click.bind(this)),this.addEmission(ie.core.RootEmission.CLICK,this._clickOut.bind(this))},e.prototype._click=function(){this.focus()},e.prototype._clickOut=function(t){this.node.contains(t)||this.blur()},e.prototype._keydown=function(t){if(t===ie.core.KeyCodes.ESCAPE)this.blur(),this.close()},e.prototype.close=function(){this.state=0},r.state.get=function(){return this._state},r.state.set=function(t){this._state!==t&&(this.isShown=t>0,this._state=t)},e.prototype.focusIn=function(){this.state|=He},e.prototype.focusOut=function(){this.state&=~He},e.prototype.mouseover=function(){this.state|=Ge},e.prototype.mouseout=function(){this.state&=~Ge},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.PlacementReferent),Fe={SHOW:g.event("show"),HIDE:g.event("hide")},Ue="hidden",ze="shown",Be="hiding",We=function(t){function e(){t.call(this,ie.core.PlacementMode.AUTO,[ie.core.PlacementPosition.TOP,ie.core.PlacementPosition.BOTTOM],[ie.core.PlacementAlign.CENTER,ie.core.PlacementAlign.START,ie.core.PlacementAlign.END]),this.modifier="",this._state=Ue}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isShown:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Tooltip"},e.prototype.init=function(){t.prototype.init.call(this),this.register('[aria-describedby="'+this.id+'"]',$e),this.listen("transitionend",this.transitionEnd.bind(this))},e.prototype.transitionEnd=function(){this._state===Be&&(this.removeClass(ke.SHOWN),this.removeClass(ke.HIDDING),this._state=Ue,this.isShown=!1)},r.isShown.get=function(){return t.prototype.isShown},r.isShown.set=function(e){if(this.isEnabled)switch(!0){case e:this._state=ze,this.addClass(ke.SHOWN),this.removeClass(ke.HIDDING),this.dispatch(Fe.SHOW),t.prototype.isShown=!0;break;case this.isShown&&!e&&this._state===ze:this._state=Be,this.addClass(ke.HIDDING);break;case this.isShown&&!e&&this._state===Ue:this.dispatch(Fe.HIDE),this.removeClass(ke.HIDDING),t.prototype.isShown=!1}},e.prototype.render=function(){t.prototype.render.call(this),this.rect=this.getRect();var e=this.referentRect.center-this.rect.center,r=.5*this.rect.width-8;e<-r&&(e=-r),e>r&&(e=r),this.setProperty("--arrow-x",e.toFixed(2)+"px")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Placement);ie.tooltip={Tooltip:We,TooltipSelector:ke,TooltipEvent:Fe},ie.internals.register(ie.tooltip.TooltipSelector.TOOLTIP,ie.tooltip.Tooltip);var qe=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleInput"},r.isChecked.get=function(){return this.node.checked},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Ke=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={proxy:{configurable:!0},input:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"ToggleStatusLabel"},e.prototype.init=function(){this.register('input[id="'+this.getAttribute("for")+'"]',qe),this.update(),this.isSwappingFont=!0},r.proxy.get=function(){return Object.assign.call(this,t.prototype.proxy,{update:this.update.bind(this)})},r.input.get=function(){return this.getRegisteredInstances("ToggleInput")[0]},e.prototype.update=function(){this.node.style.removeProperty("--toggle-status-width");var t=this.input.isChecked,e=getComputedStyle(this.node,":before"),r=parseFloat(e.width);this.input.node.checked=!t;var n=getComputedStyle(this.node,":before"),i=parseFloat(n.width);i>r&&(r=i),this.input.node.checked=t,this.node.style.setProperty("--toggle-status-width",r/16+"rem")},e.prototype.swapFont=function(t){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Ve={STATUS_LABEL:""+ie.internals.ns.selector("toggle__label")+ie.internals.ns.attr.selector("checked-label")+ie.internals.ns.attr.selector("unchecked-label")};ie.toggle={ToggleStatusLabel:Ke,ToggleSelector:Ve},ie.internals.register(ie.toggle.ToggleSelector.STATUS_LABEL,ie.toggle.ToggleStatusLabel);var Ye=ie.internals.ns.selector("sidemenu__item"),Xe=ie.internals.ns.selector("collapse"),Qe={LIST:ie.internals.ns.selector("sidemenu__list"),COLLAPSE:Ye+" > "+Xe+", "+Ye+" > *:not("+Ye+"):not("+Xe+") > "+Xe+", "+Ye+" > *:not("+Ye+"):not("+Xe+") > *:not("+Ye+"):not("+Xe+") > "+Xe,COLLAPSE_LEGACY:Ye+" "+Xe,ITEM:ie.internals.ns.selector("sidemenu__item"),BUTTON:ie.internals.ns.selector("sidemenu__btn")},Ze=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"SidemenuList"},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.node.matches(ie.internals.legacy.isLegacy?Qe.COLLAPSE_LEGACY:Qe.COLLAPSE)},Object.defineProperties(e,r),e}(ie.core.CollapsesGroup),Je=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"SidemenuItem"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Qe.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.sidemenu={SidemenuList:Ze,SidemenuItem:Je,SidemenuSelector:Qe},ie.internals.register(ie.sidemenu.SidemenuSelector.LIST,ie.sidemenu.SidemenuList),ie.internals.register(ie.sidemenu.SidemenuSelector.ITEM,ie.sidemenu.SidemenuItem);var tr={MODAL:ie.internals.ns.selector("modal"),SCROLL_DIVIDER:ie.internals.ns.selector("scroll-divider"),BODY:ie.internals.ns.selector("modal__body"),TITLE:ie.internals.ns.selector("modal__title")},er=function(t){function e(){t.call(this,ie.core.DisclosureType.OPENED)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"ModalButton"},Object.defineProperties(e,r),e}(ie.core.DisclosureButton),rr={CONCEALING_BACKDROP:ie.internals.ns.attr("concealing-backdrop")},nr=function(t){function e(){t.call(this,ie.core.DisclosureType.OPENED,tr.MODAL,er,"ModalsGroup"),this._isActive=!1,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={body:{configurable:!0},isDialog:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Modal"},e.prototype.init=function(){t.prototype.init.call(this),this._isDialog="DIALOG"===this.node.tagName,this.isScrolling=!1,this.listenClick(),this.addEmission(ie.core.RootEmission.KEYDOWN,this._keydown.bind(this))},e.prototype._keydown=function(t){if(t===ie.core.KeyCodes.ESCAPE)this._escape()},e.prototype._escape=function(){switch(document.activeElement?document.activeElement.tagName:void 0){case"INPUT":case"LABEL":case"TEXTAREA":case"SELECT":case"AUDIO":case"VIDEO":break;default:this.isDisclosed&&(this.conceal(),this.focus())}},e.prototype.retrieved=function(){this._ensureAccessibleName()},r.body.get=function(){return this.element.getDescendantInstances("ModalBody","Modal")[0]},e.prototype.handleClick=function(t){t.target===this.node&&"false"!==this.getAttribute(rr.CONCEALING_BACKDROP)&&this.conceal()},e.prototype.disclose=function(e){return!!t.prototype.disclose.call(this,e)&&(this.body&&this.body.activate(),this.isScrollLocked=!0,this.setAttribute("aria-modal","true"),this.setAttribute("open","true"),this._isDialog||this.activateModal(),!0)},e.prototype.conceal=function(e,r){return!!t.prototype.conceal.call(this,e,r)&&(this.isScrollLocked=!1,this.removeAttribute("aria-modal"),this.removeAttribute("open"),this.body&&this.body.deactivate(),this._isDialog||this.deactivateModal(),!0)},r.isDialog.get=function(){return this._isDialog},r.isDialog.set=function(t){this._isDialog=t},e.prototype.activateModal=function(){this._isActive||(this._isActive=!0,this._hasDialogRole="dialog"===this.getAttribute("role"),this._hasDialogRole||this.setAttribute("role","dialog"))},e.prototype.deactivateModal=function(){this._isActive&&(this._isActive=!1,this._hasDialogRole||this.removeAttribute("role"))},e.prototype._setAccessibleName=function(t,e){var r=this.retrieveNodeId(t,e);this.warn("add reference to "+e+" for accessible name (aria-labelledby)"),this.setAttribute("aria-labelledby",r)},e.prototype._ensureAccessibleName=function(){if(this.isEnabled&&(!this.isEnabled||!this.hasAttribute("aria-labelledby")&&!this.hasAttribute("aria-label"))){this.warn("missing accessible name");var t=this.node.querySelector(tr.TITLE),e=this.primaryButtons[0];switch(!0){case null!==t:this._setAccessibleName(t,"title");break;case void 0!==e:this.warn("missing required title, fallback to primary button"),this._setAccessibleName(e,"primary")}}},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Disclosure),ir=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])',"details>summary:first-of-type","details","iframe"].join(),or=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),sr=function(t,e){if(!(t instanceof Element))return!1;var r=window.getComputedStyle(t);if(!r)return!1;if("hidden"===r.visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===r.display)return!1;t=t.parentElement}return!0},ar=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.focusing=this.maintainFocus.bind(this),this.current=null},cr={trapped:{configurable:!0},focusables:{configurable:!0}};cr.trapped.get=function(){return null!==this.element},ar.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},ar.prototype.wait=function(){sr(this.element)?this.trapping():window.requestAnimationFrame(this.waiting)},ar.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&-1===t.indexOf(document.activeElement)&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),document.body.addEventListener("focus",this.focusing,!0)}},ar.prototype.stun=function(t){for(var e=0,r=t.children;e0||e[i-1].tabIndex>0)&&(t.preventDefault(),e[i-1].focus()):this.element.contains(document.activeElement)&&i!==e.length-1&&-1!==i?document.activeElement.tabIndex>0&&(t.preventDefault(),e[i+1].focus()):(t.preventDefault(),r.focus())}}},cr.focusables.get=function(){var t=this,e=ie.internals.dom.querySelectorAllArray(this.element,ir),r=ie.internals.dom.querySelectorAllArray(document.documentElement,'input[type="radio"]');if(r.length){for(var n={},i=0,o=r;ithis.node.clientHeight?this.node.offsetHeight+this.node.scrollTop>=this.node.scrollHeight?this.removeClass(tr.SCROLL_DIVIDER):this.addClass(tr.SCROLL_DIVIDER):this.removeClass(tr.SCROLL_DIVIDER)},e.prototype.resize=function(){this.adjust(),this.request(this.adjust.bind(this))},e.prototype.adjust=function(){var t=32*(this.isBreakpoint(ie.core.Breakpoints.MD)?2:1);this.isLegacy?this.style.maxHeight=window.innerHeight-t+"px":this.style.setProperty("--modal-max-height",window.innerHeight-t+"px"),this.divide()},Object.defineProperties(e,r),e}(ie.core.Instance);ie.modal={Modal:nr,ModalButton:er,ModalBody:hr,ModalsGroup:pr,ModalSelector:tr},ie.internals.register(ie.modal.ModalSelector.MODAL,ie.modal.Modal),ie.internals.register(ie.modal.ModalSelector.BODY,ie.modal.ModalBody),ie.internals.register(ie.core.RootSelector.ROOT,ie.modal.ModalsGroup);var fr={TOGGLE:ie.internals.ns.emission("password","toggle"),ADJUST:ie.internals.ns.emission("password","adjust")},dr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={width:{configurable:!0},isChecked:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordToggle"},e.prototype.init=function(){this.listenClick(),this.ascend(fr.ADJUST,this.width),this.isSwappingFont=!0,this._isChecked=this.isChecked},r.width.get=function(){var t=getComputedStyle(this.node.parentNode);return parseInt(t.width)},r.isChecked.get=function(){return this.node.checked},r.isChecked.set=function(t){this._isChecked=t,this.ascend(fr.TOGGLE,t)},e.prototype.handleClick=function(){this.isChecked=!this._isChecked},e.prototype.swapFont=function(t){this.ascend(fr.ADJUST,this.width)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),yr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"Password"},e.prototype.init=function(){this.addAscent(fr.TOGGLE,this.toggle.bind(this)),this.addAscent(fr.ADJUST,this.adjust.bind(this))},e.prototype.toggle=function(t){this.descend(fr.TOGGLE,t)},e.prototype.adjust=function(t){this.descend(fr.ADJUST,t)},Object.defineProperties(e,r),e}(ie.core.Instance),br={PASSWORD:ie.internals.ns.selector("password"),INPUT:ie.internals.ns.selector("password__input"),LABEL:ie.internals.ns.selector("password__label"),TOOGLE:ie.internals.ns.selector("password__checkbox")+' input[type="checkbox"]'},gr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRevealed:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"PasswordInput"},e.prototype.init=function(){this.addDescent(fr.TOGGLE,this.toggle.bind(this)),this._isRevealed="password"===this.hasAttribute("type"),this.listen("keydown",this.capslock.bind(this)),this.listen("keyup",this.capslock.bind(this))},e.prototype.toggle=function(t){this.isRevealed=t,this.setAttribute("type",t?"text":"password")},r.isRevealed.get=function(){return this._isRevealed},e.prototype.capslock=function(t){t&&"function"!=typeof t.getModifierState||(t.getModifierState("CapsLock")?this.node.parentNode.setAttribute(ie.internals.ns.attr("capslock"),""):this.node.parentNode.removeAttribute(ie.internals.ns.attr("capslock")))},r.isRevealed.set=function(t){this._isRevealed=t,this.setAttribute("type",t?"text":"password")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),vr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"PasswordLabel"},e.prototype.init=function(){this.addDescent(fr.ADJUST,this.adjust.bind(this))},e.prototype.adjust=function(t){var e=Math.ceil(t/16);this.node.style.paddingRight=e+"rem"},Object.defineProperties(e,r),e}(ie.core.Instance);ie.password={Password:yr,PasswordToggle:dr,PasswordSelector:br,PasswordInput:gr,PasswordLabel:vr},ie.internals.register(ie.password.PasswordSelector.INPUT,ie.password.PasswordInput),ie.internals.register(ie.password.PasswordSelector.PASSWORD,ie.password.Password),ie.internals.register(ie.password.PasswordSelector.TOOGLE,ie.password.PasswordToggle),ie.internals.register(ie.password.PasswordSelector.LABEL,ie.password.PasswordLabel);var mr=ie.internals.ns.selector("nav__item"),_r=ie.internals.ns.selector("collapse"),wr={NAVIGATION:ie.internals.ns.selector("nav"),COLLAPSE:mr+" > "+_r+", "+mr+" > *:not("+mr+"):not("+_r+") > "+_r+", "+mr+" > *:not("+mr+"):not("+_r+") > *:not("+mr+"):not("+_r+") > "+_r,COLLAPSE_LEGACY:mr+" "+_r,ITEM:mr,ITEM_RIGHT:mr+"--align-right",MENU:ie.internals.ns.selector("menu"),BUTTON:ie.internals.ns.selector("nav__btn"),TRANSLATE_BUTTON:ie.internals.ns.selector("translate__btn")},Sr=function(t){function e(){t.call(this),this._isRightAligned=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isRightAligned:{configurable:!0},collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"NavigationItem"},e.prototype.init=function(){this.addAscent(ie.core.DisclosureEmission.ADDED,this.calculate.bind(this)),this.addAscent(ie.core.DisclosureEmission.REMOVED,this.calculate.bind(this)),this.isResizing=!0,this.calculate()},e.prototype.resize=function(){this.calculate()},e.prototype.calculate=function(){var t=this.element.getDescendantInstances(ie.core.Collapse.instanceClassName,null,!0)[0];if(t&&this.isBreakpoint(ie.core.Breakpoints.LG)&&t.element.node.matches(wr.MENU)){var e=this.element.node.parentElement.getBoundingClientRect().right,r=t.element.node.getBoundingClientRect().width,n=this.element.node.getBoundingClientRect().left;this.isRightAligned=n+r>e}else this.isRightAligned=!1},r.isRightAligned.get=function(){return this._isRightAligned},r.isRightAligned.set=function(t){this._isRightAligned!==t&&(this._isRightAligned=t,t?ie.internals.dom.addClass(this.element.node,wr.ITEM_RIGHT):ie.internals.dom.removeClass(this.element.node,wr.ITEM_RIGHT))},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&(t.hasClass(wr.BUTTON)||t.hasClass(wr.TRANSLATE_BUTTON))}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),Er={NONE:-1,INSIDE:0,OUTSIDE:1},Or=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={index:{configurable:!0},canUngroup:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Navigation"},e.prototype.init=function(){t.prototype.init.call(this),this.clicked=!1,this.out=!1,this.addEmission(ie.core.RootEmission.CLICK,this._handleRootClick.bind(this)),this.listen("mousedown",this.handleMouseDown.bind(this)),this.listenClick({capture:!0}),this.isResizing=!0},e.prototype.validate=function(e){return t.prototype.validate.call(this,e)&&e.element.node.matches(ie.internals.legacy.isLegacy?wr.COLLAPSE_LEGACY:wr.COLLAPSE)},e.prototype.handleMouseDown=function(t){this.isBreakpoint(ie.core.Breakpoints.LG)&&-1!==this.index&&this.current&&(this.position=this.current.node.contains(t.target)?Er.INSIDE:Er.OUTSIDE,this.requestPosition())},e.prototype.handleClick=function(t){!t.target.matches("a, button")||t.target.matches("[aria-controls]")||t.target.matches(ie.core.DisclosureSelector.PREVENT_CONCEAL)||(this.index=-1)},e.prototype._handleRootClick=function(t){this.isBreakpoint(ie.core.Breakpoints.LG)&&(this.node.contains(t)||(this.out=!0,this.requestPosition()))},e.prototype.requestPosition=function(){this.isRequesting||(this.isRequesting=!0,this.request(this.getPosition.bind(this)))},e.prototype.getPosition=function(){if(this.out)switch(this.position){case Er.OUTSIDE:this.index=-1;break;case Er.INSIDE:this.current&&!this.current.node.contains(document.activeElement)&&this.current.focus();break;default:this.index>-1&&!this.current.hasFocus&&(this.index=-1)}this.request(this.requested.bind(this))},e.prototype.requested=function(){this.position=Er.NONE,this.out=!1,this.isRequesting=!1},r.index.get=function(){return t.prototype.index},r.index.set=function(e){-1===e&&this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},r.canUngroup.get=function(){return!this.isBreakpoint(ie.core.Breakpoints.LG)},e.prototype.resize=function(){this.update()},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.CollapsesGroup);ie.navigation={Navigation:Or,NavigationItem:Sr,NavigationMousePosition:Er,NavigationSelector:wr},ie.internals.register(ie.navigation.NavigationSelector.NAVIGATION,ie.navigation.Navigation),ie.internals.register(ie.navigation.NavigationSelector.ITEM,ie.navigation.NavigationItem);var jr=function(t){function e(){t.call(this,ie.core.DisclosureType.SELECT)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabButton"},e.prototype.handleClick=function(e){t.prototype.handleClick.call(this,e),this.focus()},e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.isPrimary&&(this.setAttribute("tabindex",e?"0":"-1"),e&&this.list&&this.list.focalize(this))},r.list.get=function(){return this.element.getAscendantInstance("TabsList","TabsGroup")},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.DisclosureButton),Tr={TAB:ie.internals.ns.selector("tabs__tab"),GROUP:ie.internals.ns.selector("tabs"),PANEL:ie.internals.ns.selector("tabs__panel"),LIST:ie.internals.ns.selector("tabs__list"),SHADOW:ie.internals.ns.selector("tabs__shadow"),SHADOW_LEFT:ie.internals.ns.selector("tabs__shadow--left"),SHADOW_RIGHT:ie.internals.ns.selector("tabs__shadow--right"),PANEL_START:ie.internals.ns.selector("tabs__panel--direction-start"),PANEL_END:ie.internals.ns.selector("tabs__panel--direction-end")},Pr="direction-start",Ar="direction-end",Nr="none",Cr=function(t){function e(){t.call(this,ie.core.DisclosureType.SELECT,Tr.PANEL,jr,"TabsGroup"),this._direction=Nr,this._isPreventingTransition=!1}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={direction:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabPanel"},r.direction.get=function(){return this._direction},r.direction.set=function(t){if(t!==this._direction){switch(this._direction){case Pr:this.removeClass(Tr.PANEL_START);break;case Ar:this.removeClass(Tr.PANEL_END);break;case Nr:break;default:return}switch(this._direction=t,this._direction){case Pr:this.addClass(Tr.PANEL_START);break;case Ar:this.addClass(Tr.PANEL_END)}}},r.isPreventingTransition.get=function(){return this._isPreventingTransition},r.isPreventingTransition.set=function(t){this._isPreventingTransition!==t&&(t?this.addClass(ie.internals.motion.TransitionSelector.NONE):this.removeClass(ie.internals.motion.TransitionSelector.NONE),this._isPreventingTransition=!0===t)},e.prototype.translate=function(t,e){this.isPreventingTransition=e,this.direction=t},e.prototype.reset=function(){this.group&&this.group.retrieve(!0)},e.prototype._electPrimaries=function(e){var r=this;return this.group&&this.group.list?t.prototype._electPrimaries.call(this,e).filter((function(t){return r.group.list.node.contains(t.node)})):[]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Disclosure),Ir="tab_keys_left",Lr="tab_keys_right",Mr="tab_keys_home",Dr="tab_keys_end",xr={PRESS_KEY:ie.internals.ns.emission("tab","press_key"),LIST_HEIGHT:ie.internals.ns.emission("tab","list_height")},Rr=function(t){function e(){t.call(this,"TabPanel")}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={list:{configurable:!0},buttonHasFocus:{configurable:!0},isPreventingTransition:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TabsGroup"},e.prototype.init=function(){t.prototype.init.call(this),this.listen("transitionend",this.transitionend.bind(this)),this.addAscent(xr.PRESS_KEY,this.pressKey.bind(this)),this.addAscent(xr.LIST_HEIGHT,this.setListHeight.bind(this)),this.isRendering=!0},e.prototype.getIndex=function(e){void 0===e&&(e=0),t.prototype.getIndex.call(this,e)},r.list.get=function(){return this.element.getDescendantInstances("TabsList","TabsGroup",!0)[0]},e.prototype.setListHeight=function(t){this.listHeight=t},e.prototype.transitionend=function(t){this.isPreventingTransition=!0},r.buttonHasFocus.get=function(){return this.members.some((function(t){return t.buttonHasFocus}))},e.prototype.pressKey=function(t){switch(t){case Ir:this.pressLeft();break;case Lr:this.pressRight();break;case Mr:this.pressHome();break;case Dr:this.pressEnd()}},e.prototype.pressRight=function(){this.buttonHasFocus&&(this.index0?this.index--:this.index=this.length-1,this.focus())},e.prototype.pressHome=function(){this.buttonHasFocus&&(this.index=0,this.focus())},e.prototype.pressEnd=function(){this.buttonHasFocus&&(this.index=this.length-1,this.focus())},e.prototype.focus=function(){this.current&&this.current.focus()},e.prototype.apply=function(){for(var t=0;tr.right&&this.node.scrollTo(n-r.right+e.right+16,0)},r.isScrolling.get=function(){return this._isScrolling},r.isScrolling.set=function(t){this._isScrolling!==t&&(this._isScrolling=t,this.apply())},e.prototype.apply=function(){this._isScrolling?(this.addClass(Tr.SHADOW),this.scroll()):(this.removeClass(Tr.SHADOW_RIGHT),this.removeClass(Tr.SHADOW_LEFT),this.removeClass(Tr.SHADOW))},e.prototype.scroll=function(){var t=Math.abs(this.node.scrollLeft),e=t<=16,r=this.node.scrollWidth-this.node.clientWidth-16,n=Math.abs(t)>=r,i="rtl"===getComputedStyle(this.node).direction,o=i?Tr.SHADOW_RIGHT:Tr.SHADOW_LEFT,s=i?Tr.SHADOW_LEFT:Tr.SHADOW_RIGHT;e?this.removeClass(o):this.addClass(o),n?this.removeClass(s):this.addClass(s)},e.prototype.resize=function(){this.isScrolling=this.node.scrollWidth>this.node.clientWidth+16;var t=this.getRect().height;this.setProperty("--tabs-list-height",t+"px"),this.ascend(xr.LIST_HEIGHT,t)},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.tab={TabPanel:Cr,TabButton:jr,TabsGroup:Rr,TabsList:kr,TabSelector:Tr,TabEmission:xr},ie.internals.register(ie.tab.TabSelector.PANEL,ie.tab.TabPanel),ie.internals.register(ie.tab.TabSelector.GROUP,ie.tab.TabsGroup),ie.internals.register(ie.tab.TabSelector.LIST,ie.tab.TabsList);var Hr={DISMISS:ie.internals.ns.event("dismiss")},Gr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TagDismissible"},e.prototype.init=function(){this.listenClick()},e.prototype.handleClick=function(){switch(this.focusClosest(),ie.mode){case ie.Modes.ANGULAR:case ie.Modes.REACT:case ie.Modes.VUE:this.request(this.verify.bind(this));break;default:this.remove()}this.dispatch(Hr.DISMISS)},e.prototype.verify=function(){document.body.contains(this.node)&&this.warn("a TagDismissible has just been dismissed and should be removed from the dom. In "+ie.mode+" mode, the api doesn't handle dom modification. An event "+Hr.DISMISS+" is dispatched by the element to trigger the removal")},Object.defineProperties(e,r),e}(ie.core.Instance),$r={PRESSABLE:ie.internals.ns.selector("tag")+"[aria-pressed]",DISMISSIBLE:""+ie.internals.ns.selector("tag--dismiss")};ie.tag={TagDismissible:Gr,TagSelector:$r,TagEvent:Hr},ie.internals.register(ie.tag.TagSelector.PRESSABLE,ie.core.Toggle),ie.internals.register(ie.tag.TagSelector.DISMISSIBLE,ie.tag.TagDismissible);var Fr=ie.internals.ns.selector("transcription"),Ur={TRANSCRIPTION:Fr,BUTTON:Fr+"__btn"},zr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={collapsePrimary:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Transcription"},r.collapsePrimary.get=function(){return this.element.children.map((function(t){return t.getInstance("CollapseButton")})).filter((function(t){return null!==t&&t.hasClass(Ur.BUTTON)}))[0]},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.transcription={Transcription:zr,TranscriptionSelector:Ur},ie.internals.register(ie.transcription.TranscriptionSelector.TRANSCRIPTION,ie.transcription.Transcription);var Br=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TileDownload"},e.prototype.init=function(){var t=this;this.addAscent(ie.core.AssessEmission.UPDATE,(function(e){t.descend(ie.core.AssessEmission.UPDATE,e)})),this.addAscent(ie.core.AssessEmission.ADDED,(function(){t.descend(ie.core.AssessEmission.ADDED)}))},Object.defineProperties(e,r),e}(ie.core.Instance),Wr={DOWNLOAD:ie.internals.ns.selector("tile--download"),DOWNLOAD_DETAIL:ie.internals.ns.selector("tile--download")+" "+ie.internals.ns.selector("tile__detail")};ie.tile={TileSelector:Wr,TileDownload:Br},ie.internals.register(ie.tile.TileSelector.DOWNLOAD,ie.tile.TileDownload),ie.internals.register(ie.tile.TileSelector.DOWNLOAD_DETAIL,ie.core.AssessDetail);var qr={RANGE:ie.internals.ns.selector("range"),RANGE_SM:ie.internals.ns.selector("range--sm"),RANGE_STEP:ie.internals.ns.selector("range--step"),RANGE_DOUBLE:ie.internals.ns.selector("range--double"),RANGE_DOUBLE_STEP:ie.internals.ns.selector("range--double")+ie.internals.ns.selector("range--step"),RANGE_INPUT:ie.internals.ns.selector("range input[type=range]:nth-of-type(1)"),RANGE_INPUT2:ie.internals.ns.selector("range--double")+" input[type=range]:nth-of-type(2)",RANGE_OUTPUT:ie.internals.ns.selector("range__output"),RANGE_MIN:ie.internals.ns.selector("range__min"),RANGE_MAX:ie.internals.ns.selector("range__max"),RANGE_PREFIX:ie.internals.ns.attr("prefix"),RANGE_SUFFIX:ie.internals.ns.attr("suffix")},Kr={VALUE:ie.internals.ns.emission("range","value"),VALUE2:ie.internals.ns.emission("range","value2"),OUTPUT:ie.internals.ns.emission("range","output"),CONSTRAINTS:ie.internals.ns.emission("range","constraints"),MIN:ie.internals.ns.emission("range","min"),MAX:ie.internals.ns.emission("range","max"),STEP:ie.internals.ns.emission("range","step"),PREFIX:ie.internals.ns.emission("range","prefix"),SUFFIX:ie.internals.ns.emission("range","suffix"),DISABLED:ie.internals.ns.emission("range","disabled"),ENABLE_POINTER:ie.internals.ns.emission("range","enable_pointer")},Vr=function(){this._width=0,this._min=0,this._max=0,this._value=0,this._thumbSize=24,this._innerWidth=0,this._prefix="",this._suffix="",this._background={}},Yr={width:{configurable:!0},isSm:{configurable:!0},textValue:{configurable:!0},value:{configurable:!0},outputX:{configurable:!0},min:{configurable:!0},textMin:{configurable:!0},max:{configurable:!0},textMax:{configurable:!0},step:{configurable:!0},output:{configurable:!0},progress:{configurable:!0}};Vr.prototype.configure=function(t){t&&(this._prefix=t._prefix,this._suffix=t._suffix,this._width=t.width,this.setConstraints(t._constraints),this.value=t.value,this.update())},Vr.prototype.setPrefix=function(t){this._prefix=null!==t?t:""},Vr.prototype.setSuffix=function(t){this._suffix=null!==t?t:""},Vr.prototype._decorate=function(t){return""+this._prefix+t+this._suffix},Yr.width.get=function(){return this._width},Yr.width.set=function(t){this._width=t},Yr.isSm.get=function(){return this._isSm},Yr.isSm.set=function(t){this._isSm!==t&&(this._isSm=t,this.setThumbSize(t?16:24),this.update())},Vr.prototype.setThumbSize=function(t,e){void 0===e&&(e=1),this._thumbSize=t,this._innerPadding=t*e},Yr.textValue.get=function(){return this._decorate(this._value)},Yr.value.get=function(){return this._value},Yr.value.set=function(t){this._value=t},Yr.outputX.get=function(){return this._outputX},Vr.prototype.setConstraints=function(t){this._constraints=t,this._min=t.min,this._max=t.max,this._step=t.step,this._rangeWidth=t.rangeWidth},Yr.min.get=function(){return this._min},Yr.textMin.get=function(){return this._decorate(this._min)},Yr.max.get=function(){return this._max},Yr.textMax.get=function(){return this._decorate(this._max)},Yr.step.get=function(){return this._step},Yr.output.get=function(){return{text:this.textValue,transform:"translateX("+this._translateX+"px) translateX(-"+this._centerPercent+"%)"}},Vr.prototype._getRatio=function(t){return(t-this._min)/this._rangeWidth},Yr.progress.get=function(){return this._progress},Vr.prototype.update=function(){this._update()},Vr.prototype._update=function(){this._innerWidth=this._width-this._innerPadding;var t=this._getRatio(this._value);this._translateX=t*this._width,this._centerPercent=100*t,this._progress={right:(this._innerWidth*t+.5*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(Vr.prototype,Yr);var Xr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;for(this._stepWidth=this._innerWidth/e,(this._stepWidth<1||!isFinite(this._stepWidth))&&(this._stepWidth=4);this._stepWidth<4;)this._stepWidth*=2},Object.defineProperties(e.prototype,r),e}(Vr),Qr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={value2:{configurable:!0},textValue:{configurable:!0}};return r.value2.get=function(){return this._value},r.value2.set=function(t){this._value2!==t&&(this._value2=t,this.update())},r.textValue.get=function(){return this._decorate(this._value)+" - "+this._decorate(this._value2)},e.prototype.setThumbSize=function(e){t.prototype.setThumbSize.call(this,e,2)},e.prototype._update=function(){t.prototype._update.call(this);var e=this._getRatio(.5*(this._value+this._value2));this._translateX=e*this._width,this._centerPercent=100*e;var r=this._getRatio(this._value),n=this._getRatio(this._value2);this._progress={left:(this._innerWidth*r+.25*this._innerPadding).toFixed(2)+"px",right:(this._innerWidth*n+.75*this._innerPadding).toFixed(2)+"px"}},Object.defineProperties(e.prototype,r),e}(Vr),Zr=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={stepWidth:{configurable:!0}};return r.stepWidth.get=function(){return this._stepWidth.toFixed(3)+"px"},e.prototype._update=function(){t.prototype._update.call(this);var e=this._rangeWidth/this._step;this._stepWidth=this._innerWidth/e,this._stepWidth<4&&(this._stepWidth*=Math.ceil(4/this._stepWidth))},Object.defineProperties(e.prototype,r),e}(Qr),Jr="step",tn="double",en="double-step",rn="default",nn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={type:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"Range"},e.prototype.init=function(){this._retrieveType(),this._retrieveSize(),this.isLegacy?(this.isResizing=!0,this.isMouseMoving=!0):(this._observer=new ResizeObserver(this.resize.bind(this)),this._observer.observe(this.node)),this.addAscent(Kr.CONSTRAINTS,this.setConstraints.bind(this)),this.addAscent(Kr.VALUE,this.setValue.bind(this)),this.addAscent(Kr.VALUE2,this.setValue2.bind(this)),this.getAttribute(qr.RANGE_PREFIX)&&this.setPrefix(this.getAttribute(qr.RANGE_PREFIX)),this.getAttribute(qr.RANGE_SUFFIX)&&this.setSuffix(this.getAttribute(qr.RANGE_SUFFIX)),this.update()},e.prototype._retrieveType=function(){switch(!0){case this.matches(qr.RANGE_DOUBLE_STEP):case this.matches(qr.RANGE_DOUBLE):this.type=tn;break;case this.matches(qr.RANGE_STEP):this.type=Jr;break;default:this.type=rn}},r.type.set=function(t){if(this._type!==t){this._type=t;var e=this._model;switch(this._type){case en:this._model=new Zr;break;case tn:this._model=new Qr;break;case Jr:this._model=new Xr;break;default:this._model=new Vr}this._model.configure(e)}},r.type.get=function(){return this._type},e.prototype._retrieveSize=function(){this._model.isSm=this.matches(qr.RANGE_SM)},e.prototype.resize=function(){this._retrieveWidth(),this.update()},e.prototype._retrieveWidth=function(){this._model.width=this.getRect().width},e.prototype.setValue=function(t){switch(this._model.value=t,this._type){case en:case tn:this.descend(Kr.VALUE,t)}this.update()},e.prototype.setValue2=function(t){this._model.value2=t,this.descend(Kr.VALUE2,t),this.update()},e.prototype.setConstraints=function(t){this._model.setConstraints(t),this.update(),this.descend(Kr.CONSTRAINTS,t)},e.prototype.setPrefix=function(t){this._model.setPrefix(t),this.update()},e.prototype.setSuffix=function(t){this._model.setSuffix(t),this.update()},e.prototype.mutate=function(t){switch(!0){case t.includes("class"):this._retrieveType(),this._retrieveSize();break;case t.includes(qr.RANGE_PREFIX):case t.includes(qr.RANGE_SUFFIX):this._model.setPrefix(this.getAttribute(qr.RANGE_PREFIX)),this._model.setSuffix(this.getAttribute(qr.RANGE_SUFFIX)),this.update()}},e.prototype.update=function(){this._model.update(),this.descend(Kr.OUTPUT,this._model.output),this.descend(Kr.MIN,this._model.textMin),this.descend(Kr.MAX,this._model.textMax);var t=this._model.progress;t.left?this.style.setProperty("--progress-left",t.left):this.style.removeProperty("--progress-left"),t.right?(this.style.setProperty("--progress-right",t.right),this.isLegacy&&t.left&&(this.style.setProperty("background-position-x",t.left),this.style.setProperty("background-size",parseFloat(t.right)-parseFloat(t.left)+"px "+(this._model.isSm?"8px":"12px")))):(this.style.removeProperty("--progress-right"),this.isLegacy&&(this.style.removeProperty("background-size"),this.style.removeProperty("background-position-x"))),this._model.stepWidth?this.style.setProperty("--step-width",this._model.stepWidth):this.style.removeProperty("--step-width")},e.prototype.mouseMove=function(t){if(this._type===tn||this._type===en){var e=t.x-this.getRect().left;this.descend(Kr.ENABLE_POINTER,(parseFloat(this._model.progress.right)-parseFloat(this._model.progress.left))/2+parseFloat(this._model.progress.left)t&&(this.value=t)},e.prototype.change=function(){this.ascend(Kr.VALUE,this._value)},e.prototype.render=function(){var t=parseFloat(this.node.value);t!==this._value&&(this.value=t)},e.prototype.mutate=function(t){t.includes("disabled")&&this.ascend(Kr.DISABLED,this.node.disabled),(t.includes("min")||t.includes("max")||t.includes("step"))&&(this.ascend(Kr.CONSTRAINTS,new on(this.node)),this.change())},e.prototype.dispose=function(){this._listenerType&&this.unlisten(this._listenerType,this._changing)},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),cn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"RangeInput2"},e.prototype._init=function(){this._pointerId=2,this.addDescent(Kr.CONSTRAINTS,this.setConstraints.bind(this)),this.addDescent(Kr.VALUE,this.setValue.bind(this))},e.prototype.setValue=function(t){parseFloat(this.node.value)=e,n="rtl"===document.documentElement.getAttribute("dir"),i=n?mn.SHADOW_RIGHT:mn.SHADOW_LEFT,o=n?mn.SHADOW_LEFT:mn.SHADOW_RIGHT;t?this.removeClass(i):this.addClass(i),r?this.removeClass(o):this.addClass(o)},e.prototype.resize=function(){this.isScrolling=this.content.offsetWidth>this.node.offsetWidth},e.prototype.dispose=function(){this.isScrolling=!1},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance),wn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={instanceClassName:{configurable:!0}};return r.instanceClassName.get=function(){return"TableCaption"},e.prototype.init=function(){this.height=0,this.isResizing=!0},e.prototype.resize=function(){var t=this.getRect().height;this.height!==t&&(this.height=t,this.ascend(bn.CAPTION_HEIGHT,"calc("+t+"px + 1rem)"))},Object.defineProperties(e,r),e}(ie.core.Instance),Sn=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var r={isSelected:{configurable:!0}},n={instanceClassName:{configurable:!0}};return n.instanceClassName.get=function(){return"TableRow"},e.prototype.init=function(){ie.checkbox&&(this.addAscent(Ne.CHANGE,this._handleCheckboxChange.bind(this)),this.descend(Ne.RETRIEVE))},e.prototype._handleCheckboxChange=function(t){"row-select"!==t.name&&"true"!==t.getAttribute(ie.internals.ns.attr("row-select"))||(this.isSelected=!0===t.checked)},e.prototype.render=function(){var t=this.getRect().height+2;this._height!==t&&(this._height=t,this.setProperty("--row-height",this._height+"px"))},r.isSelected.get=function(){return this._isSelected},r.isSelected.set=function(t){this._isSelected!==t&&(this.isRendering=t,this._isSelected=t,this.setAttribute("aria-selected",t))},Object.defineProperties(e.prototype,r),Object.defineProperties(e,n),e}(ie.core.Instance);ie.table={Table:gn,TableWrapper:vn,TableElement:_n,TableCaption:wn,TableSelector:mn,TableRow:Sn},ie.internals.register(ie.table.TableSelector.TABLE,ie.table.Table),ie.internals.register(ie.table.TableSelector.TABLE_WRAPPER,ie.table.TableWrapper),ie.internals.register(ie.table.TableSelector.ELEMENT,ie.table.TableElement),ie.internals.register(ie.table.TableSelector.CAPTION,ie.table.TableCaption),ie.internals.register(ie.table.TableSelector.ROW,ie.table.TableRow),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===i(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e){return t[e]}function i(t){return"function"==typeof t}function o(t){if(null===t||t===e)throw TypeError();return Object(t)}function s(t,r){var n=function(t,e){return o(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function a(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function c(t,e){return a(t)===a(e)&&("number"===a(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function l(t){if("symbol"===a(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function u(o){var c=arguments.length>1?arguments[1]:e;if("object"===a(o)){if(arguments.length<2)var l="default";else c===String?l="string":c===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?s(o,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,o,[l]);if("object"!==a(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var o=["toString","valueOf"];else o=["valueOf","toString"];for(var s=0;s=0)var s=i;else(s=r+i)<0&&(s=0);for(;s=c)for(;c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u())},i.remove=function(){p.apply(i,e=arguments);for(var e,r={},c=0,l=[];c>>0,"object"==typeof t[n]?t[n].baseVal=o.join(" "):t[n]=o.join(" "),u()},i.toggle=function(t,r){return p.apply(i,[t]),e!==r?r?(i.add(t),!0):(i.remove(t),!1):s[t]?(i.remove(t),!1):(i.add(t),!0)},i.forEach=Array.prototype.forEach,i}}();"DOMTokenList"in(r=t)&&r.DOMTokenList&&(!document.createElementNS||!document.createElementNS("http://www.w3.org/2000/svg","svg")||document.createElementNS("http://www.w3.org/2000/svg","svg").classList instanceof DOMTokenList)||(r.DOMTokenList=n),function(){var t=document.createElement("span");"classList"in t&&(t.classList.toggle("x",!1),t.classList.contains("x")&&(t.classList.constructor.prototype.toggle=function(t){var r=arguments[1];if(r===e){var n=!this.contains(t);return this[n?"add":"remove"](t),n}return r=!!r,this[r?"add":"remove"](t),r}))}(),function(){var t=document.createElement("span");if("classList"in t&&(t.classList.add("a","b"),!t.classList.contains("b"))){var e=t.classList.constructor.prototype.add;t.classList.constructor.prototype.add=function(){for(var t=arguments,r=arguments.length,n=0;n2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;ot&&(n.length=t)}var n=x(t),i=0;return function(t,e){n[i++]=t,n[i++]=e,2===i&&rt.nextTick(r)}}function p(t,e){var r,n,s,a,c=0;if(!t)throw h(V);var u=t[rt[$][F]];if(i(u))n=u.call(t);else{if(!i(t.next)){if(o(t,x)){for(r=t.length;cMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;jMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function o(t,e){return t[e]}function s(t,e){return e in t}function a(t){return"[object Array]"===Object.prototype.toString.call(t)}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,r){var n=function(t,e){return l(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function p(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function h(t,e){var r=arguments[2]||{},n=function(t,e){var r=o(t,"prototype");return"object"!==p(r)&&(r=e),r}(t,e),i=Object.create(n);for(var s in r)Object.prototype.hasOwnProperty.call(r,s)&&Object.defineProperty(i,s,{configurable:!0,enumerable:!1,writable:!0,value:r[s]});return i}function f(t){return"object"===p(t)&&"function"==typeof t&&!!t.prototype}function d(i,s){if(0===s&&1/s==-1/0&&(s=0),!1===a(i))return r(s);var c=o(i,"constructor");if("object"===p(c)&&null===(c="Symbol"in t&&"species"in t.Symbol?o(c,t.Symbol.species):e)&&(c=e),c===e)return r(s);if(!f(c))throw new TypeError("C must be a constructor");return function(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!f(t))throw new TypeError("F must be a constructor.");if(!f(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,h(e,Object.prototype),r)}(c,[s])}function y(t){if("symbol"===p(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function b(t){var e=y(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function g(r){var i=arguments.length>1?arguments[1]:e;if("object"===p(r)){if(arguments.length<2)var s="default";else i===String?s="string":i===Number&&(s="number");var a="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?u(r,t.Symbol.toPrimitive):e;if(a!==e){var l=n(a,r,[s]);if("object"!==p(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===s&&(s="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i0&&(_=a(g)),!0===_)f=m(t,g,b(o(g,"length")),f,l-1);else{if(f>=Math.pow(2,53)-1)throw new TypeError("targetIndex is greater than or equal to 2^53-1");i(t,v(f),g),f+=1}}d+=1}return f}var _,w,S,E;_=Array.prototype,w="flat",S=function(){var t=arguments[0],e=l(this),r=b(o(e,"length")),n=1;void 0!==t&&(n=y(t));var i=d(e,0);return m(i,e,r,0,n),i},E={value:S,writable:!0,enumerable:!1,configurable:!0},Object.defineProperty(_,w,E)}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===s(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n=function(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function i(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function o(t,e){return t[e]}function s(t){return"function"==typeof t}function a(t){if(null===t||t===e)throw TypeError(Object.prototype.toString.call(t)+" is not coercible to Object.");return t}function c(t){return Boolean(t)}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===s(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function f(t,n){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return n;try{var s=r(o,i)}catch(t){var a=t}if(n)return n;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return n}function d(t){var e=function(t){if(arguments.length<2)var e=r(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=r(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==function(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return c(o(t,"done"))}(e)&&e}function y(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return o(t,"value")}function b(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function g(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function v(n){var i=arguments.length>1?arguments[1]:e;if("object"===h(n)){if(arguments.length<2)var a="default";else i===String?a="string":i===Number&&(a="number");var c="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(n,t.Symbol.toPrimitive):e;if(c!==e){var l=r(c,n,[a]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===a&&(a="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var i=0;i=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i1?arguments[1]:e,i=m(a(this));if(function(r){if("object"!==h(r))return!1;var n="Symbol"in t&&"match"in t.Symbol?o(r,t.Symbol.match):e;if(n!==e)return c(n);try{var i=r.lastIndex;return r.lastIndex=0,RegExp.prototype.exec.call(r),!0}catch(t){}finally{r.lastIndex=i}return!1}(r))throw new TypeError("First argument to String.prototype.includes must not be a regular expression");var s=m(r),l=g(n),u=i.length,p=Math.min(Math.max(l,0),u);return-1!==String.prototype.indexOf.call(i,s,p)})),function(){var t=Object.getOwnPropertyDescriptor,e=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(t){return!1}},r={}.toString,n="".split;i(Object,"getOwnPropertyDescriptor",(function(i,o){var s=l(i);s=("string"===h(s)||s instanceof String)&&"[object String]"==r.call(i)?n.call(i,""):Object(i);var a=T(o);if(e)try{return t(s,a)}catch(t){}if(function(t,e){return Object.prototype.hasOwnProperty.call(t,e)}(s,a))return{enumerable:!0,configurable:!0,writable:!0,value:s[a]}}))}(),i(Object,"assign",(function(t,r){var n=l(t);if(1===arguments.length)return n;var i,s,a,c,u=Array.prototype.slice.call(arguments,1);for(i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var n=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=n,i["[[Done]]"]=!1,i}(i);;){var l=d(c);if(!1===l)return n;var b,g,v=y(l);if("object"!==h(v)){var m=new TypeError("nextItem is not an object");throw f(c,m),m}v=("string"===h(v)||v instanceof String)&&"[object String]"==t.call(v)?e.call(v,""):v;try{b=o(v,"0")}catch(t){return f(c,t)}try{g=o(v,"1")}catch(t){return f(c,t)}try{r(a,n,[b,g])}catch(t){return f(c,t)}}}}();Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});var A=function(){var t=function(){return this.length=0,this},r=function(t,e){if(!(this instanceof r))return new r(t,e);Object.defineProperties(this,{__list__:{writable:!0,value:t},__context__:{writable:!0,value:e},__nextIndex__:{writable:!0,value:0}}),e&&(function(t){if("function"!=typeof t)throw new TypeError(t+" is not a function")}(e.on),e.on("_add",this._onAdd.bind(this)),e.on("_delete",this._onDelete.bind(this)),e.on("_clear",this._onClear.bind(this)))};return Object.defineProperties(r.prototype,Object.assign({constructor:{value:r,configurable:!0,enumerable:!1,writable:!0},_next:{value:function(){var t;if(this.__list__)return this.__redo__&&(t=this.__redo__.shift())!==e?t:this.__nextIndex__=this.__nextIndex__)){if(++this.__nextIndex__,!this.__redo__)return void Object.defineProperty(this,"__redo__",{value:[t],configurable:!0,enumerable:!1,writable:!1});this.__redo__.forEach((function(e,r){e>=t&&(this.__redo__[r]=++e)}),this),this.__redo__.push(t)}},configurable:!0,enumerable:!1,writable:!0},_onDelete:{value:function(t){var e;t>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(e=this.__redo__.indexOf(t))&&this.__redo__.splice(e,1),this.__redo__.forEach((function(e,r){e>t&&(this.__redo__[r]=--e)}),this)))},configurable:!0,enumerable:!1,writable:!0},_onClear:{value:function(){this.__redo__&&t.call(this.__redo__),this.__nextIndex__=0},configurable:!0,enumerable:!1,writable:!0}})),Object.defineProperty(r.prototype,Symbol.iterator,{value:function(){return this},configurable:!0,enumerable:!1,writable:!0}),Object.defineProperty(r.prototype,Symbol.toStringTag,{value:"Iterator",configurable:!1,enumerable:!1,writable:!0}),r}(),N=function(){var t=function(e,r){if(!(this instanceof t))return new t(e,r);A.call(this,e),r=r?String.prototype.includes.call(r,"key+value")?"key+value":String.prototype.includes.call(r,"key")?"key":"value":"value",Object.defineProperty(this,"__kind__",{value:r,configurable:!1,enumerable:!1,writable:!1})};return Object.setPrototypeOf&&Object.setPrototypeOf(t,A.prototype),t.prototype=Object.create(A.prototype,{constructor:{value:t,configurable:!0,enumerable:!1,writable:!0},_resolve:{value:function(t){return"value"===this.__kind__?this.__list__[t]:"key+value"===this.__kind__?[t,this.__list__[t]]:t},configurable:!0,enumerable:!1,writable:!0},toString:{value:function(){return"[object Array Iterator]"},configurable:!0,enumerable:!1,writable:!0}}),t}();"Symbol"in t&&"iterator"in Symbol&&"function"==typeof Array.prototype[Symbol.iterator]?i(Array.prototype,"values",Array.prototype[Symbol.iterator]):i(Array.prototype,"values",(function(){var t=l(this);return new N(t,"value")})),i(Array.prototype,Symbol.iterator,Array.prototype.values),i(Object,"fromEntries",(function(t){a(t);return P({},t,(function(t,e){n(this,T(t),e)}))}))}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(t,e){function r(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}var n,i;r(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y2?arguments[2]:[];if(!1===o(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function n(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function i(t,e){return t[e]}function o(t){return"function"==typeof t}function s(t){if(null===t||t===e)throw TypeError();return Object(t)}function a(t,r){var n=function(t,e){return s(t)[e]}(t,r);if(null===n||n===e)return e;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}function l(t,e){return c(t)===c(e)&&("number"===c(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function u(t){if("symbol"===c(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function p(n){var s=arguments.length>1?arguments[1]:e;if("object"===c(n)){if(arguments.length<2)var l="default";else s===String?l="string":s===Number&&(l="number");var u="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?a(n,t.Symbol.toPrimitive):e;if(u!==e){var p=r(u,n,[l]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===l&&(l="number"),function(t,e){if("string"===e)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var s=0;s=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var o=n;else(o=r+n)<0&&(o=0);for(;oMath.pow(2,32)-1)throw new RangeError("Invalid array length");var e=[];return e.length=t,e}function n(t,e){var r=arguments.length>2?arguments[2]:[];if(!1===c(t))throw new TypeError(Object.prototype.toString.call(t)+"is not a function.");return t.apply(e,r)}function i(t,e,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(t,e,n),!0}catch(t){return!1}}function o(t,e,r){var n=i(t,e,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(e)+"` on object `"+Object.prototype.toString.call(t)+"`");return n}function s(t,e,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(t,e,n)}function a(t,e){return t[e]}function c(t){return"function"==typeof t}function l(t){if(null===t||t===e)throw TypeError();return Object(t)}function u(t,e){return l(t)[e]}function p(t,r){var n=u(t,r);if(null===n||n===e)return e;if(!1===c(n))throw new TypeError("Method not callable: "+r);return n}function h(e){switch(typeof e){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===e?"null":"Symbol"in t&&(e instanceof t.Symbol||e.constructor===t.Symbol)?"symbol":"object"}}var f;function d(t,e){if("boolean"!==h(e))throw new Error;var r={};return i(r,"value",t),i(r,"done",e),r}function y(t,e){var r=arguments[2]||{},n=function(t,e){var r=a(t,"prototype");return"object"!==h(r)&&(r=e),r}(t,e),i=Object.create(n);for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&Object.defineProperty(i,o,{configurable:!0,enumerable:!1,writable:!0,value:r[o]});return i}function b(t){return"object"===h(t)&&"function"==typeof t&&!!t.prototype}function g(t){var e=arguments.length>2?arguments[2]:t,r=arguments.length>1?arguments[1]:[];if(!b(t))throw new TypeError("F must be a constructor.");if(!b(e))throw new TypeError("newTarget must be a constructor.");return e===t?new(Function.prototype.bind.apply(t,[null].concat(r))):n(t,y(e,Object.prototype),r)}function v(t,r){if("object"!==h(t["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(t["[[Iterator]]"])+"is not an Object.");var i=t["[[Iterator]]"],o=p(i,"return");if(o===e)return r;try{var s=n(o,i)}catch(t){var a=t}if(r)return r;if(a)throw a;if("object"!==h(s))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return e=a(t,"done"),Boolean(e);var e}function _(t){var e=function(t){if(arguments.length<2)var e=n(t["[[NextMethod]]"],t["[[Iterator]]"]);else e=n(t["[[NextMethod]]"],t["[[Iterator]]"],[arguments[1]]);if("object"!==h(e))throw new TypeError("bad iterator");return e}(t);return!0!==m(e)&&e}function w(t){if("object"!==h(t))throw new Error(Object.prototype.toString.call(t)+"is not an Object.");return a(t,"value")}function S(t,e){return h(t)===h(e)&&("number"===h(t)?!(!isNaN(t)||!isNaN(e))||1/t==1/0&&1/e==-1/0||1/t==-1/0&&1/e==1/0||t===e:function(t,e){return t===e}(t,e))}function E(t){if("symbol"===h(t))throw new TypeError("Cannot convert a Symbol value to a number");var e=Number(t);return isNaN(e)?0:1/e==1/0||1/e==-1/0||e===1/0||e===-1/0?e:(e<0?-1:1)*Math.floor(Math.abs(e))}function O(t){var e=E(t);return e<=0?0:Math.min(e,Math.pow(2,53)-1)}function j(r){var i=arguments.length>1?arguments[1]:e;if("object"===h(r)){if(arguments.length<2)var o="default";else i===String?o="string":i===Number&&(o="number");var s="function"==typeof t.Symbol&&"symbol"==typeof t.Symbol.toPrimitive?p(r,t.Symbol.toPrimitive):e;if(s!==e){var l=n(s,r,[o]);if("object"!==h(l))return l;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===o&&(o="number"),function(t,e){if("string"===e)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var i=0;i1?arguments[1]:p(t,Symbol.iterator),t);if("object"!==h(e))throw new TypeError("bad iterator");var r=u(e,"next"),i=Object.create(null);return i["[[Iterator]]"]=e,i["[[NextMethod]]"]=r,i["[[Done]]"]=!1,i}s(Object,"keys",function(){function t(){var t;try{t=Object.create({})}catch(t){return!0}return i.call(t,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,i=Object.prototype.propertyIsEnumerable,o=!i.call({toString:null},"toString"),s=i.call((function(){}),"prototype"),a=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],c=function(t){var e=t.constructor;return e&&e.prototype===t},l={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},u=function(){if("undefined"==typeof window)return!1;for(var t in window)try{if(!l["$"+t]&&r.call(window,t)&&null!==window[t]&&"object"==typeof window[t])try{c(window[t])}catch(t){return!0}}catch(t){return!0}return!1}(),p=function(t){if("undefined"==typeof window||!u)return c(t);try{return c(t)}catch(t){return!1}};return function(i){var c="[object Function]"===n.call(i),l=function(t){var e=n.call(t),r="[object Arguments]"===e;return r||(r="[object Array]"!==e&&null!==t&&"object"==typeof t&&"number"==typeof t.length&&t.length>=0&&"[object Function]"===n.call(t.callee)),r}(i),u="[object String]"===n.call(i),h=[];if(i===e||null===i)throw new TypeError("Cannot convert undefined or null to object");var f=s&&c;if(u&&i.length>0&&!r.call(i,0))for(var d=0;d0)for(var y=0;y=0)var i=n;else(i=r+n)<0&&(i=0);for(;i0?arguments[0]:e;if(null===i||i===e)return r;var o=r.set;if(!c(o))throw new TypeError("Map.prototype.set is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);if("object"!==h(l))try{throw new TypeError("Iterator value "+l+" is not an entry object")}catch(t){return v(s,t)}try{var u=l[0],p=l[1];o.call(r,u,p)}catch(t){return v(s,t)}}}catch(t){if(Array.isArray(i)||"[object Arguments]"===Object.prototype.toString.call(i)||i.callee){var f,d=i.length;for(f=0;f0?arguments[0]:e;if(null===i||i===e)return r;var o=r.add;if(!c(o))throw new TypeError("Set.prototype.add is not a function");try{for(var s=P(i);;){var a=_(s);if(!1===a)return r;var l=w(a);try{o.call(r,l)}catch(t){return v(s,t)}}}catch(t){if(!Array.isArray(i)&&"[object Arguments]"!==Object.prototype.toString.call(i)&&!i.callee)throw t;var u,p=i.length;for(u=0;u1?arguments[1]:e;if(h===e)var f=!1;else{if(!1===c(h))throw new TypeError(Object.prototype.toString.call(h)+" is not a function.");var d=arguments.length>2?arguments[2]:e;if(d!==e)var y=d;else y=e;f=!0}var m=p(i,Symbol.iterator);if(m!==e){if(b(s))var S=g(s);else S=r(0);for(var E=P(i,m),j=0;;){if(j>=Math.pow(2,53)-1)return v(E,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var A=T(j),N=_(E);if(!1===N)return S.length=j,S;var C=w(N);if(f)try{var I=n(h,y,[C,j])}catch(t){return v(E,t)}else I=C;try{o(S,A,I)}catch(t){return v(E,t)}j+=1}}if(t(i))var L=u.call(i,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else L=l(i);var M=O(a(L,"length"));for(S=b(s)?g(s,[M]):r(M),j=0;j=t.length)return{done:!0,value:e};var i=t[n++];return{done:!1,value:"key"===r?i.name:"value"===r?i.value:[i.name,i.value]}}}function c(e,r){function n(){var t=a.href.replace(/#$|\?$|\?(?=#)/g,"");a.href!==t&&(a.href=t)}function i(){h._setList(a.search?o(a.search.substring(1)):[]),h._update_steps()}if(!(this instanceof t.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");r&&(e=function(){if(l)return new u(e,r).href;var t;try{var n;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?((t=document.createElement("iframe")).style.display="none",document.documentElement.appendChild(t),n=t.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?n=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?((n=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null)).documentElement.appendChild(n.createElement("head")),n.documentElement.appendChild(n.createElement("body"))):window.ActiveXObject&&((n=new window.ActiveXObject("htmlfile")).write(""),n.close()),!n)throw Error("base not supported");var i=n.createElement("base");i.href=r,n.getElementsByTagName("head")[0].appendChild(i);var o=n.createElement("a");return o.href=e,o.href}finally{t&&t.parentNode.removeChild(t)}}());var a=function(t){if(l)return new u(t);var e=document.createElement("a");return e.href=t,e}(e||""),c=function(){if(!("defineProperties"in Object))return!1;try{var t={};return Object.defineProperties(t,{prop:{get:function(){return!0}}}),t.prop}catch(t){return!1}}(),p=c?this:document.createElement("a"),h=new s(a.search?a.search.substring(1):null);return h._url_object=p,Object.defineProperties(p,{href:{get:function(){return a.href},set:function(t){a.href=t,n(),i()},enumerable:!0,configurable:!0},origin:{get:function(){return"data:"===this.protocol.toLowerCase()?null:"origin"in a?a.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return a.protocol},set:function(t){a.protocol=t},enumerable:!0,configurable:!0},username:{get:function(){return a.username},set:function(t){a.username=t},enumerable:!0,configurable:!0},password:{get:function(){return a.password},set:function(t){a.password=t},enumerable:!0,configurable:!0},host:{get:function(){var t={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[a.protocol];return t?a.host.replace(t,""):a.host},set:function(t){a.host=t},enumerable:!0,configurable:!0},hostname:{get:function(){return a.hostname},set:function(t){a.hostname=t},enumerable:!0,configurable:!0},port:{get:function(){return a.port},set:function(t){a.port=t},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==a.pathname.charAt(0)?"/"+a.pathname:a.pathname},set:function(t){a.pathname=t},enumerable:!0,configurable:!0},search:{get:function(){return a.search},set:function(t){a.search!==t&&(a.search=t,n(),i())},enumerable:!0,configurable:!0},searchParams:{get:function(){return h},enumerable:!0,configurable:!0},hash:{get:function(){return a.hash},set:function(t){a.hash=t,n()},enumerable:!0,configurable:!0},toString:{value:function(){return a.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return a.valueOf()},enumerable:!1,configurable:!0}}),p}var l,u=t.URL;try{if(u){if("searchParams"in(l=new t.URL("http://example.com"))){var p=new c("http://example.com");if(p.search="a=1&b=2","http://example.com/?a=1&b=2"===p.href&&(p.search="","http://example.com/"===p.href))return}"href"in l||(l=e),l=e}}catch(t){}if(Object.defineProperties(s.prototype,{append:{value:function(t,e){this._list.push({name:t,value:e}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},delete:{value:function(t){for(var e=0;e1?arguments[1]:e;this._list.forEach((function(e){t.call(r,e.value,e.name)}))},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return n(this._list)},writable:!0,enumerable:!1,configurable:!0},sort:{value:function(){for(var t=this.entries(),e=t.next(),r=[],n={};!e.done;){var i=e.value,o=i[0];r.push(o),Object.prototype.hasOwnProperty.call(n,o)||(n[o]=[]),n[o].push(i[1]),e=t.next()}r.sort();for(var s=0;s2?arguments[2]:[];if(!1===o(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t){return e[t]}function o(e){return"function"==typeof e}function i(e){if(null===e||e===t)throw TypeError();return Object(e)}function a(e,r){var n=function(e,t){return i(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function l(e,t){return c(e)===c(t)&&("number"===c(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function u(e){if("symbol"===c(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function f(i){var l=arguments.length>1?arguments[1]:t;if("object"===c(i)){if(arguments.length<2)var u="default";else l===String?u="string":l===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?a(i,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,i,[u]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var i=["toString","valueOf"];else i=["valueOf","toString"];for(var a=0;a=0)var a=o;else(a=r+o)<0&&(a=0);for(;a=l)for(;l>>0,"object"==typeof e[n]?e[n].baseVal=i.join(" "):e[n]=i.join(" "),f())},o.remove=function(){p.apply(o,t=arguments);for(var t,r={},l=0,u=[];l>>0,"object"==typeof e[n]?e[n].baseVal=i.join(" "):e[n]=i.join(" "),f()},o.toggle=function(e,r){return p.apply(o,[e]),t!==r?r?(o.add(e),!0):(o.remove(e),!1):a[e]?(o.remove(e),!1):(o.add(e),!0)},o.forEach=Array.prototype.forEach,o}}();"DOMTokenList"in(r=e)&&r.DOMTokenList&&(!document.createElementNS||!document.createElementNS("http://www.w3.org/2000/svg","svg")||document.createElementNS("http://www.w3.org/2000/svg","svg").classList instanceof DOMTokenList)||(r.DOMTokenList=n),function(){var e=document.createElement("span");"classList"in e&&(e.classList.toggle("x",!1),e.classList.contains("x")&&(e.classList.constructor.prototype.toggle=function(e){var r=arguments[1];if(r===t){var n=!this.contains(e);return this[n?"add":"remove"](e),n}return r=!!r,this[r?"add":"remove"](e),r}))}(),function(){var e=document.createElement("span");if("classList"in e&&(e.classList.add("a","b"),!e.classList.contains("b"))){var t=e.classList.constructor.prototype.add;e.classList.constructor.prototype.add=function(){for(var e=arguments,r=arguments.length,n=0;n2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(e,t){return l(e)===l(t)&&("number"===l(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function f(e){if("symbol"===l(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function p(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var i=n;else(i=r+n)<0&&(i=0);for(;ie&&(n.length=e)}var n=A(e),o=0;return function(e,t){n[o++]=e,n[o++]=t,2===o&&re.nextTick(r)}}function p(e,t){var r,n,a,c,l=0;if(!e)throw s(U);var f=e[re[H][W]];if(o(f))n=f.call(e);else{if(!o(e.next)){if(i(e,A)){for(r=e.length;lMath.pow(2,32)-1)throw new RangeError("Invalid array length");var t=[];return t.length=e,t}function n(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===l(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function o(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}function i(e,t,r){var n=o(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function a(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function c(e,t){return e[t]}function l(e){return"function"==typeof e}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,t){return u(e)[t]}function p(e,r){var n=f(e,r);if(null===n||n===t)return t;if(!1===l(n))throw new TypeError("Method not callable: "+r);return n}function s(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}var b;function y(e,t){if("boolean"!==s(t))throw new Error;var r={};return o(r,"value",e),o(r,"done",t),r}function v(e,t){var r=arguments[2]||{},n=function(e,t){var r=c(e,"prototype");return"object"!==s(r)&&(r=t),r}(e,t),o=Object.create(n);for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&Object.defineProperty(o,i,{configurable:!0,enumerable:!1,writable:!0,value:r[i]});return o}function h(e){return"object"===s(e)&&"function"==typeof e&&!!e.prototype}function g(e){var t=arguments.length>2?arguments[2]:e,r=arguments.length>1?arguments[1]:[];if(!h(e))throw new TypeError("F must be a constructor.");if(!h(t))throw new TypeError("newTarget must be a constructor.");return t===e?new(Function.prototype.bind.apply(e,[null].concat(r))):n(e,v(t,Object.prototype),r)}function d(e,r){if("object"!==s(e["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(e["[[Iterator]]"])+"is not an Object.");var o=e["[[Iterator]]"],i=p(o,"return");if(i===t)return r;try{var a=n(i,o)}catch(e){var c=e}if(r)return r;if(c)throw c;if("object"!==s(a))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return t=c(e,"done"),Boolean(t);var t}function w(e){var t=function(e){if(arguments.length<2)var t=n(e["[[NextMethod]]"],e["[[Iterator]]"]);else t=n(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]);if("object"!==s(t))throw new TypeError("bad iterator");return t}(e);return!0!==m(t)&&t}function j(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return c(e,"value")}function S(e,t){return s(e)===s(t)&&("number"===s(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function _(e){if("symbol"===s(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function O(e){var t=_(e);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function E(r){var o=arguments.length>1?arguments[1]:t;if("object"===s(r)){if(arguments.length<2)var i="default";else o===String?i="string":o===Number&&(i="number");var a="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?p(r,e.Symbol.toPrimitive):t;if(a!==t){var u=n(a,r,[i]);if("object"!==s(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),function(e,t){if("string"===t)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var o=0;o1?arguments[1]:p(e,Symbol.iterator),e);if("object"!==s(t))throw new TypeError("bad iterator");var r=f(t,"next"),o=Object.create(null);return o["[[Iterator]]"]=t,o["[[NextMethod]]"]=r,o["[[Done]]"]=!1,o}a(Object,"keys",function(){function e(){var e;try{e=Object.create({})}catch(e){return!0}return o.call(e,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,o=Object.prototype.propertyIsEnumerable,i=!o.call({toString:null},"toString"),a=o.call((function(){}),"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(e){var t=e.constructor;return t&&t.prototype===e},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},f=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!u["$"+e]&&r.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{l(window[e])}catch(e){return!0}}catch(e){return!0}return!1}(),p=function(e){if("undefined"==typeof window||!f)return l(e);try{return l(e)}catch(e){return!1}};return function(o){var l="[object Function]"===n.call(o),u=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var o=n;else(o=r+n)<0&&(o=0);for(;o0?arguments[0]:t;if(null===o||o===t)return r;var i=r.set;if(!l(i))throw new TypeError("Map.prototype.set is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);if("object"!==s(u))try{throw new TypeError("Iterator value "+u+" is not an entry object")}catch(e){return d(a,e)}try{var f=u[0],p=u[1];i.call(r,f,p)}catch(e){return d(a,e)}}}catch(e){if(Array.isArray(o)||"[object Arguments]"===Object.prototype.toString.call(o)||o.callee){var b,y=o.length;for(b=0;b0?arguments[0]:t;if(null===o||o===t)return r;var i=r.add;if(!l(i))throw new TypeError("Set.prototype.add is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);try{i.call(r,u)}catch(e){return d(a,e)}}}catch(e){if(!Array.isArray(o)&&"[object Arguments]"!==Object.prototype.toString.call(o)&&!o.callee)throw e;var f,p=o.length;for(f=0;f1?arguments[1]:t;if(s===t)var b=!1;else{if(!1===l(s))throw new TypeError(Object.prototype.toString.call(s)+" is not a function.");var y=arguments.length>2?arguments[2]:t;if(y!==t)var v=y;else v=t;b=!0}var m=p(o,Symbol.iterator);if(m!==t){if(h(a))var S=g(a);else S=r(0);for(var _=T(o,m),E=0;;){if(E>=Math.pow(2,53)-1)return d(_,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var M=P(E),$=w(_);if(!1===$)return S.length=E,S;var x=j($);if(b)try{var I=n(s,v,[x,E])}catch(e){return d(_,e)}else I=x;try{i(S,M,I)}catch(e){return d(_,e)}E+=1}}if(e(o))var N=f.call(o,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else N=u(o);var k=O(c(N,"length"));for(S=h(a)?g(a,[k]):r(k),E=0;EMath.pow(2,32)-1)throw new RangeError("Invalid array length");var t=[];return t.length=e,t}function n(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===l(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function o(e,t,r){var n=function(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function i(e,t){return e[t]}function a(e,t){return t in e}function c(e){return"[object Array]"===Object.prototype.toString.call(e)}function l(e){return"function"==typeof e}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,r){var n=function(e,t){return u(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===l(n))throw new TypeError("Method not callable: "+r);return n}function p(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function s(e,t){var r=arguments[2]||{},n=function(e,t){var r=i(e,"prototype");return"object"!==p(r)&&(r=t),r}(e,t),o=Object.create(n);for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&Object.defineProperty(o,a,{configurable:!0,enumerable:!1,writable:!0,value:r[a]});return o}function b(e){return"object"===p(e)&&"function"==typeof e&&!!e.prototype}function y(o,a){if(0===a&&1/a==-1/0&&(a=0),!1===c(o))return r(a);var l=i(o,"constructor");if("object"===p(l)&&null===(l="Symbol"in e&&"species"in e.Symbol?i(l,e.Symbol.species):t)&&(l=t),l===t)return r(a);if(!b(l))throw new TypeError("C must be a constructor");return function(e){var t=arguments.length>2?arguments[2]:e,r=arguments.length>1?arguments[1]:[];if(!b(e))throw new TypeError("F must be a constructor.");if(!b(t))throw new TypeError("newTarget must be a constructor.");return t===e?new(Function.prototype.bind.apply(e,[null].concat(r))):n(e,s(t,Object.prototype),r)}(l,[a])}function v(e){if("symbol"===p(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function h(e){var t=v(e);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function g(r){var o=arguments.length>1?arguments[1]:t;if("object"===p(r)){if(arguments.length<2)var a="default";else o===String?a="string":o===Number&&(a="number");var c="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?f(r,e.Symbol.toPrimitive):t;if(c!==t){var u=n(c,r,[a]);if("object"!==p(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===a&&(a="number"),function(e,t){if("string"===t)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var o=0;o0&&(w=c(g)),!0===w)b=m(e,g,h(i(g,"length")),b,u-1);else{if(b>=Math.pow(2,53)-1)throw new TypeError("targetIndex is greater than or equal to 2^53-1");o(e,d(b),g),b+=1}}y+=1}return b}var w,j,S,_;w=Array.prototype,j="flat",S=function(){var e=arguments[0],t=u(this),r=h(i(t,"length")),n=1;void 0!==e&&(n=v(e));var o=y(t,0);return m(o,t,r,0,n),o},_={value:S,writable:!0,enumerable:!1,configurable:!0},Object.defineProperty(w,j,_)}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(e,t){function r(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v2?arguments[2]:[];if(!1===a(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n=function(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function o(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function i(e,t){return e[t]}function a(e){return"function"==typeof e}function c(e){if(null===e||e===t)throw TypeError(Object.prototype.toString.call(e)+" is not coercible to Object.");return e}function l(e){return Boolean(e)}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,t){return u(e)[t]}function p(e,r){var n=f(e,r);if(null===n||n===t)return t;if(!1===a(n))throw new TypeError("Method not callable: "+r);return n}function s(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function b(e,n){if("object"!==s(e["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(e["[[Iterator]]"])+"is not an Object.");var o=e["[[Iterator]]"],i=p(o,"return");if(i===t)return n;try{var a=r(i,o)}catch(e){var c=e}if(n)return n;if(c)throw c;if("object"!==s(a))throw new TypeError("Iterator's return method returned a non-object.");return n}function y(e){var t=function(e){if(arguments.length<2)var t=r(e["[[NextMethod]]"],e["[[Iterator]]"]);else t=r(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]);if("object"!==s(t))throw new TypeError("bad iterator");return t}(e);return!0!==function(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return l(i(e,"done"))}(t)&&t}function v(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return i(e,"value")}function h(e,t){return s(e)===s(t)&&("number"===s(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function g(e){if("symbol"===s(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function d(n){var o=arguments.length>1?arguments[1]:t;if("object"===s(n)){if(arguments.length<2)var c="default";else o===String?c="string":o===Number&&(c="number");var l="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?p(n,e.Symbol.toPrimitive):t;if(l!==t){var u=r(l,n,[c]);if("object"!==s(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===c&&(c="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var o=0;o=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var o=n;else(o=r+n)<0&&(o=0);for(;o1?arguments[1]:t,o=m(c(this));if(function(r){if("object"!==s(r))return!1;var n="Symbol"in e&&"match"in e.Symbol?i(r,e.Symbol.match):t;if(n!==t)return l(n);try{var o=r.lastIndex;return r.lastIndex=0,RegExp.prototype.exec.call(r),!0}catch(e){}finally{r.lastIndex=o}return!1}(r))throw new TypeError("First argument to String.prototype.includes must not be a regular expression");var a=m(r),u=g(n),f=o.length,p=Math.min(Math.max(u,0),f);return-1!==String.prototype.indexOf.call(o,a,p)})),function(){var e=Object.getOwnPropertyDescriptor,t=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(e){return!1}},r={}.toString,n="".split;o(Object,"getOwnPropertyDescriptor",(function(o,i){var a=u(o);a=("string"===s(a)||a instanceof String)&&"[object String]"==r.call(o)?n.call(o,""):Object(o);var c=P(i);if(t)try{return e(a,c)}catch(e){}if(function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}(a,c))return{enumerable:!0,configurable:!0,writable:!0,value:a[c]}}))}(),o(Object,"assign",(function(e,r){var n=u(e);if(1===arguments.length)return n;var o,a,c,l,f=Array.prototype.slice.call(arguments,1);for(o=0;o1?arguments[1]:p(e,Symbol.iterator),e);if("object"!==s(t))throw new TypeError("bad iterator");var n=f(t,"next"),o=Object.create(null);return o["[[Iterator]]"]=t,o["[[NextMethod]]"]=n,o["[[Done]]"]=!1,o}(o);;){var u=y(l);if(!1===u)return n;var h,g,d=v(u);if("object"!==s(d)){var m=new TypeError("nextItem is not an object");throw b(l,m),m}d=("string"===s(d)||d instanceof String)&&"[object String]"==e.call(d)?t.call(d,""):d;try{h=i(d,"0")}catch(e){return b(l,e)}try{g=i(d,"1")}catch(e){return b(l,e)}try{r(c,n,[h,g])}catch(e){return b(l,e)}}}}();Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});var M=function(){var e=function(){return this.length=0,this},r=function(e,t){if(!(this instanceof r))return new r(e,t);Object.defineProperties(this,{__list__:{writable:!0,value:e},__context__:{writable:!0,value:t},__nextIndex__:{writable:!0,value:0}}),t&&(function(e){if("function"!=typeof e)throw new TypeError(e+" is not a function")}(t.on),t.on("_add",this._onAdd.bind(this)),t.on("_delete",this._onDelete.bind(this)),t.on("_clear",this._onClear.bind(this)))};return Object.defineProperties(r.prototype,Object.assign({constructor:{value:r,configurable:!0,enumerable:!1,writable:!0},_next:{value:function(){var e;if(this.__list__)return this.__redo__&&(e=this.__redo__.shift())!==t?e:this.__nextIndex__=this.__nextIndex__)){if(++this.__nextIndex__,!this.__redo__)return void Object.defineProperty(this,"__redo__",{value:[e],configurable:!0,enumerable:!1,writable:!1});this.__redo__.forEach((function(t,r){t>=e&&(this.__redo__[r]=++t)}),this),this.__redo__.push(e)}},configurable:!0,enumerable:!1,writable:!0},_onDelete:{value:function(e){var t;e>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(t=this.__redo__.indexOf(e))&&this.__redo__.splice(t,1),this.__redo__.forEach((function(t,r){t>e&&(this.__redo__[r]=--t)}),this)))},configurable:!0,enumerable:!1,writable:!0},_onClear:{value:function(){this.__redo__&&e.call(this.__redo__),this.__nextIndex__=0},configurable:!0,enumerable:!1,writable:!0}})),Object.defineProperty(r.prototype,Symbol.iterator,{value:function(){return this},configurable:!0,enumerable:!1,writable:!0}),Object.defineProperty(r.prototype,Symbol.toStringTag,{value:"Iterator",configurable:!1,enumerable:!1,writable:!0}),r}(),$=function(){var e=function(t,r){if(!(this instanceof e))return new e(t,r);M.call(this,t),r=r?String.prototype.includes.call(r,"key+value")?"key+value":String.prototype.includes.call(r,"key")?"key":"value":"value",Object.defineProperty(this,"__kind__",{value:r,configurable:!1,enumerable:!1,writable:!1})};return Object.setPrototypeOf&&Object.setPrototypeOf(e,M.prototype),e.prototype=Object.create(M.prototype,{constructor:{value:e,configurable:!0,enumerable:!1,writable:!0},_resolve:{value:function(e){return"value"===this.__kind__?this.__list__[e]:"key+value"===this.__kind__?[e,this.__list__[e]]:e},configurable:!0,enumerable:!1,writable:!0},toString:{value:function(){return"[object Array Iterator]"},configurable:!0,enumerable:!1,writable:!0}}),e}();"Symbol"in e&&"iterator"in Symbol&&"function"==typeof Array.prototype[Symbol.iterator]?o(Array.prototype,"values",Array.prototype[Symbol.iterator]):o(Array.prototype,"values",(function(){var e=u(this);return new $(e,"value")})),o(Array.prototype,Symbol.iterator,Array.prototype.values),o(Object,"fromEntries",(function(e){c(e);return T({},e,(function(e,t){n(this,P(e),t)}))}))}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(e,t){function r(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}var n,o;r(Object,"keys",function(){function e(){var e;try{e=Object.create({})}catch(e){return!0}return o.call(e,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,o=Object.prototype.propertyIsEnumerable,i=!o.call({toString:null},"toString"),a=o.call((function(){}),"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(e){var t=e.constructor;return t&&t.prototype===e},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},f=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!u["$"+e]&&r.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{l(window[e])}catch(e){return!0}}catch(e){return!0}return!1}(),p=function(e){if("undefined"==typeof window||!f)return l(e);try{return l(e)}catch(e){return!1}};return function(o){var l="[object Function]"===n.call(o),u=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(e,t){return l(e)===l(t)&&("number"===l(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function f(e){if("symbol"===l(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function p(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var i=n;else(i=r+n)<0&&(i=0);for(;iMath.pow(2,32)-1)throw new RangeError("Invalid array length");var t=[];return t.length=e,t}function n(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===l(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function o(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}function i(e,t,r){var n=o(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function a(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function c(e,t){return e[t]}function l(e){return"function"==typeof e}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,t){return u(e)[t]}function p(e,r){var n=f(e,r);if(null===n||n===t)return t;if(!1===l(n))throw new TypeError("Method not callable: "+r);return n}function s(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}var b;function y(e,t){if("boolean"!==s(t))throw new Error;var r={};return o(r,"value",e),o(r,"done",t),r}function v(e,t){var r=arguments[2]||{},n=function(e,t){var r=c(e,"prototype");return"object"!==s(r)&&(r=t),r}(e,t),o=Object.create(n);for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&Object.defineProperty(o,i,{configurable:!0,enumerable:!1,writable:!0,value:r[i]});return o}function h(e){return"object"===s(e)&&"function"==typeof e&&!!e.prototype}function g(e){var t=arguments.length>2?arguments[2]:e,r=arguments.length>1?arguments[1]:[];if(!h(e))throw new TypeError("F must be a constructor.");if(!h(t))throw new TypeError("newTarget must be a constructor.");return t===e?new(Function.prototype.bind.apply(e,[null].concat(r))):n(e,v(t,Object.prototype),r)}function d(e,r){if("object"!==s(e["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(e["[[Iterator]]"])+"is not an Object.");var o=e["[[Iterator]]"],i=p(o,"return");if(i===t)return r;try{var a=n(i,o)}catch(e){var c=e}if(r)return r;if(c)throw c;if("object"!==s(a))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return t=c(e,"done"),Boolean(t);var t}function w(e){var t=function(e){if(arguments.length<2)var t=n(e["[[NextMethod]]"],e["[[Iterator]]"]);else t=n(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]);if("object"!==s(t))throw new TypeError("bad iterator");return t}(e);return!0!==m(t)&&t}function j(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return c(e,"value")}function S(e,t){return s(e)===s(t)&&("number"===s(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function _(e){if("symbol"===s(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function O(e){var t=_(e);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function E(r){var o=arguments.length>1?arguments[1]:t;if("object"===s(r)){if(arguments.length<2)var i="default";else o===String?i="string":o===Number&&(i="number");var a="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?p(r,e.Symbol.toPrimitive):t;if(a!==t){var u=n(a,r,[i]);if("object"!==s(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),function(e,t){if("string"===t)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var o=0;o1?arguments[1]:p(e,Symbol.iterator),e);if("object"!==s(t))throw new TypeError("bad iterator");var r=f(t,"next"),o=Object.create(null);return o["[[Iterator]]"]=t,o["[[NextMethod]]"]=r,o["[[Done]]"]=!1,o}a(Object,"keys",function(){function e(){var e;try{e=Object.create({})}catch(e){return!0}return o.call(e,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,o=Object.prototype.propertyIsEnumerable,i=!o.call({toString:null},"toString"),a=o.call((function(){}),"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(e){var t=e.constructor;return t&&t.prototype===e},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},f=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!u["$"+e]&&r.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{l(window[e])}catch(e){return!0}}catch(e){return!0}return!1}(),p=function(e){if("undefined"==typeof window||!f)return l(e);try{return l(e)}catch(e){return!1}};return function(o){var l="[object Function]"===n.call(o),u=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var o=n;else(o=r+n)<0&&(o=0);for(;o0?arguments[0]:t;if(null===o||o===t)return r;var i=r.set;if(!l(i))throw new TypeError("Map.prototype.set is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);if("object"!==s(u))try{throw new TypeError("Iterator value "+u+" is not an entry object")}catch(e){return d(a,e)}try{var f=u[0],p=u[1];i.call(r,f,p)}catch(e){return d(a,e)}}}catch(e){if(Array.isArray(o)||"[object Arguments]"===Object.prototype.toString.call(o)||o.callee){var b,y=o.length;for(b=0;b0?arguments[0]:t;if(null===o||o===t)return r;var i=r.add;if(!l(i))throw new TypeError("Set.prototype.add is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);try{i.call(r,u)}catch(e){return d(a,e)}}}catch(e){if(!Array.isArray(o)&&"[object Arguments]"!==Object.prototype.toString.call(o)&&!o.callee)throw e;var f,p=o.length;for(f=0;f1?arguments[1]:t;if(s===t)var b=!1;else{if(!1===l(s))throw new TypeError(Object.prototype.toString.call(s)+" is not a function.");var y=arguments.length>2?arguments[2]:t;if(y!==t)var v=y;else v=t;b=!0}var m=p(o,Symbol.iterator);if(m!==t){if(h(a))var S=g(a);else S=r(0);for(var _=T(o,m),E=0;;){if(E>=Math.pow(2,53)-1)return d(_,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var M=P(E),$=w(_);if(!1===$)return S.length=E,S;var x=j($);if(b)try{var I=n(s,v,[x,E])}catch(e){return d(_,e)}else I=x;try{i(S,M,I)}catch(e){return d(_,e)}E+=1}}if(e(o))var N=f.call(o,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else N=u(o);var k=O(c(N,"length"));for(S=h(a)?g(a,[k]):r(k),E=0;E=e.length)return{done:!0,value:t};var o=e[n++];return{done:!1,value:"key"===r?o.name:"value"===r?o.value:[o.name,o.value]}}}function l(t,r){function n(){var e=c.href.replace(/#$|\?$|\?(?=#)/g,"");c.href!==e&&(c.href=e)}function o(){s._setList(c.search?i(c.search.substring(1)):[]),s._update_steps()}if(!(this instanceof e.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");r&&(t=function(){if(u)return new f(t,r).href;var e;try{var n;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?((e=document.createElement("iframe")).style.display="none",document.documentElement.appendChild(e),n=e.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?n=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?((n=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null)).documentElement.appendChild(n.createElement("head")),n.documentElement.appendChild(n.createElement("body"))):window.ActiveXObject&&((n=new window.ActiveXObject("htmlfile")).write(""),n.close()),!n)throw Error("base not supported");var o=n.createElement("base");o.href=r,n.getElementsByTagName("head")[0].appendChild(o);var i=n.createElement("a");return i.href=t,i.href}finally{e&&e.parentNode.removeChild(e)}}());var c=function(e){if(u)return new f(e);var t=document.createElement("a");return t.href=e,t}(t||""),l=function(){if(!("defineProperties"in Object))return!1;try{var e={};return Object.defineProperties(e,{prop:{get:function(){return!0}}}),e.prop}catch(e){return!1}}(),p=l?this:document.createElement("a"),s=new a(c.search?c.search.substring(1):null);return s._url_object=p,Object.defineProperties(p,{href:{get:function(){return c.href},set:function(e){c.href=e,n(),o()},enumerable:!0,configurable:!0},origin:{get:function(){return"data:"===this.protocol.toLowerCase()?null:"origin"in c?c.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return c.protocol},set:function(e){c.protocol=e},enumerable:!0,configurable:!0},username:{get:function(){return c.username},set:function(e){c.username=e},enumerable:!0,configurable:!0},password:{get:function(){return c.password},set:function(e){c.password=e},enumerable:!0,configurable:!0},host:{get:function(){var e={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[c.protocol];return e?c.host.replace(e,""):c.host},set:function(e){c.host=e},enumerable:!0,configurable:!0},hostname:{get:function(){return c.hostname},set:function(e){c.hostname=e},enumerable:!0,configurable:!0},port:{get:function(){return c.port},set:function(e){c.port=e},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==c.pathname.charAt(0)?"/"+c.pathname:c.pathname},set:function(e){c.pathname=e},enumerable:!0,configurable:!0},search:{get:function(){return c.search},set:function(e){c.search!==e&&(c.search=e,n(),o())},enumerable:!0,configurable:!0},searchParams:{get:function(){return s},enumerable:!0,configurable:!0},hash:{get:function(){return c.hash},set:function(e){c.hash=e,n()},enumerable:!0,configurable:!0},toString:{value:function(){return c.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return c.valueOf()},enumerable:!1,configurable:!0}}),p}var u,f=e.URL;try{if(f){if("searchParams"in(u=new e.URL("http://example.com"))){var p=new l("http://example.com");if(p.search="a=1&b=2","http://example.com/?a=1&b=2"===p.href&&(p.search="","http://example.com/"===p.href))return}"href"in u||(u=t),u=t}}catch(e){}if(Object.defineProperties(a.prototype,{append:{value:function(e,t){this._list.push({name:e,value:t}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},delete:{value:function(e){for(var t=0;t1?arguments[1]:t;this._list.forEach((function(t){e.call(r,t.value,t.name)}))},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return n(this._list)},writable:!0,enumerable:!1,configurable:!0},sort:{value:function(){for(var e=this.entries(),t=e.next(),r=[],n={};!t.done;){var o=t.value,i=o[0];r.push(i),Object.prototype.hasOwnProperty.call(n,i)||(n[i]=[]),n[i].push(o[1]),t=e.next()}r.sort();for(var a=0;a2?arguments[2]:[];if(!1===o(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t){return e[t]}function o(e){return"function"==typeof e}function i(e){if(null===e||e===t)throw TypeError();return Object(e)}function a(e,r){var n=function(e,t){return i(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===o(n))throw new TypeError("Method not callable: "+r);return n}function c(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function l(e,t){return c(e)===c(t)&&("number"===c(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function u(e){if("symbol"===c(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function f(i){var l=arguments.length>1?arguments[1]:t;if("object"===c(i)){if(arguments.length<2)var u="default";else l===String?u="string":l===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?a(i,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,i,[u]);if("object"!==c(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var i=["toString","valueOf"];else i=["valueOf","toString"];for(var a=0;a=0)var a=o;else(a=r+o)<0&&(a=0);for(;a=l)for(;l>>0,"object"==typeof e[n]?e[n].baseVal=i.join(" "):e[n]=i.join(" "),f())},o.remove=function(){p.apply(o,t=arguments);for(var t,r={},l=0,u=[];l>>0,"object"==typeof e[n]?e[n].baseVal=i.join(" "):e[n]=i.join(" "),f()},o.toggle=function(e,r){return p.apply(o,[e]),t!==r?r?(o.add(e),!0):(o.remove(e),!1):a[e]?(o.remove(e),!1):(o.add(e),!0)},o.forEach=Array.prototype.forEach,o}}();"DOMTokenList"in(r=e)&&r.DOMTokenList&&(!document.createElementNS||!document.createElementNS("http://www.w3.org/2000/svg","svg")||document.createElementNS("http://www.w3.org/2000/svg","svg").classList instanceof DOMTokenList)||(r.DOMTokenList=n),function(){var e=document.createElement("span");"classList"in e&&(e.classList.toggle("x",!1),e.classList.contains("x")&&(e.classList.constructor.prototype.toggle=function(e){var r=arguments[1];if(r===t){var n=!this.contains(e);return this[n?"add":"remove"](e),n}return r=!!r,this[r?"add":"remove"](e),r}))}(),function(){var e=document.createElement("span");if("classList"in e&&(e.classList.add("a","b"),!e.classList.contains("b"))){var t=e.classList.constructor.prototype.add;e.classList.constructor.prototype.add=function(){for(var e=arguments,r=arguments.length,n=0;n2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(e,t){return l(e)===l(t)&&("number"===l(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function f(e){if("symbol"===l(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function p(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var i=n;else(i=r+n)<0&&(i=0);for(;ie&&(n.length=e)}var n=A(e),o=0;return function(e,t){n[o++]=e,n[o++]=t,2===o&&re.nextTick(r)}}function p(e,t){var r,n,a,c,l=0;if(!e)throw s(U);var f=e[re[H][W]];if(o(f))n=f.call(e);else{if(!o(e.next)){if(i(e,A)){for(r=e.length;lMath.pow(2,32)-1)throw new RangeError("Invalid array length");var t=[];return t.length=e,t}function n(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===l(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function o(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}function i(e,t,r){var n=o(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function a(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function c(e,t){return e[t]}function l(e){return"function"==typeof e}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,t){return u(e)[t]}function p(e,r){var n=f(e,r);if(null===n||n===t)return t;if(!1===l(n))throw new TypeError("Method not callable: "+r);return n}function s(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}var b;function y(e,t){if("boolean"!==s(t))throw new Error;var r={};return o(r,"value",e),o(r,"done",t),r}function v(e,t){var r=arguments[2]||{},n=function(e,t){var r=c(e,"prototype");return"object"!==s(r)&&(r=t),r}(e,t),o=Object.create(n);for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&Object.defineProperty(o,i,{configurable:!0,enumerable:!1,writable:!0,value:r[i]});return o}function h(e){return"object"===s(e)&&"function"==typeof e&&!!e.prototype}function g(e){var t=arguments.length>2?arguments[2]:e,r=arguments.length>1?arguments[1]:[];if(!h(e))throw new TypeError("F must be a constructor.");if(!h(t))throw new TypeError("newTarget must be a constructor.");return t===e?new(Function.prototype.bind.apply(e,[null].concat(r))):n(e,v(t,Object.prototype),r)}function d(e,r){if("object"!==s(e["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(e["[[Iterator]]"])+"is not an Object.");var o=e["[[Iterator]]"],i=p(o,"return");if(i===t)return r;try{var a=n(i,o)}catch(e){var c=e}if(r)return r;if(c)throw c;if("object"!==s(a))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return t=c(e,"done"),Boolean(t);var t}function w(e){var t=function(e){if(arguments.length<2)var t=n(e["[[NextMethod]]"],e["[[Iterator]]"]);else t=n(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]);if("object"!==s(t))throw new TypeError("bad iterator");return t}(e);return!0!==m(t)&&t}function j(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return c(e,"value")}function S(e,t){return s(e)===s(t)&&("number"===s(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function _(e){if("symbol"===s(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function O(e){var t=_(e);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function E(r){var o=arguments.length>1?arguments[1]:t;if("object"===s(r)){if(arguments.length<2)var i="default";else o===String?i="string":o===Number&&(i="number");var a="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?p(r,e.Symbol.toPrimitive):t;if(a!==t){var u=n(a,r,[i]);if("object"!==s(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),function(e,t){if("string"===t)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var o=0;o1?arguments[1]:p(e,Symbol.iterator),e);if("object"!==s(t))throw new TypeError("bad iterator");var r=f(t,"next"),o=Object.create(null);return o["[[Iterator]]"]=t,o["[[NextMethod]]"]=r,o["[[Done]]"]=!1,o}a(Object,"keys",function(){function e(){var e;try{e=Object.create({})}catch(e){return!0}return o.call(e,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,o=Object.prototype.propertyIsEnumerable,i=!o.call({toString:null},"toString"),a=o.call((function(){}),"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(e){var t=e.constructor;return t&&t.prototype===e},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},f=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!u["$"+e]&&r.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{l(window[e])}catch(e){return!0}}catch(e){return!0}return!1}(),p=function(e){if("undefined"==typeof window||!f)return l(e);try{return l(e)}catch(e){return!1}};return function(o){var l="[object Function]"===n.call(o),u=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var o=n;else(o=r+n)<0&&(o=0);for(;o0?arguments[0]:t;if(null===o||o===t)return r;var i=r.set;if(!l(i))throw new TypeError("Map.prototype.set is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);if("object"!==s(u))try{throw new TypeError("Iterator value "+u+" is not an entry object")}catch(e){return d(a,e)}try{var f=u[0],p=u[1];i.call(r,f,p)}catch(e){return d(a,e)}}}catch(e){if(Array.isArray(o)||"[object Arguments]"===Object.prototype.toString.call(o)||o.callee){var b,y=o.length;for(b=0;b0?arguments[0]:t;if(null===o||o===t)return r;var i=r.add;if(!l(i))throw new TypeError("Set.prototype.add is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);try{i.call(r,u)}catch(e){return d(a,e)}}}catch(e){if(!Array.isArray(o)&&"[object Arguments]"!==Object.prototype.toString.call(o)&&!o.callee)throw e;var f,p=o.length;for(f=0;f1?arguments[1]:t;if(s===t)var b=!1;else{if(!1===l(s))throw new TypeError(Object.prototype.toString.call(s)+" is not a function.");var y=arguments.length>2?arguments[2]:t;if(y!==t)var v=y;else v=t;b=!0}var m=p(o,Symbol.iterator);if(m!==t){if(h(a))var S=g(a);else S=r(0);for(var _=T(o,m),E=0;;){if(E>=Math.pow(2,53)-1)return d(_,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var M=P(E),$=w(_);if(!1===$)return S.length=E,S;var x=j($);if(b)try{var I=n(s,v,[x,E])}catch(e){return d(_,e)}else I=x;try{i(S,M,I)}catch(e){return d(_,e)}E+=1}}if(e(o))var N=f.call(o,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else N=u(o);var k=O(c(N,"length"));for(S=h(a)?g(a,[k]):r(k),E=0;EMath.pow(2,32)-1)throw new RangeError("Invalid array length");var t=[];return t.length=e,t}function n(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===l(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function o(e,t,r){var n=function(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function i(e,t){return e[t]}function a(e,t){return t in e}function c(e){return"[object Array]"===Object.prototype.toString.call(e)}function l(e){return"function"==typeof e}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,r){var n=function(e,t){return u(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===l(n))throw new TypeError("Method not callable: "+r);return n}function p(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function s(e,t){var r=arguments[2]||{},n=function(e,t){var r=i(e,"prototype");return"object"!==p(r)&&(r=t),r}(e,t),o=Object.create(n);for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&Object.defineProperty(o,a,{configurable:!0,enumerable:!1,writable:!0,value:r[a]});return o}function b(e){return"object"===p(e)&&"function"==typeof e&&!!e.prototype}function y(o,a){if(0===a&&1/a==-1/0&&(a=0),!1===c(o))return r(a);var l=i(o,"constructor");if("object"===p(l)&&null===(l="Symbol"in e&&"species"in e.Symbol?i(l,e.Symbol.species):t)&&(l=t),l===t)return r(a);if(!b(l))throw new TypeError("C must be a constructor");return function(e){var t=arguments.length>2?arguments[2]:e,r=arguments.length>1?arguments[1]:[];if(!b(e))throw new TypeError("F must be a constructor.");if(!b(t))throw new TypeError("newTarget must be a constructor.");return t===e?new(Function.prototype.bind.apply(e,[null].concat(r))):n(e,s(t,Object.prototype),r)}(l,[a])}function v(e){if("symbol"===p(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function h(e){var t=v(e);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function g(r){var o=arguments.length>1?arguments[1]:t;if("object"===p(r)){if(arguments.length<2)var a="default";else o===String?a="string":o===Number&&(a="number");var c="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?f(r,e.Symbol.toPrimitive):t;if(c!==t){var u=n(c,r,[a]);if("object"!==p(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===a&&(a="number"),function(e,t){if("string"===t)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var o=0;o0&&(w=c(g)),!0===w)b=m(e,g,h(i(g,"length")),b,u-1);else{if(b>=Math.pow(2,53)-1)throw new TypeError("targetIndex is greater than or equal to 2^53-1");o(e,d(b),g),b+=1}}y+=1}return b}var w,j,S,_;w=Array.prototype,j="flat",S=function(){var e=arguments[0],t=u(this),r=h(i(t,"length")),n=1;void 0!==e&&(n=v(e));var o=y(t,0);return m(o,t,r,0,n),o},_={value:S,writable:!0,enumerable:!1,configurable:!0},Object.defineProperty(w,j,_)}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(e,t){function r(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v2?arguments[2]:[];if(!1===a(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n=function(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function o(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function i(e,t){return e[t]}function a(e){return"function"==typeof e}function c(e){if(null===e||e===t)throw TypeError(Object.prototype.toString.call(e)+" is not coercible to Object.");return e}function l(e){return Boolean(e)}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,t){return u(e)[t]}function p(e,r){var n=f(e,r);if(null===n||n===t)return t;if(!1===a(n))throw new TypeError("Method not callable: "+r);return n}function s(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function b(e,n){if("object"!==s(e["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(e["[[Iterator]]"])+"is not an Object.");var o=e["[[Iterator]]"],i=p(o,"return");if(i===t)return n;try{var a=r(i,o)}catch(e){var c=e}if(n)return n;if(c)throw c;if("object"!==s(a))throw new TypeError("Iterator's return method returned a non-object.");return n}function y(e){var t=function(e){if(arguments.length<2)var t=r(e["[[NextMethod]]"],e["[[Iterator]]"]);else t=r(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]);if("object"!==s(t))throw new TypeError("bad iterator");return t}(e);return!0!==function(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return l(i(e,"done"))}(t)&&t}function v(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return i(e,"value")}function h(e,t){return s(e)===s(t)&&("number"===s(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function g(e){if("symbol"===s(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function d(n){var o=arguments.length>1?arguments[1]:t;if("object"===s(n)){if(arguments.length<2)var c="default";else o===String?c="string":o===Number&&(c="number");var l="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?p(n,e.Symbol.toPrimitive):t;if(l!==t){var u=r(l,n,[c]);if("object"!==s(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===c&&(c="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var o=0;o=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var o=n;else(o=r+n)<0&&(o=0);for(;o1?arguments[1]:t,o=m(c(this));if(function(r){if("object"!==s(r))return!1;var n="Symbol"in e&&"match"in e.Symbol?i(r,e.Symbol.match):t;if(n!==t)return l(n);try{var o=r.lastIndex;return r.lastIndex=0,RegExp.prototype.exec.call(r),!0}catch(e){}finally{r.lastIndex=o}return!1}(r))throw new TypeError("First argument to String.prototype.includes must not be a regular expression");var a=m(r),u=g(n),f=o.length,p=Math.min(Math.max(u,0),f);return-1!==String.prototype.indexOf.call(o,a,p)})),function(){var e=Object.getOwnPropertyDescriptor,t=function(){try{return 1===Object.defineProperty(document.createElement("div"),"one",{get:function(){return 1}}).one}catch(e){return!1}},r={}.toString,n="".split;o(Object,"getOwnPropertyDescriptor",(function(o,i){var a=u(o);a=("string"===s(a)||a instanceof String)&&"[object String]"==r.call(o)?n.call(o,""):Object(o);var c=P(i);if(t)try{return e(a,c)}catch(e){}if(function(e,t){return Object.prototype.hasOwnProperty.call(e,t)}(a,c))return{enumerable:!0,configurable:!0,writable:!0,value:a[c]}}))}(),o(Object,"assign",(function(e,r){var n=u(e);if(1===arguments.length)return n;var o,a,c,l,f=Array.prototype.slice.call(arguments,1);for(o=0;o1?arguments[1]:p(e,Symbol.iterator),e);if("object"!==s(t))throw new TypeError("bad iterator");var n=f(t,"next"),o=Object.create(null);return o["[[Iterator]]"]=t,o["[[NextMethod]]"]=n,o["[[Done]]"]=!1,o}(o);;){var u=y(l);if(!1===u)return n;var h,g,d=v(u);if("object"!==s(d)){var m=new TypeError("nextItem is not an object");throw b(l,m),m}d=("string"===s(d)||d instanceof String)&&"[object String]"==e.call(d)?t.call(d,""):d;try{h=i(d,"0")}catch(e){return b(l,e)}try{g=i(d,"1")}catch(e){return b(l,e)}try{r(c,n,[h,g])}catch(e){return b(l,e)}}}}();Object.defineProperty(Symbol,"toStringTag",{value:Symbol("toStringTag")});var M=function(){var e=function(){return this.length=0,this},r=function(e,t){if(!(this instanceof r))return new r(e,t);Object.defineProperties(this,{__list__:{writable:!0,value:e},__context__:{writable:!0,value:t},__nextIndex__:{writable:!0,value:0}}),t&&(function(e){if("function"!=typeof e)throw new TypeError(e+" is not a function")}(t.on),t.on("_add",this._onAdd.bind(this)),t.on("_delete",this._onDelete.bind(this)),t.on("_clear",this._onClear.bind(this)))};return Object.defineProperties(r.prototype,Object.assign({constructor:{value:r,configurable:!0,enumerable:!1,writable:!0},_next:{value:function(){var e;if(this.__list__)return this.__redo__&&(e=this.__redo__.shift())!==t?e:this.__nextIndex__=this.__nextIndex__)){if(++this.__nextIndex__,!this.__redo__)return void Object.defineProperty(this,"__redo__",{value:[e],configurable:!0,enumerable:!1,writable:!1});this.__redo__.forEach((function(t,r){t>=e&&(this.__redo__[r]=++t)}),this),this.__redo__.push(e)}},configurable:!0,enumerable:!1,writable:!0},_onDelete:{value:function(e){var t;e>=this.__nextIndex__||(--this.__nextIndex__,this.__redo__&&(-1!==(t=this.__redo__.indexOf(e))&&this.__redo__.splice(t,1),this.__redo__.forEach((function(t,r){t>e&&(this.__redo__[r]=--t)}),this)))},configurable:!0,enumerable:!1,writable:!0},_onClear:{value:function(){this.__redo__&&e.call(this.__redo__),this.__nextIndex__=0},configurable:!0,enumerable:!1,writable:!0}})),Object.defineProperty(r.prototype,Symbol.iterator,{value:function(){return this},configurable:!0,enumerable:!1,writable:!0}),Object.defineProperty(r.prototype,Symbol.toStringTag,{value:"Iterator",configurable:!1,enumerable:!1,writable:!0}),r}(),$=function(){var e=function(t,r){if(!(this instanceof e))return new e(t,r);M.call(this,t),r=r?String.prototype.includes.call(r,"key+value")?"key+value":String.prototype.includes.call(r,"key")?"key":"value":"value",Object.defineProperty(this,"__kind__",{value:r,configurable:!1,enumerable:!1,writable:!1})};return Object.setPrototypeOf&&Object.setPrototypeOf(e,M.prototype),e.prototype=Object.create(M.prototype,{constructor:{value:e,configurable:!0,enumerable:!1,writable:!0},_resolve:{value:function(e){return"value"===this.__kind__?this.__list__[e]:"key+value"===this.__kind__?[e,this.__list__[e]]:e},configurable:!0,enumerable:!1,writable:!0},toString:{value:function(){return"[object Array Iterator]"},configurable:!0,enumerable:!1,writable:!0}}),e}();"Symbol"in e&&"iterator"in Symbol&&"function"==typeof Array.prototype[Symbol.iterator]?o(Array.prototype,"values",Array.prototype[Symbol.iterator]):o(Array.prototype,"values",(function(){var e=u(this);return new $(e,"value")})),o(Array.prototype,Symbol.iterator,Array.prototype.values),o(Object,"fromEntries",(function(e){c(e);return T({},e,(function(e,t){n(this,P(e),t)}))}))}("object"==typeof window&&window||"object"==typeof self&&self||"object"==typeof global&&global||{}),function(e,t){function r(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}var n,o;r(Object,"keys",function(){function e(){var e;try{e=Object.create({})}catch(e){return!0}return o.call(e,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,o=Object.prototype.propertyIsEnumerable,i=!o.call({toString:null},"toString"),a=o.call((function(){}),"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(e){var t=e.constructor;return t&&t.prototype===e},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},f=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!u["$"+e]&&r.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{l(window[e])}catch(e){return!0}}catch(e){return!0}return!1}(),p=function(e){if("undefined"==typeof window||!f)return l(e);try{return l(e)}catch(e){return!1}};return function(o){var l="[object Function]"===n.call(o),u=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v2?arguments[2]:[];if(!1===i(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function n(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function o(e,t){return e[t]}function i(e){return"function"==typeof e}function a(e){if(null===e||e===t)throw TypeError();return Object(e)}function c(e,r){var n=function(e,t){return a(e)[t]}(e,r);if(null===n||n===t)return t;if(!1===i(n))throw new TypeError("Method not callable: "+r);return n}function l(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}function u(e,t){return l(e)===l(t)&&("number"===l(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function f(e){if("symbol"===l(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function p(n){var a=arguments.length>1?arguments[1]:t;if("object"===l(n)){if(arguments.length<2)var u="default";else a===String?u="string":a===Number&&(u="number");var f="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?c(n,e.Symbol.toPrimitive):t;if(f!==t){var p=r(f,n,[u]);if("object"!==l(p))return p;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===u&&(u="number"),function(e,t){if("string"===t)var n=["toString","valueOf"];else n=["valueOf","toString"];for(var a=0;a=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var i=n;else(i=r+n)<0&&(i=0);for(;iMath.pow(2,32)-1)throw new RangeError("Invalid array length");var t=[];return t.length=e,t}function n(e,t){var r=arguments.length>2?arguments[2]:[];if(!1===l(e))throw new TypeError(Object.prototype.toString.call(e)+"is not a function.");return e.apply(t,r)}function o(e,t,r){var n={value:r,writable:!0,enumerable:!0,configurable:!0};try{return Object.defineProperty(e,t,n),!0}catch(e){return!1}}function i(e,t,r){var n=o(e,t,r);if(!n)throw new TypeError("Cannot assign value `"+Object.prototype.toString.call(r)+"` to property `"+Object.prototype.toString.call(t)+"` on object `"+Object.prototype.toString.call(e)+"`");return n}function a(e,t,r){var n={value:r,writable:!0,enumerable:!1,configurable:!0};Object.defineProperty(e,t,n)}function c(e,t){return e[t]}function l(e){return"function"==typeof e}function u(e){if(null===e||e===t)throw TypeError();return Object(e)}function f(e,t){return u(e)[t]}function p(e,r){var n=f(e,r);if(null===n||n===t)return t;if(!1===l(n))throw new TypeError("Method not callable: "+r);return n}function s(t){switch(typeof t){case"undefined":return"undefined";case"boolean":return"boolean";case"number":return"number";case"string":return"string";case"symbol":return"symbol";default:return null===t?"null":"Symbol"in e&&(t instanceof e.Symbol||t.constructor===e.Symbol)?"symbol":"object"}}var b;function y(e,t){if("boolean"!==s(t))throw new Error;var r={};return o(r,"value",e),o(r,"done",t),r}function v(e,t){var r=arguments[2]||{},n=function(e,t){var r=c(e,"prototype");return"object"!==s(r)&&(r=t),r}(e,t),o=Object.create(n);for(var i in r)Object.prototype.hasOwnProperty.call(r,i)&&Object.defineProperty(o,i,{configurable:!0,enumerable:!1,writable:!0,value:r[i]});return o}function h(e){return"object"===s(e)&&"function"==typeof e&&!!e.prototype}function g(e){var t=arguments.length>2?arguments[2]:e,r=arguments.length>1?arguments[1]:[];if(!h(e))throw new TypeError("F must be a constructor.");if(!h(t))throw new TypeError("newTarget must be a constructor.");return t===e?new(Function.prototype.bind.apply(e,[null].concat(r))):n(e,v(t,Object.prototype),r)}function d(e,r){if("object"!==s(e["[[Iterator]]"]))throw new Error(Object.prototype.toString.call(e["[[Iterator]]"])+"is not an Object.");var o=e["[[Iterator]]"],i=p(o,"return");if(i===t)return r;try{var a=n(i,o)}catch(e){var c=e}if(r)return r;if(c)throw c;if("object"!==s(a))throw new TypeError("Iterator's return method returned a non-object.");return r}function m(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return t=c(e,"done"),Boolean(t);var t}function w(e){var t=function(e){if(arguments.length<2)var t=n(e["[[NextMethod]]"],e["[[Iterator]]"]);else t=n(e["[[NextMethod]]"],e["[[Iterator]]"],[arguments[1]]);if("object"!==s(t))throw new TypeError("bad iterator");return t}(e);return!0!==m(t)&&t}function j(e){if("object"!==s(e))throw new Error(Object.prototype.toString.call(e)+"is not an Object.");return c(e,"value")}function S(e,t){return s(e)===s(t)&&("number"===s(e)?!(!isNaN(e)||!isNaN(t))||1/e==1/0&&1/t==-1/0||1/e==-1/0&&1/t==1/0||e===t:function(e,t){return e===t}(e,t))}function _(e){if("symbol"===s(e))throw new TypeError("Cannot convert a Symbol value to a number");var t=Number(e);return isNaN(t)?0:1/t==1/0||1/t==-1/0||t===1/0||t===-1/0?t:(t<0?-1:1)*Math.floor(Math.abs(t))}function O(e){var t=_(e);return t<=0?0:Math.min(t,Math.pow(2,53)-1)}function E(r){var o=arguments.length>1?arguments[1]:t;if("object"===s(r)){if(arguments.length<2)var i="default";else o===String?i="string":o===Number&&(i="number");var a="function"==typeof e.Symbol&&"symbol"==typeof e.Symbol.toPrimitive?p(r,e.Symbol.toPrimitive):t;if(a!==t){var u=n(a,r,[i]);if("object"!==s(u))return u;throw new TypeError("Cannot convert exotic object to primitive.")}return"default"===i&&(i="number"),function(e,t){if("string"===t)var r=["toString","valueOf"];else r=["valueOf","toString"];for(var o=0;o1?arguments[1]:p(e,Symbol.iterator),e);if("object"!==s(t))throw new TypeError("bad iterator");var r=f(t,"next"),o=Object.create(null);return o["[[Iterator]]"]=t,o["[[NextMethod]]"]=r,o["[[Done]]"]=!1,o}a(Object,"keys",function(){function e(){var e;try{e=Object.create({})}catch(e){return!0}return o.call(e,"__proto__")}var r=Object.prototype.hasOwnProperty,n=Object.prototype.toString,o=Object.prototype.propertyIsEnumerable,i=!o.call({toString:null},"toString"),a=o.call((function(){}),"prototype"),c=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],l=function(e){var t=e.constructor;return t&&t.prototype===e},u={$console:!0,$external:!0,$frame:!0,$frameElement:!0,$frames:!0,$innerHeight:!0,$innerWidth:!0,$outerHeight:!0,$outerWidth:!0,$pageXOffset:!0,$pageYOffset:!0,$parent:!0,$scrollLeft:!0,$scrollTop:!0,$scrollX:!0,$scrollY:!0,$self:!0,$webkitIndexedDB:!0,$webkitStorageInfo:!0,$window:!0},f=function(){if("undefined"==typeof window)return!1;for(var e in window)try{if(!u["$"+e]&&r.call(window,e)&&null!==window[e]&&"object"==typeof window[e])try{l(window[e])}catch(e){return!0}}catch(e){return!0}return!1}(),p=function(e){if("undefined"==typeof window||!f)return l(e);try{return l(e)}catch(e){return!1}};return function(o){var l="[object Function]"===n.call(o),u=function(e){var t=n.call(e),r="[object Arguments]"===t;return r||(r="[object Array]"!==t&&null!==e&&"object"==typeof e&&"number"==typeof e.length&&e.length>=0&&"[object Function]"===n.call(e.callee)),r}(o),f="[object String]"===n.call(o),s=[];if(o===t||null===o)throw new TypeError("Cannot convert undefined or null to object");var b=a&&l;if(f&&o.length>0&&!r.call(o,0))for(var y=0;y0)for(var v=0;v=0)var o=n;else(o=r+n)<0&&(o=0);for(;o0?arguments[0]:t;if(null===o||o===t)return r;var i=r.set;if(!l(i))throw new TypeError("Map.prototype.set is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);if("object"!==s(u))try{throw new TypeError("Iterator value "+u+" is not an entry object")}catch(e){return d(a,e)}try{var f=u[0],p=u[1];i.call(r,f,p)}catch(e){return d(a,e)}}}catch(e){if(Array.isArray(o)||"[object Arguments]"===Object.prototype.toString.call(o)||o.callee){var b,y=o.length;for(b=0;b0?arguments[0]:t;if(null===o||o===t)return r;var i=r.add;if(!l(i))throw new TypeError("Set.prototype.add is not a function");try{for(var a=T(o);;){var c=w(a);if(!1===c)return r;var u=j(c);try{i.call(r,u)}catch(e){return d(a,e)}}}catch(e){if(!Array.isArray(o)&&"[object Arguments]"!==Object.prototype.toString.call(o)&&!o.callee)throw e;var f,p=o.length;for(f=0;f1?arguments[1]:t;if(s===t)var b=!1;else{if(!1===l(s))throw new TypeError(Object.prototype.toString.call(s)+" is not a function.");var y=arguments.length>2?arguments[2]:t;if(y!==t)var v=y;else v=t;b=!0}var m=p(o,Symbol.iterator);if(m!==t){if(h(a))var S=g(a);else S=r(0);for(var _=T(o,m),E=0;;){if(E>=Math.pow(2,53)-1)return d(_,new TypeError("Iteration count can not be greater than or equal 9007199254740991."));var M=P(E),$=w(_);if(!1===$)return S.length=E,S;var x=j($);if(b)try{var I=n(s,v,[x,E])}catch(e){return d(_,e)}else I=x;try{i(S,M,I)}catch(e){return d(_,e)}E+=1}}if(e(o))var N=f.call(o,/[\uD800-\uDBFF][\uDC00-\uDFFF]?|[^\uD800-\uDFFF]|./g)||[];else N=u(o);var k=O(c(N,"length"));for(S=h(a)?g(a,[k]):r(k),E=0;E=e.length)return{done:!0,value:t};var o=e[n++];return{done:!1,value:"key"===r?o.name:"value"===r?o.value:[o.name,o.value]}}}function l(t,r){function n(){var e=c.href.replace(/#$|\?$|\?(?=#)/g,"");c.href!==e&&(c.href=e)}function o(){s._setList(c.search?i(c.search.substring(1)):[]),s._update_steps()}if(!(this instanceof e.URL))throw new TypeError("Failed to construct 'URL': Please use the 'new' operator.");r&&(t=function(){if(u)return new f(t,r).href;var e;try{var n;if("[object OperaMini]"===Object.prototype.toString.call(window.operamini)?((e=document.createElement("iframe")).style.display="none",document.documentElement.appendChild(e),n=e.contentWindow.document):document.implementation&&document.implementation.createHTMLDocument?n=document.implementation.createHTMLDocument(""):document.implementation&&document.implementation.createDocument?((n=document.implementation.createDocument("http://www.w3.org/1999/xhtml","html",null)).documentElement.appendChild(n.createElement("head")),n.documentElement.appendChild(n.createElement("body"))):window.ActiveXObject&&((n=new window.ActiveXObject("htmlfile")).write(""),n.close()),!n)throw Error("base not supported");var o=n.createElement("base");o.href=r,n.getElementsByTagName("head")[0].appendChild(o);var i=n.createElement("a");return i.href=t,i.href}finally{e&&e.parentNode.removeChild(e)}}());var c=function(e){if(u)return new f(e);var t=document.createElement("a");return t.href=e,t}(t||""),l=function(){if(!("defineProperties"in Object))return!1;try{var e={};return Object.defineProperties(e,{prop:{get:function(){return!0}}}),e.prop}catch(e){return!1}}(),p=l?this:document.createElement("a"),s=new a(c.search?c.search.substring(1):null);return s._url_object=p,Object.defineProperties(p,{href:{get:function(){return c.href},set:function(e){c.href=e,n(),o()},enumerable:!0,configurable:!0},origin:{get:function(){return"data:"===this.protocol.toLowerCase()?null:"origin"in c?c.origin:this.protocol+"//"+this.host},enumerable:!0,configurable:!0},protocol:{get:function(){return c.protocol},set:function(e){c.protocol=e},enumerable:!0,configurable:!0},username:{get:function(){return c.username},set:function(e){c.username=e},enumerable:!0,configurable:!0},password:{get:function(){return c.password},set:function(e){c.password=e},enumerable:!0,configurable:!0},host:{get:function(){var e={"http:":/:80$/,"https:":/:443$/,"ftp:":/:21$/}[c.protocol];return e?c.host.replace(e,""):c.host},set:function(e){c.host=e},enumerable:!0,configurable:!0},hostname:{get:function(){return c.hostname},set:function(e){c.hostname=e},enumerable:!0,configurable:!0},port:{get:function(){return c.port},set:function(e){c.port=e},enumerable:!0,configurable:!0},pathname:{get:function(){return"/"!==c.pathname.charAt(0)?"/"+c.pathname:c.pathname},set:function(e){c.pathname=e},enumerable:!0,configurable:!0},search:{get:function(){return c.search},set:function(e){c.search!==e&&(c.search=e,n(),o())},enumerable:!0,configurable:!0},searchParams:{get:function(){return s},enumerable:!0,configurable:!0},hash:{get:function(){return c.hash},set:function(e){c.hash=e,n()},enumerable:!0,configurable:!0},toString:{value:function(){return c.toString()},enumerable:!1,configurable:!0},valueOf:{value:function(){return c.valueOf()},enumerable:!1,configurable:!0}}),p}var u,f=e.URL;try{if(f){if("searchParams"in(u=new e.URL("http://example.com"))){var p=new l("http://example.com");if(p.search="a=1&b=2","http://example.com/?a=1&b=2"===p.href&&(p.search="","http://example.com/"===p.href))return}"href"in u||(u=t),u=t}}catch(e){}if(Object.defineProperties(a.prototype,{append:{value:function(e,t){this._list.push({name:e,value:t}),this._update_steps()},writable:!0,enumerable:!0,configurable:!0},delete:{value:function(e){for(var t=0;t1?arguments[1]:t;this._list.forEach((function(t){e.call(r,t.value,t.name)}))},writable:!0,enumerable:!0,configurable:!0},toString:{value:function(){return n(this._list)},writable:!0,enumerable:!1,configurable:!0},sort:{value:function(){for(var e=this.entries(),t=e.next(),r=[],n={};!t.done;){var o=t.value,i=o[0];r.push(i),Object.prototype.hasOwnProperty.call(n,i)||(n[i]=[]),n[i].push(o[1]),t=e.next()}r.sort();for(var a=0;a{o.resolve=e,o.reject=n}));window.a4e35ba2a938ba9d007689dbf3f46acbb9807869={configuration:window[e],promise:n};const r=()=>{const n=window[e];n&&n.internals?(n.inspector.trace&&(n.inspector.log=n.inspector.trace),o.resolve()):requestAnimationFrame(r)};r(); diff --git a/dsfr/static/dsfr/dist/patch/patch.nomodule.min.js b/dsfr/static/dsfr/dist/patch/patch.nomodule.min.js index 6f050708d..64c36aaf8 100644 --- a/dsfr/static/dsfr/dist/patch/patch.nomodule.min.js +++ b/dsfr/static/dsfr/dist/patch/patch.nomodule.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ !function(){"use strict";var e="dsfr",n={},r=new Promise((function(e,r){n.resolve=e,n.reject=r}));window.a4e35ba2a938ba9d007689dbf3f46acbb9807869={configuration:window[e],promise:r};var i=function(){var r=window[e];r&&r.internals?(r.inspector.trace&&(r.inspector.log=r.inspector.trace),n.resolve()):requestAnimationFrame(i)};i()}(); diff --git a/dsfr/static/dsfr/dist/scheme/scheme.min.css b/dsfr/static/dsfr/dist/scheme/scheme.min.css index b8eeb2473..8d4df0a4e 100644 --- a/dsfr/static/dsfr/dist/scheme/scheme.min.css +++ b/dsfr/static/dsfr/dist/scheme/scheme.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */:root[data-fr-theme=dark]{--grey-1000-50:#161616;--grey-1000-50-hover:#343434;--grey-1000-50-active:#474747;--grey-975-75:#1e1e1e;--grey-975-75-hover:#3f3f3f;--grey-975-75-active:#525252;--grey-950-100:#242424;--grey-950-100-hover:#474747;--grey-950-100-active:#5b5b5b;--grey-200-850:#cecece;--grey-200-850-hover:#a8a8a8;--grey-200-850-active:#939393;--grey-925-125:#2a2a2a;--grey-1000-75:#1e1e1e;--grey-1000-75-hover:#3f3f3f;--grey-1000-75-active:#525252;--grey-1000-100:#242424;--grey-1000-100-hover:#474747;--grey-1000-100-active:#5b5b5b;--grey-975-100:#242424;--grey-975-100-hover:#474747;--grey-975-100-active:#5b5b5b;--grey-975-125:#2a2a2a;--grey-975-125-hover:#4e4e4e;--grey-975-125-active:#636363;--grey-950-125:#2a2a2a;--grey-950-125-hover:#4e4e4e;--grey-950-125-active:#636363;--grey-950-150:#2f2f2f;--grey-950-150-hover:#545454;--grey-950-150-active:#696969;--grey-50-1000:#fff;--grey-425-625:#929292;--grey-625-425:#666;--grey-0-1000:#fff;--grey-900-175:#353535;--blue-france-975-75:#1b1b35;--blue-france-975-75-hover:#3a3a68;--blue-france-975-75-active:#4d4d83;--blue-france-950-100:#21213f;--blue-france-950-100-hover:#424275;--blue-france-950-100-active:#56568c;--blue-france-sun-113-625:#8585f6;--blue-france-sun-113-625-hover:#b1b1f9;--blue-france-sun-113-625-active:#c6c6fb;--blue-france-925-125:#272747;--blue-france-925-125-hover:#4a4a7d;--blue-france-925-125-active:#5e5e90;--blue-france-975-sun-113:#000091;--blue-france-main-525:#6a6af4;--blue-france-850-200:#313178;--red-marianne-975-75:#2b1919;--red-marianne-975-75-hover:#573737;--red-marianne-975-75-active:#704848;--red-marianne-950-100:#331f1f;--red-marianne-950-100-hover:#613f3f;--red-marianne-950-100-active:#7b5151;--red-marianne-425-625:#f95c5e;--red-marianne-425-625-hover:#fa9293;--red-marianne-425-625-active:#fbabac;--red-marianne-925-125:#3b2424;--red-marianne-925-125-hover:#6b4545;--red-marianne-925-125-active:#865757;--red-marianne-main-472:#e1000f;--red-marianne-850-200:#5e2a2b;--info-950-100:#1d2437;--info-950-100-hover:#3b4767;--info-950-100-active:#4c5b83;--info-425-625:#518fff;--info-425-625-hover:#98b4ff;--info-425-625-active:#b4c7ff;--info-975-75:#171d2e;--success-950-100:#19271d;--success-950-100-hover:#344c3b;--success-950-100-active:#44624d;--success-425-625:#27a658;--success-425-625-hover:#36d975;--success-425-625-active:#3df183;--success-975-75:#142117;--warning-950-100:#361e19;--warning-950-100-hover:#663d35;--warning-950-100-active:#824f44;--warning-425-625:#fc5d00;--warning-425-625-hover:#ff8c73;--warning-425-625-active:#ffa595;--warning-975-75:#2d1814;--error-950-100:#391c1c;--error-950-100-hover:#6c3a3a;--error-950-100-active:#894b4b;--error-425-625:#ff5655;--error-425-625-hover:#ff8c8c;--error-425-625-active:#ffa6a6;--error-975-75:#301717;--green-tilleul-verveine-975-75:#201e14;--green-tilleul-verveine-975-75-hover:#433f2e;--green-tilleul-verveine-975-75-active:#57533d;--green-tilleul-verveine-950-100:#272419;--green-tilleul-verveine-950-100-hover:#4c4734;--green-tilleul-verveine-950-100-active:#615b44;--green-tilleul-verveine-sun-418-moon-817:#d8c634;--green-tilleul-verveine-sun-418-moon-817-hover:#fee943;--green-tilleul-verveine-sun-418-moon-817-active:#fef1ab;--green-tilleul-verveine-925-125:#2d2a1d;--green-tilleul-verveine-925-125-hover:#534f39;--green-tilleul-verveine-925-125-active:#696349;--green-tilleul-verveine-main-707:#b7a73f;--green-tilleul-verveine-850-200:#3f3a20;--green-bourgeon-975-75:#182014;--green-bourgeon-975-75-hover:#35432e;--green-bourgeon-975-75-active:#46573d;--green-bourgeon-950-100:#1e2719;--green-bourgeon-950-100-hover:#3d4c34;--green-bourgeon-950-100-active:#4e6144;--green-bourgeon-sun-425-moon-759:#99c221;--green-bourgeon-sun-425-moon-759-hover:#baec2a;--green-bourgeon-sun-425-moon-759-active:#c9fd2e;--green-bourgeon-925-125:#232d1d;--green-bourgeon-925-125-hover:#435339;--green-bourgeon-925-125-active:#556949;--green-bourgeon-main-640:#68a532;--green-bourgeon-850-200:#2a401a;--green-emeraude-975-75:#142018;--green-emeraude-975-75-hover:#2e4335;--green-emeraude-975-75-active:#3d5846;--green-emeraude-950-100:#19271e;--green-emeraude-950-100-hover:#344c3d;--green-emeraude-950-100-active:#44624f;--green-emeraude-sun-425-moon-753:#34cb6a;--green-emeraude-sun-425-moon-753-hover:#42fb84;--green-emeraude-sun-425-moon-753-active:#80fda3;--green-emeraude-925-125:#1e2e23;--green-emeraude-925-125-hover:#3b5543;--green-emeraude-925-125-active:#4b6b55;--green-emeraude-main-632:#00a95f;--green-emeraude-850-200:#21402c;--green-menthe-975-75:#15201e;--green-menthe-975-75-hover:#30433f;--green-menthe-975-75-active:#3f5753;--green-menthe-950-100:#1a2624;--green-menthe-950-100-hover:#364b47;--green-menthe-950-100-active:#46605b;--green-menthe-sun-373-moon-652:#21ab8e;--green-menthe-sun-373-moon-652-hover:#2eddb8;--green-menthe-sun-373-moon-652-active:#34f4cc;--green-menthe-925-125:#1f2d2a;--green-menthe-925-125-hover:#3c534e;--green-menthe-925-125-active:#4d6963;--green-menthe-main-548:#009081;--green-menthe-850-200:#223f3a;--green-archipel-975-75:#152021;--green-archipel-975-75-hover:#2f4345;--green-archipel-975-75-active:#3f5759;--green-archipel-950-100:#1a2628;--green-archipel-950-100-hover:#364a4e;--green-archipel-950-100-active:#465f63;--green-archipel-sun-391-moon-716:#34bab5;--green-archipel-sun-391-moon-716-hover:#43e9e2;--green-archipel-sun-391-moon-716-active:#4cfdf6;--green-archipel-925-125:#1f2c2e;--green-archipel-925-125-hover:#3c5255;--green-archipel-925-125-active:#4d676b;--green-archipel-main-557:#009099;--green-archipel-850-200:#233e41;--blue-ecume-975-75:#171d2f;--blue-ecume-975-75-hover:#333e5e;--blue-ecume-975-75-active:#445179;--blue-ecume-950-100:#1d2437;--blue-ecume-950-100-hover:#3b4767;--blue-ecume-950-100-active:#4c5b83;--blue-ecume-sun-247-moon-675:#869ece;--blue-ecume-sun-247-moon-675-hover:#b8c5e2;--blue-ecume-sun-247-moon-675-active:#ced6ea;--blue-ecume-925-125:#222940;--blue-ecume-925-125-hover:#424d73;--blue-ecume-925-125-active:#536190;--blue-ecume-main-400:#465f9d;--blue-ecume-850-200:#273962;--blue-cumulus-975-75:#171e2b;--blue-cumulus-975-75-hover:#333f56;--blue-cumulus-975-75-active:#43536f;--blue-cumulus-950-100:#1c2433;--blue-cumulus-950-100-hover:#3a4761;--blue-cumulus-950-100-active:#4a5b7b;--blue-cumulus-sun-368-moon-732:#7ab1e8;--blue-cumulus-sun-368-moon-732-hover:#bad2f2;--blue-cumulus-sun-368-moon-732-active:#d2e2f6;--blue-cumulus-925-125:#212a3a;--blue-cumulus-925-125-hover:#404f69;--blue-cumulus-925-125-active:#516384;--blue-cumulus-main-526:#417dc4;--blue-cumulus-850-200:#263b58;--purple-glycine-975-75:#251a24;--purple-glycine-975-75-hover:#4c394a;--purple-glycine-975-75-active:#634a60;--purple-glycine-950-100:#2c202b;--purple-glycine-950-100-hover:#554053;--purple-glycine-950-100-active:#6c536a;--purple-glycine-sun-319-moon-630:#ce70cc;--purple-glycine-sun-319-moon-630-hover:#dfa4dd;--purple-glycine-sun-319-moon-630-active:#e7bbe6;--purple-glycine-925-125:#332632;--purple-glycine-925-125-hover:#5d485c;--purple-glycine-925-125-active:#755b73;--purple-glycine-main-494:#a558a0;--purple-glycine-850-200:#502e4d;--pink-macaron-975-75:#261b19;--pink-macaron-975-75-hover:#4e3a37;--pink-macaron-975-75-active:#654c48;--pink-macaron-950-100:#2e211f;--pink-macaron-950-100-hover:#58423f;--pink-macaron-950-100-active:#705551;--pink-macaron-sun-406-moon-833:#ffb7ae;--pink-macaron-sun-406-moon-833-hover:#ffe0dc;--pink-macaron-sun-406-moon-833-active:#fff0ee;--pink-macaron-925-125:#352724;--pink-macaron-925-125-hover:#614a45;--pink-macaron-925-125-active:#795d57;--pink-macaron-main-689:#e18b76;--pink-macaron-850-200:#52312a;--pink-tuile-975-75:#281b19;--pink-tuile-975-75-hover:#513a37;--pink-tuile-975-75-active:#694c48;--pink-tuile-950-100:#2f211f;--pink-tuile-950-100-hover:#5a423e;--pink-tuile-950-100-active:#725550;--pink-tuile-sun-425-moon-750:#ff9575;--pink-tuile-sun-425-moon-750-hover:#ffc4b7;--pink-tuile-sun-425-moon-750-active:#ffd8d0;--pink-tuile-925-125:#372624;--pink-tuile-925-125-hover:#644845;--pink-tuile-925-125-active:#7d5b57;--pink-tuile-main-556:#ce614a;--pink-tuile-850-200:#55302a;--yellow-tournesol-975-75:#221d11;--yellow-tournesol-975-75-hover:#473e29;--yellow-tournesol-975-75-active:#5c5136;--yellow-tournesol-950-100:#292416;--yellow-tournesol-950-100-hover:#4f472f;--yellow-tournesol-950-100-active:#655b3d;--yellow-tournesol-sun-407-moon-922:#ffe552;--yellow-tournesol-sun-407-moon-922-hover:#e1c700;--yellow-tournesol-sun-407-moon-922-active:#cab300;--yellow-tournesol-925-125:#302a1a;--yellow-tournesol-925-125-hover:#584e34;--yellow-tournesol-925-125-active:#6f6342;--yellow-tournesol-main-731:#c8aa39;--yellow-tournesol-850-200:#43391a;--yellow-moutarde-975-75:#231d14;--yellow-moutarde-975-75-hover:#483e2e;--yellow-moutarde-975-75-active:#5e513d;--yellow-moutarde-950-100:#2a2319;--yellow-moutarde-950-100-hover:#514534;--yellow-moutarde-950-100-active:#685944;--yellow-moutarde-sun-348-moon-860:#ffca00;--yellow-moutarde-sun-348-moon-860-hover:#cda200;--yellow-moutarde-sun-348-moon-860-active:#b28c00;--yellow-moutarde-925-125:#30291d;--yellow-moutarde-925-125-hover:#584d39;--yellow-moutarde-925-125-active:#6f6149;--yellow-moutarde-main-679:#c3992a;--yellow-moutarde-850-200:#453820;--orange-terre-battue-975-75:#281a16;--orange-terre-battue-975-75-hover:#513932;--orange-terre-battue-975-75-active:#6a4b42;--orange-terre-battue-950-100:#31201c;--orange-terre-battue-950-100-hover:#5d403a;--orange-terre-battue-950-100-active:#77534a;--orange-terre-battue-sun-370-moon-672:#ff732c;--orange-terre-battue-sun-370-moon-672-hover:#ffa48b;--orange-terre-battue-sun-370-moon-672-active:#ffbbab;--orange-terre-battue-925-125:#382621;--orange-terre-battue-925-125-hover:#664840;--orange-terre-battue-925-125-active:#7f5b51;--orange-terre-battue-main-645:#e4794a;--orange-terre-battue-850-200:#543125;--brown-cafe-creme-975-75:#211d16;--brown-cafe-creme-975-75-hover:#453e31;--brown-cafe-creme-975-75-active:#5a5141;--brown-cafe-creme-950-100:#28241c;--brown-cafe-creme-950-100-hover:#4e4739;--brown-cafe-creme-950-100-active:#635b4a;--brown-cafe-creme-sun-383-moon-885:#ecd7a2;--brown-cafe-creme-sun-383-moon-885-hover:#c5b386;--brown-cafe-creme-sun-383-moon-885-active:#af9f77;--brown-cafe-creme-925-125:#2e2a21;--brown-cafe-creme-925-125-hover:#554e3f;--brown-cafe-creme-925-125-active:#6b6351;--brown-cafe-creme-main-782:#d1b781;--brown-cafe-creme-850-200:#423925;--brown-caramel-975-75:#251c16;--brown-caramel-975-75-hover:#4c3c31;--brown-caramel-975-75-active:#624e41;--brown-caramel-950-100:#2c221c;--brown-caramel-950-100-hover:#554439;--brown-caramel-950-100-active:#6c574a;--brown-caramel-sun-425-moon-901:#fbd8ab;--brown-caramel-sun-425-moon-901-hover:#efb547;--brown-caramel-sun-425-moon-901-active:#d6a23e;--brown-caramel-925-125:#332821;--brown-caramel-925-125-hover:#5d4b40;--brown-caramel-925-125-active:#755f51;--brown-caramel-main-648:#c08c65;--brown-caramel-850-200:#4b3525;--brown-opera-975-75:#241c17;--brown-opera-975-75-hover:#4a3c33;--brown-opera-975-75-active:#604f44;--brown-opera-950-100:#2b221c;--brown-opera-950-100-hover:#53443a;--brown-opera-950-100-active:#6a574a;--brown-opera-sun-395-moon-820:#e6be92;--brown-opera-sun-395-moon-820-hover:#f2e2d3;--brown-opera-sun-395-moon-820-active:#f8f0e9;--brown-opera-925-125:#322821;--brown-opera-925-125-hover:#5c4b40;--brown-opera-925-125-active:#735f51;--brown-opera-main-680:#bd987a;--brown-opera-850-200:#493625;--beige-gris-galet-975-75:#211d19;--beige-gris-galet-975-75-hover:#453e37;--beige-gris-galet-975-75-active:#595148;--beige-gris-galet-950-100:#28231f;--beige-gris-galet-950-100-hover:#4e453f;--beige-gris-galet-950-100-active:#635950;--beige-gris-galet-sun-407-moon-821:#d0c3b7;--beige-gris-galet-sun-407-moon-821-hover:#eae5e1;--beige-gris-galet-sun-407-moon-821-active:#f4f2f0;--beige-gris-galet-925-125:#2e2924;--beige-gris-galet-925-125-hover:#554d45;--beige-gris-galet-925-125-active:#6b6157;--beige-gris-galet-main-702:#aea397;--beige-gris-galet-850-200:#433829}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/scheme/scheme.module.min.js b/dsfr/static/dsfr/dist/scheme/scheme.module.min.js index a22036aa9..ab1fef75b 100644 --- a/dsfr/static/dsfr/dist/scheme/scheme.module.min.js +++ b/dsfr/static/dsfr/dist/scheme/scheme.module.min.js @@ -1,2 +1,2 @@ -/*! DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ -const e=window.dsfr,t={SYSTEM:"system",LIGHT:"light",DARK:"dark"},s={THEME:e.internals.ns.attr("theme"),SCHEME:e.internals.ns.attr("scheme"),TRANSITION:e.internals.ns.attr("transition")},i={LIGHT:"light",DARK:"dark"},h={SCHEME:e.internals.ns.emission("scheme","scheme"),THEME:e.internals.ns.emission("scheme","theme"),ASK:e.internals.ns.emission("scheme","ask")},n={SCHEME:e.internals.ns.event("scheme"),THEME:e.internals.ns.event("theme")};class r extends e.core.Instance{constructor(){super(!1)}static get instanceClassName(){return"Scheme"}init(){this.changing=this.change.bind(this),this.hasAttribute(s.TRANSITION)&&(this.removeAttribute(s.TRANSITION),this.request(this.restoreTransition.bind(this)));const i=e.internals.support.supportLocalStorage()?localStorage.getItem("scheme"):"",n=this.getAttribute(s.SCHEME);switch(i){case t.DARK:case t.LIGHT:case t.SYSTEM:this.scheme=i;break;default:switch(n){case t.DARK:this.scheme=t.DARK;break;case t.LIGHT:this.scheme=t.LIGHT;break;default:this.scheme=t.SYSTEM}}this.addAscent(h.ASK,this.ask.bind(this)),this.addAscent(h.SCHEME,this.apply.bind(this))}get proxy(){const t=this,s={get scheme(){return t.scheme},set scheme(e){t.scheme=e}};return e.internals.property.completeAssign(super.proxy,s)}restoreTransition(){this.setAttribute(s.TRANSITION,"")}ask(){this.descend(h.SCHEME,this.scheme)}apply(e){this.scheme=e}get scheme(){return this._scheme}set scheme(r){if(this._scheme!==r){switch(this._scheme=r,r){case t.SYSTEM:this.listenPreferences();break;case t.DARK:this.unlistenPreferences(),this.theme=i.DARK;break;case t.LIGHT:this.unlistenPreferences(),this.theme=i.LIGHT;break;default:return void(this.scheme=t.SYSTEM)}this.descend(h.SCHEME,r),e.internals.support.supportLocalStorage()&&localStorage.setItem("scheme",r),this.setAttribute(s.SCHEME,r),this.dispatch(n.SCHEME,{scheme:this._scheme})}}get theme(){return this._theme}set theme(e){if(this._theme!==e)switch(e){case i.LIGHT:case i.DARK:this._theme=e,this.setAttribute(s.THEME,e),this.descend(h.THEME,e),this.dispatch(n.THEME,{theme:this._theme}),document.documentElement.style.colorScheme=e===i.DARK?"dark":""}}listenPreferences(){this.isListening||(this.isListening=!0,this.mediaQuery=window.matchMedia("(prefers-color-scheme: dark)"),this.mediaQuery.addEventListener&&this.mediaQuery.addEventListener("change",this.changing),this.change())}unlistenPreferences(){this.isListening&&(this.isListening=!1,this.mediaQuery.removeEventListener("change",this.changing),this.mediaQuery=null)}change(){this.isListening&&(this.theme=this.mediaQuery.matches?i.DARK:i.LIGHT)}mutate(e){e.indexOf(s.SCHEME)>-1&&(this.scheme=this.getAttribute(s.SCHEME)),e.indexOf(s.THEME)>-1&&(this.theme=this.getAttribute(s.THEME))}dispose(){this.unlistenPreferences()}}const c={SCHEME:`:root${e.internals.ns.attr.selector("theme")}, :root${e.internals.ns.attr.selector("scheme")}`,SWITCH_THEME:e.internals.ns.selector("switch-theme"),RADIO_BUTTONS:`input[name="${e.internals.ns("radios-theme")}"]`};e.scheme={Scheme:r,SchemeValue:t,SchemeSelector:c,SchemeEmission:h,SchemeTheme:i,SchemeEvent:n},e.internals.register(e.scheme.SchemeSelector.SCHEME,e.scheme.Scheme); +/*! DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */ +const e=window.dsfr,t={SYSTEM:"system",LIGHT:"light",DARK:"dark"},s={THEME:e.internals.ns.attr("theme"),SCHEME:e.internals.ns.attr("scheme"),TRANSITION:e.internals.ns.attr("transition")},i={LIGHT:"light",DARK:"dark"},h={SCHEME:e.internals.ns.emission("scheme","scheme"),THEME:e.internals.ns.emission("scheme","theme"),ASK:e.internals.ns.emission("scheme","ask")},n={SCHEME:e.internals.ns.event("scheme"),THEME:e.internals.ns.event("theme")};class r extends e.core.Instance{constructor(){super(!1)}static get instanceClassName(){return"Scheme"}init(){this.changing=this.change.bind(this),this.hasAttribute(s.TRANSITION)&&(this.removeAttribute(s.TRANSITION),this.request(this.restoreTransition.bind(this)));const i=e.internals.support.supportLocalStorage()?localStorage.getItem("scheme"):"",n=this.getAttribute(s.SCHEME);switch(i){case t.DARK:case t.LIGHT:case t.SYSTEM:this.scheme=i;break;default:switch(n){case t.DARK:this.scheme=t.DARK;break;case t.LIGHT:this.scheme=t.LIGHT;break;default:this.scheme=t.SYSTEM}}this.addAscent(h.ASK,this.ask.bind(this)),this.addAscent(h.SCHEME,this.apply.bind(this))}get proxy(){const t=this,s={get scheme(){return t.scheme},set scheme(e){t.scheme=e}};return e.internals.property.completeAssign(super.proxy,s)}restoreTransition(){this.setAttribute(s.TRANSITION,"")}ask(){this.descend(h.SCHEME,this.scheme)}apply(e){this.scheme=e}get scheme(){return this._scheme}set scheme(r){if(this._scheme!==r){switch(this._scheme=r,r){case t.SYSTEM:this.listenPreferences();break;case t.DARK:this.unlistenPreferences(),this.theme=i.DARK;break;case t.LIGHT:this.unlistenPreferences(),this.theme=i.LIGHT;break;default:return void(this.scheme=t.SYSTEM)}this.descend(h.SCHEME,r),e.internals.support.supportLocalStorage()&&localStorage.setItem("scheme",r),this.setAttribute(s.SCHEME,r),this.dispatch(n.SCHEME,{scheme:this._scheme},!1)}}get theme(){return this._theme}set theme(e){if(this._theme!==e)switch(e){case i.LIGHT:case i.DARK:this._theme=e,this.setAttribute(s.THEME,e),this.descend(h.THEME,e),this.dispatch(n.THEME,{theme:this._theme},!1),document.documentElement.style.colorScheme=e===i.DARK?"dark":""}}listenPreferences(){this.isListening||(this.isListening=!0,this.mediaQuery=window.matchMedia("(prefers-color-scheme: dark)"),this.mediaQuery.addEventListener&&this.mediaQuery.addEventListener("change",this.changing),this.change())}unlistenPreferences(){this.isListening&&(this.isListening=!1,this.mediaQuery.removeEventListener("change",this.changing),this.mediaQuery=null)}change(){this.isListening&&(this.theme=this.mediaQuery.matches?i.DARK:i.LIGHT)}mutate(e){e.indexOf(s.SCHEME)>-1&&(this.scheme=this.getAttribute(s.SCHEME)),e.indexOf(s.THEME)>-1&&(this.theme=this.getAttribute(s.THEME))}dispose(){this.unlistenPreferences()}}const c={SCHEME:`:root${e.internals.ns.attr.selector("theme")}, :root${e.internals.ns.attr.selector("scheme")}`,SWITCH_THEME:e.internals.ns.selector("switch-theme"),RADIO_BUTTONS:`input[name="${e.internals.ns("radios-theme")}"]`};e.scheme={Scheme:r,SchemeValue:t,SchemeSelector:c,SchemeEmission:h,SchemeTheme:i,SchemeEvent:n},e.internals.register(e.scheme.SchemeSelector.SCHEME,e.scheme.Scheme); diff --git a/dsfr/static/dsfr/dist/utility/colors/colors.legacy.min.css b/dsfr/static/dsfr/dist/utility/colors/colors.legacy.min.css index 075fa0270..1c6664bcf 100644 --- a/dsfr/static/dsfr/dist/utility/colors/colors.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/colors/colors.legacy.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/utility/colors/colors.main.min.css b/dsfr/static/dsfr/dist/utility/colors/colors.main.min.css index ff7131211..1e366a1f9 100644 --- a/dsfr/static/dsfr/dist/utility/colors/colors.main.min.css +++ b/dsfr/static/dsfr/dist/utility/colors/colors.main.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-border-default--grey{border:1px solid var(--border-default-grey)!important}.fr-border-default--blue-france{border:1px solid var(--border-default-blue-france)!important}.fr-border-default--red-marianne{border:1px solid var(--border-default-red-marianne)!important}.fr-border-default--green-tilleul-verveine{border:1px solid var(--border-default-green-tilleul-verveine)!important}.fr-border-default--green-bourgeon{border:1px solid var(--border-default-green-bourgeon)!important}.fr-border-default--green-emeraude{border:1px solid var(--border-default-green-emeraude)!important}.fr-border-default--green-menthe{border:1px solid var(--border-default-green-menthe)!important}.fr-border-default--green-archipel{border:1px solid var(--border-default-green-archipel)!important}.fr-border-default--blue-ecume{border:1px solid var(--border-default-blue-ecume)!important}.fr-border-default--blue-cumulus{border:1px solid var(--border-default-blue-cumulus)!important}.fr-border-default--purple-glycine{border:1px solid var(--border-default-purple-glycine)!important}.fr-border-default--pink-macaron{border:1px solid var(--border-default-pink-macaron)!important}.fr-border-default--pink-tuile{border:1px solid var(--border-default-pink-tuile)!important}.fr-border-default--yellow-tournesol{border:1px solid var(--border-default-yellow-tournesol)!important}.fr-border-default--yellow-moutarde{border:1px solid var(--border-default-yellow-moutarde)!important}.fr-border-default--orange-terre-battue{border:1px solid var(--border-default-orange-terre-battue)!important}.fr-border-default--brown-cafe-creme{border:1px solid var(--border-default-brown-cafe-creme)!important}.fr-border-default--brown-caramel{border:1px solid var(--border-default-brown-caramel)!important}.fr-border-default--brown-opera{border:1px solid var(--border-default-brown-opera)!important}.fr-border-default--beige-gris-galet{border:1px solid var(--border-default-beige-gris-galet)!important}.fr-border-plain--grey{border:1px solid var(--border-plain-grey)!important}.fr-border-plain--blue-france{border:1px solid var(--border-plain-blue-france)!important}.fr-border-plain--red-marianne{border:1px solid var(--border-plain-red-marianne)!important}.fr-border-plain--info{border:1px solid var(--border-plain-info)!important}.fr-border-plain--success{border:1px solid var(--border-plain-success)!important}.fr-border-plain--warning{border:1px solid var(--border-plain-warning)!important}.fr-border-plain--error{border:1px solid var(--border-plain-error)!important}.fr-border-plain--green-tilleul-verveine{border:1px solid var(--border-plain-green-tilleul-verveine)!important}.fr-border-plain--green-bourgeon{border:1px solid var(--border-plain-green-bourgeon)!important}.fr-border-plain--green-emeraude{border:1px solid var(--border-plain-green-emeraude)!important}.fr-border-plain--green-menthe{border:1px solid var(--border-plain-green-menthe)!important}.fr-border-plain--green-archipel{border:1px solid var(--border-plain-green-archipel)!important}.fr-border-plain--blue-ecume{border:1px solid var(--border-plain-blue-ecume)!important}.fr-border-plain--blue-cumulus{border:1px solid var(--border-plain-blue-cumulus)!important}.fr-border-plain--purple-glycine{border:1px solid var(--border-plain-purple-glycine)!important}.fr-border-plain--pink-macaron{border:1px solid var(--border-plain-pink-macaron)!important}.fr-border-plain--pink-tuile{border:1px solid var(--border-plain-pink-tuile)!important}.fr-border-plain--yellow-tournesol{border:1px solid var(--border-plain-yellow-tournesol)!important}.fr-border-plain--yellow-moutarde{border:1px solid var(--border-plain-yellow-moutarde)!important}.fr-border-plain--orange-terre-battue{border:1px solid var(--border-plain-orange-terre-battue)!important}.fr-border-plain--brown-cafe-creme{border:1px solid var(--border-plain-brown-cafe-creme)!important}.fr-border-plain--brown-caramel{border:1px solid var(--border-plain-brown-caramel)!important}.fr-border-plain--brown-opera{border:1px solid var(--border-plain-brown-opera)!important}.fr-border-plain--beige-gris-galet{border:1px solid var(--border-plain-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}.fr-border-width-0-5v{border-width:.125rem!important}.fr-border-width-1v{border-width:.25rem!important}.fr-border-width-2v{border-width:.5rem!important} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/utility/colors/colors.min.css b/dsfr/static/dsfr/dist/utility/colors/colors.min.css index 16c64e815..3c3cbaba2 100644 --- a/dsfr/static/dsfr/dist/utility/colors/colors.min.css +++ b/dsfr/static/dsfr/dist/utility/colors/colors.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}}@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-border-default--grey{border:1px solid var(--border-default-grey)!important}.fr-border-default--blue-france{border:1px solid var(--border-default-blue-france)!important}.fr-border-default--red-marianne{border:1px solid var(--border-default-red-marianne)!important}.fr-border-default--green-tilleul-verveine{border:1px solid var(--border-default-green-tilleul-verveine)!important}.fr-border-default--green-bourgeon{border:1px solid var(--border-default-green-bourgeon)!important}.fr-border-default--green-emeraude{border:1px solid var(--border-default-green-emeraude)!important}.fr-border-default--green-menthe{border:1px solid var(--border-default-green-menthe)!important}.fr-border-default--green-archipel{border:1px solid var(--border-default-green-archipel)!important}.fr-border-default--blue-ecume{border:1px solid var(--border-default-blue-ecume)!important}.fr-border-default--blue-cumulus{border:1px solid var(--border-default-blue-cumulus)!important}.fr-border-default--purple-glycine{border:1px solid var(--border-default-purple-glycine)!important}.fr-border-default--pink-macaron{border:1px solid var(--border-default-pink-macaron)!important}.fr-border-default--pink-tuile{border:1px solid var(--border-default-pink-tuile)!important}.fr-border-default--yellow-tournesol{border:1px solid var(--border-default-yellow-tournesol)!important}.fr-border-default--yellow-moutarde{border:1px solid var(--border-default-yellow-moutarde)!important}.fr-border-default--orange-terre-battue{border:1px solid var(--border-default-orange-terre-battue)!important}.fr-border-default--brown-cafe-creme{border:1px solid var(--border-default-brown-cafe-creme)!important}.fr-border-default--brown-caramel{border:1px solid var(--border-default-brown-caramel)!important}.fr-border-default--brown-opera{border:1px solid var(--border-default-brown-opera)!important}.fr-border-default--beige-gris-galet{border:1px solid var(--border-default-beige-gris-galet)!important}.fr-border-plain--grey{border:1px solid var(--border-plain-grey)!important}.fr-border-plain--blue-france{border:1px solid var(--border-plain-blue-france)!important}.fr-border-plain--red-marianne{border:1px solid var(--border-plain-red-marianne)!important}.fr-border-plain--info{border:1px solid var(--border-plain-info)!important}.fr-border-plain--success{border:1px solid var(--border-plain-success)!important}.fr-border-plain--warning{border:1px solid var(--border-plain-warning)!important}.fr-border-plain--error{border:1px solid var(--border-plain-error)!important}.fr-border-plain--green-tilleul-verveine{border:1px solid var(--border-plain-green-tilleul-verveine)!important}.fr-border-plain--green-bourgeon{border:1px solid var(--border-plain-green-bourgeon)!important}.fr-border-plain--green-emeraude{border:1px solid var(--border-plain-green-emeraude)!important}.fr-border-plain--green-menthe{border:1px solid var(--border-plain-green-menthe)!important}.fr-border-plain--green-archipel{border:1px solid var(--border-plain-green-archipel)!important}.fr-border-plain--blue-ecume{border:1px solid var(--border-plain-blue-ecume)!important}.fr-border-plain--blue-cumulus{border:1px solid var(--border-plain-blue-cumulus)!important}.fr-border-plain--purple-glycine{border:1px solid var(--border-plain-purple-glycine)!important}.fr-border-plain--pink-macaron{border:1px solid var(--border-plain-pink-macaron)!important}.fr-border-plain--pink-tuile{border:1px solid var(--border-plain-pink-tuile)!important}.fr-border-plain--yellow-tournesol{border:1px solid var(--border-plain-yellow-tournesol)!important}.fr-border-plain--yellow-moutarde{border:1px solid var(--border-plain-yellow-moutarde)!important}.fr-border-plain--orange-terre-battue{border:1px solid var(--border-plain-orange-terre-battue)!important}.fr-border-plain--brown-cafe-creme{border:1px solid var(--border-plain-brown-cafe-creme)!important}.fr-border-plain--brown-caramel{border:1px solid var(--border-plain-brown-caramel)!important}.fr-border-plain--brown-opera{border:1px solid var(--border-plain-brown-opera)!important}.fr-border-plain--beige-gris-galet{border:1px solid var(--border-plain-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}.fr-border-width-0-5v{border-width:.125rem!important}.fr-border-width-1v{border-width:.25rem!important}.fr-border-width-2v{border-width:.5rem!important}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}}@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/utility/colors/colors.print.min.css b/dsfr/static/dsfr/dist/utility/colors/colors.print.min.css index b0f27a446..bd4451886 100644 --- a/dsfr/static/dsfr/dist/utility/colors/colors.print.min.css +++ b/dsfr/static/dsfr/dist/utility/colors/colors.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.legacy.min.css index dcff8a1d4..a7cb49e95 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.main.min.css index 00c402b54..af9466ecb 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../../../icons/buildings/ancient-gate-fill.svg);mask-image:url(../../../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../../../icons/buildings/ancient-gate-line.svg);mask-image:url(../../../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../../../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../../../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../../../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../../../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../../../icons/buildings/bank-fill.svg);mask-image:url(../../../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../../../icons/buildings/bank-line.svg);mask-image:url(../../../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../../../icons/buildings/building-fill.svg);mask-image:url(../../../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../../../icons/buildings/building-line.svg);mask-image:url(../../../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../../../icons/buildings/community-fill.svg);mask-image:url(../../../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../../../icons/buildings/community-line.svg);mask-image:url(../../../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../../../icons/buildings/government-fill.svg);mask-image:url(../../../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../../../icons/buildings/government-line.svg);mask-image:url(../../../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../../../icons/buildings/home-4-fill.svg);mask-image:url(../../../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../../../icons/buildings/home-4-line.svg);mask-image:url(../../../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../../../icons/buildings/hospital-fill.svg);mask-image:url(../../../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../../../icons/buildings/hospital-line.svg);mask-image:url(../../../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../../../icons/buildings/hotel-fill.svg);mask-image:url(../../../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../../../icons/buildings/hotel-line.svg);mask-image:url(../../../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../../../icons/buildings/store-fill.svg);mask-image:url(../../../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../../../icons/buildings/store-line.svg);mask-image:url(../../../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../../../icons/buildings/home-4-fill.svg);mask-image:url(../../../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../../../icons/buildings/home-4-line.svg);mask-image:url(../../../icons/buildings/home-4-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.min.css index 49a029acf..215998814 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-buildings/icons-buildings.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../../../icons/buildings/ancient-gate-fill.svg);mask-image:url(../../../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../../../icons/buildings/ancient-gate-line.svg);mask-image:url(../../../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../../../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../../../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../../../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../../../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../../../icons/buildings/bank-fill.svg);mask-image:url(../../../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../../../icons/buildings/bank-line.svg);mask-image:url(../../../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../../../icons/buildings/building-fill.svg);mask-image:url(../../../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../../../icons/buildings/building-line.svg);mask-image:url(../../../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../../../icons/buildings/community-fill.svg);mask-image:url(../../../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../../../icons/buildings/community-line.svg);mask-image:url(../../../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../../../icons/buildings/government-fill.svg);mask-image:url(../../../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../../../icons/buildings/government-line.svg);mask-image:url(../../../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../../../icons/buildings/home-4-fill.svg);mask-image:url(../../../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../../../icons/buildings/home-4-line.svg);mask-image:url(../../../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../../../icons/buildings/hospital-fill.svg);mask-image:url(../../../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../../../icons/buildings/hospital-line.svg);mask-image:url(../../../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../../../icons/buildings/hotel-fill.svg);mask-image:url(../../../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../../../icons/buildings/hotel-line.svg);mask-image:url(../../../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../../../icons/buildings/store-fill.svg);mask-image:url(../../../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../../../icons/buildings/store-line.svg);mask-image:url(../../../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../../../icons/buildings/home-4-fill.svg);mask-image:url(../../../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../../../icons/buildings/home-4-line.svg);mask-image:url(../../../icons/buildings/home-4-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.legacy.min.css index 7d7bf3e68..b544e402e 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.main.min.css index e55adce19..7c1b46552 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../../../icons/business/archive-fill.svg);mask-image:url(../../../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../../../icons/business/archive-line.svg);mask-image:url(../../../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../../../icons/business/attachment-fill.svg);mask-image:url(../../../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../../../icons/business/attachment-line.svg);mask-image:url(../../../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../../../icons/business/award-fill.svg);mask-image:url(../../../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../../../icons/business/award-line.svg);mask-image:url(../../../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../../../icons/business/bar-chart-box-fill.svg);mask-image:url(../../../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../../../icons/business/bar-chart-box-line.svg);mask-image:url(../../../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../../../icons/business/bookmark-fill.svg);mask-image:url(../../../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../../../icons/business/bookmark-line.svg);mask-image:url(../../../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../../../icons/business/briefcase-fill.svg);mask-image:url(../../../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../../../icons/business/briefcase-line.svg);mask-image:url(../../../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-2-fill.svg);mask-image:url(../../../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../../../icons/business/calendar-2-line.svg);mask-image:url(../../../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-event-fill.svg);mask-image:url(../../../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../../../icons/business/calendar-event-line.svg);mask-image:url(../../../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-fill.svg);mask-image:url(../../../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../../../icons/business/calendar-line.svg);mask-image:url(../../../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../../../icons/business/cloud-fill.svg);mask-image:url(../../../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../../../icons/business/cloud-line.svg);mask-image:url(../../../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../../../icons/business/copyright-fill.svg);mask-image:url(../../../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../../../icons/business/copyright-line.svg);mask-image:url(../../../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../../../icons/business/customer-service-fill.svg);mask-image:url(../../../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../../../icons/business/customer-service-line.svg);mask-image:url(../../../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../../../icons/business/flag-fill.svg);mask-image:url(../../../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../../../icons/business/flag-line.svg);mask-image:url(../../../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../../../icons/business/global-fill.svg);mask-image:url(../../../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../../../icons/business/global-line.svg);mask-image:url(../../../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../../../icons/business/line-chart-fill.svg);mask-image:url(../../../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../../../icons/business/line-chart-line.svg);mask-image:url(../../../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../../../icons/business/links-fill.svg);mask-image:url(../../../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../../../icons/business/links-line.svg);mask-image:url(../../../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../../../icons/business/mail-fill.svg);mask-image:url(../../../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../../../icons/business/mail-line.svg);mask-image:url(../../../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../../../icons/business/mail-open-fill.svg);mask-image:url(../../../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../../../icons/business/mail-open-line.svg);mask-image:url(../../../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../../../icons/business/medal-fill.svg);mask-image:url(../../../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../../../icons/business/medal-line.svg);mask-image:url(../../../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../../../icons/business/pie-chart-2-fill.svg);mask-image:url(../../../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../../../icons/business/pie-chart-2-line.svg);mask-image:url(../../../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../../../icons/business/pie-chart-box-fill.svg);mask-image:url(../../../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../../../icons/business/pie-chart-box-line.svg);mask-image:url(../../../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../../../icons/business/printer-fill.svg);mask-image:url(../../../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../../../icons/business/printer-line.svg);mask-image:url(../../../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../../../icons/business/profil-fill.svg);mask-image:url(../../../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../../../icons/business/profil-line.svg);mask-image:url(../../../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../../../icons/business/projector-2-fill.svg);mask-image:url(../../../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../../../icons/business/projector-2-line.svg);mask-image:url(../../../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../../../icons/business/send-plane-fill.svg);mask-image:url(../../../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../../../icons/business/send-plane-line.svg);mask-image:url(../../../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../../../icons/business/slideshow-fill.svg);mask-image:url(../../../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../../../icons/business/slideshow-line.svg);mask-image:url(../../../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../../../icons/business/window-fill.svg);mask-image:url(../../../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../../../icons/business/window-line.svg);mask-image:url(../../../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../../../icons/business/attachment-fill.svg);mask-image:url(../../../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../../../icons/business/attachment-line.svg);mask-image:url(../../../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-fill.svg);mask-image:url(../../../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../../../icons/business/calendar-line.svg);mask-image:url(../../../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../../../icons/business/line-chart-fill.svg);mask-image:url(../../../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../../../icons/business/line-chart-line.svg);mask-image:url(../../../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../../../icons/business/links-fill.svg);mask-image:url(../../../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../../../icons/business/mail-fill.svg);mask-image:url(../../../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../../../icons/business/mail-line.svg);mask-image:url(../../../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../../../icons/business/printer-fill.svg);mask-image:url(../../../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../../../icons/business/printer-line.svg);mask-image:url(../../../icons/business/printer-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.min.css index c029ad4fe..bbc8a95cc 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-business/icons-business.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../../../icons/business/archive-fill.svg);mask-image:url(../../../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../../../icons/business/archive-line.svg);mask-image:url(../../../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../../../icons/business/attachment-fill.svg);mask-image:url(../../../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../../../icons/business/attachment-line.svg);mask-image:url(../../../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../../../icons/business/award-fill.svg);mask-image:url(../../../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../../../icons/business/award-line.svg);mask-image:url(../../../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../../../icons/business/bar-chart-box-fill.svg);mask-image:url(../../../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../../../icons/business/bar-chart-box-line.svg);mask-image:url(../../../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../../../icons/business/bookmark-fill.svg);mask-image:url(../../../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../../../icons/business/bookmark-line.svg);mask-image:url(../../../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../../../icons/business/briefcase-fill.svg);mask-image:url(../../../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../../../icons/business/briefcase-line.svg);mask-image:url(../../../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-2-fill.svg);mask-image:url(../../../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../../../icons/business/calendar-2-line.svg);mask-image:url(../../../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-event-fill.svg);mask-image:url(../../../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../../../icons/business/calendar-event-line.svg);mask-image:url(../../../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-fill.svg);mask-image:url(../../../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../../../icons/business/calendar-line.svg);mask-image:url(../../../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../../../icons/business/cloud-fill.svg);mask-image:url(../../../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../../../icons/business/cloud-line.svg);mask-image:url(../../../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../../../icons/business/copyright-fill.svg);mask-image:url(../../../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../../../icons/business/copyright-line.svg);mask-image:url(../../../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../../../icons/business/customer-service-fill.svg);mask-image:url(../../../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../../../icons/business/customer-service-line.svg);mask-image:url(../../../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../../../icons/business/flag-fill.svg);mask-image:url(../../../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../../../icons/business/flag-line.svg);mask-image:url(../../../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../../../icons/business/global-fill.svg);mask-image:url(../../../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../../../icons/business/global-line.svg);mask-image:url(../../../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../../../icons/business/line-chart-fill.svg);mask-image:url(../../../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../../../icons/business/line-chart-line.svg);mask-image:url(../../../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../../../icons/business/links-fill.svg);mask-image:url(../../../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../../../icons/business/links-line.svg);mask-image:url(../../../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../../../icons/business/mail-fill.svg);mask-image:url(../../../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../../../icons/business/mail-line.svg);mask-image:url(../../../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../../../icons/business/mail-open-fill.svg);mask-image:url(../../../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../../../icons/business/mail-open-line.svg);mask-image:url(../../../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../../../icons/business/medal-fill.svg);mask-image:url(../../../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../../../icons/business/medal-line.svg);mask-image:url(../../../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../../../icons/business/pie-chart-2-fill.svg);mask-image:url(../../../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../../../icons/business/pie-chart-2-line.svg);mask-image:url(../../../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../../../icons/business/pie-chart-box-fill.svg);mask-image:url(../../../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../../../icons/business/pie-chart-box-line.svg);mask-image:url(../../../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../../../icons/business/printer-fill.svg);mask-image:url(../../../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../../../icons/business/printer-line.svg);mask-image:url(../../../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../../../icons/business/profil-fill.svg);mask-image:url(../../../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../../../icons/business/profil-line.svg);mask-image:url(../../../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../../../icons/business/projector-2-fill.svg);mask-image:url(../../../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../../../icons/business/projector-2-line.svg);mask-image:url(../../../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../../../icons/business/send-plane-fill.svg);mask-image:url(../../../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../../../icons/business/send-plane-line.svg);mask-image:url(../../../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../../../icons/business/slideshow-fill.svg);mask-image:url(../../../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../../../icons/business/slideshow-line.svg);mask-image:url(../../../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../../../icons/business/window-fill.svg);mask-image:url(../../../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../../../icons/business/window-line.svg);mask-image:url(../../../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../../../icons/business/attachment-fill.svg);mask-image:url(../../../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../../../icons/business/attachment-line.svg);mask-image:url(../../../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../../../icons/business/calendar-fill.svg);mask-image:url(../../../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../../../icons/business/calendar-line.svg);mask-image:url(../../../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../../../icons/business/line-chart-fill.svg);mask-image:url(../../../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../../../icons/business/line-chart-line.svg);mask-image:url(../../../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../../../icons/business/links-fill.svg);mask-image:url(../../../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../../../icons/business/mail-fill.svg);mask-image:url(../../../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../../../icons/business/mail-line.svg);mask-image:url(../../../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../../../icons/business/printer-fill.svg);mask-image:url(../../../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../../../icons/business/printer-line.svg);mask-image:url(../../../icons/business/printer-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.legacy.min.css index 7a6efd2ea..6e2366830 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.main.min.css index ad79fe804..5251817eb 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-2-fill.svg);mask-image:url(../../../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../../../icons/communication/chat-2-line.svg);mask-image:url(../../../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-3-fill.svg);mask-image:url(../../../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../../../icons/communication/chat-3-line.svg);mask-image:url(../../../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-check-fill.svg);mask-image:url(../../../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../../../icons/communication/chat-check-line.svg);mask-image:url(../../../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-delete-fill.svg);mask-image:url(../../../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../../../icons/communication/chat-delete-line.svg);mask-image:url(../../../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-poll-fill.svg);mask-image:url(../../../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../../../icons/communication/chat-poll-line.svg);mask-image:url(../../../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../../../icons/communication/discuss-fill.svg);mask-image:url(../../../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../../../icons/communication/discuss-line.svg);mask-image:url(../../../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../../../icons/communication/feedback-fill.svg);mask-image:url(../../../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../../../icons/communication/feedback-line.svg);mask-image:url(../../../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../../../icons/communication/message-2-fill.svg);mask-image:url(../../../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../../../icons/communication/message-2-line.svg);mask-image:url(../../../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../../../icons/communication/question-answer-fill.svg);mask-image:url(../../../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../../../icons/communication/question-answer-line.svg);mask-image:url(../../../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../../../icons/communication/questionnaire-fill.svg);mask-image:url(../../../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../../../icons/communication/questionnaire-line.svg);mask-image:url(../../../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../../../icons/communication/video-chat-fill.svg);mask-image:url(../../../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../../../icons/communication/video-chat-line.svg);mask-image:url(../../../icons/communication/video-chat-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.min.css index 375aaa9d4..97bb8097e 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-communication/icons-communication.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-2-fill.svg);mask-image:url(../../../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../../../icons/communication/chat-2-line.svg);mask-image:url(../../../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-3-fill.svg);mask-image:url(../../../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../../../icons/communication/chat-3-line.svg);mask-image:url(../../../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-check-fill.svg);mask-image:url(../../../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../../../icons/communication/chat-check-line.svg);mask-image:url(../../../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-delete-fill.svg);mask-image:url(../../../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../../../icons/communication/chat-delete-line.svg);mask-image:url(../../../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../../../icons/communication/chat-poll-fill.svg);mask-image:url(../../../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../../../icons/communication/chat-poll-line.svg);mask-image:url(../../../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../../../icons/communication/discuss-fill.svg);mask-image:url(../../../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../../../icons/communication/discuss-line.svg);mask-image:url(../../../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../../../icons/communication/feedback-fill.svg);mask-image:url(../../../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../../../icons/communication/feedback-line.svg);mask-image:url(../../../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../../../icons/communication/message-2-fill.svg);mask-image:url(../../../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../../../icons/communication/message-2-line.svg);mask-image:url(../../../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../../../icons/communication/question-answer-fill.svg);mask-image:url(../../../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../../../icons/communication/question-answer-line.svg);mask-image:url(../../../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../../../icons/communication/questionnaire-fill.svg);mask-image:url(../../../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../../../icons/communication/questionnaire-line.svg);mask-image:url(../../../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../../../icons/communication/video-chat-fill.svg);mask-image:url(../../../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../../../icons/communication/video-chat-line.svg);mask-image:url(../../../icons/communication/video-chat-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.legacy.min.css index 2e00ba669..306729664 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.main.min.css index 07c5b5703..11339d24a 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../../../icons/design/ball-pen-fill.svg);mask-image:url(../../../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../../../icons/design/ball-pen-line.svg);mask-image:url(../../../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../../../icons/design/brush-3-fill.svg);mask-image:url(../../../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../../../icons/design/brush-3-line.svg);mask-image:url(../../../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../../../icons/design/brush-fill.svg);mask-image:url(../../../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../../../icons/design/brush-line.svg);mask-image:url(../../../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../../../icons/design/contrast-fill.svg);mask-image:url(../../../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../../../icons/design/contrast-line.svg);mask-image:url(../../../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../../../icons/design/crop-fill.svg);mask-image:url(../../../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../../../icons/design/crop-line.svg);mask-image:url(../../../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../../../icons/design/drag-move-2-fill.svg);mask-image:url(../../../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../../../icons/design/drag-move-2-line.svg);mask-image:url(../../../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../../../icons/design/drop-fill.svg);mask-image:url(../../../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../../../icons/design/drop-line.svg);mask-image:url(../../../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../../../icons/design/edit-box-fill.svg);mask-image:url(../../../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../../../icons/design/edit-box-line.svg);mask-image:url(../../../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../../../icons/design/edit-fill.svg);mask-image:url(../../../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../../../icons/design/edit-line.svg);mask-image:url(../../../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../../../icons/design/ink-bottle-fill.svg);mask-image:url(../../../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../../../icons/design/ink-bottle-line.svg);mask-image:url(../../../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../../../icons/design/layout-grid-fill.svg);mask-image:url(../../../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../../../icons/design/layout-grid-line.svg);mask-image:url(../../../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../../../icons/design/mark-pen-fill.svg);mask-image:url(../../../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../../../icons/design/mark-pen-line.svg);mask-image:url(../../../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../../../icons/design/paint-brush-fill.svg);mask-image:url(../../../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../../../icons/design/paint-brush-line.svg);mask-image:url(../../../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../../../icons/design/paint-fill.svg);mask-image:url(../../../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../../../icons/design/paint-line.svg);mask-image:url(../../../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../../../icons/design/palette-fill.svg);mask-image:url(../../../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../../../icons/design/palette-line.svg);mask-image:url(../../../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../../../icons/design/pantone-fill.svg);mask-image:url(../../../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../../../icons/design/pantone-line.svg);mask-image:url(../../../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../../../icons/design/pen-nib-fill.svg);mask-image:url(../../../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../../../icons/design/pen-nib-line.svg);mask-image:url(../../../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../../../icons/design/pencil-fill.svg);mask-image:url(../../../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../../../icons/design/pencil-line.svg);mask-image:url(../../../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../../../icons/design/pencil-ruler-fill.svg);mask-image:url(../../../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../../../icons/design/pencil-ruler-line.svg);mask-image:url(../../../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../../../icons/design/shapes-fill.svg);mask-image:url(../../../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../../../icons/design/shapes-line.svg);mask-image:url(../../../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../../../icons/design/sip-fill.svg);mask-image:url(../../../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../../../icons/design/sip-line.svg);mask-image:url(../../../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../../../icons/design/table-fill.svg);mask-image:url(../../../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../../../icons/design/table-line.svg);mask-image:url(../../../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../../../icons/design/edit-fill.svg);mask-image:url(../../../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../../../icons/design/edit-line.svg);mask-image:url(../../../icons/design/edit-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.min.css index d84188f17..744e84e81 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-design/icons-design.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../../../icons/design/ball-pen-fill.svg);mask-image:url(../../../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../../../icons/design/ball-pen-line.svg);mask-image:url(../../../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../../../icons/design/brush-3-fill.svg);mask-image:url(../../../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../../../icons/design/brush-3-line.svg);mask-image:url(../../../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../../../icons/design/brush-fill.svg);mask-image:url(../../../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../../../icons/design/brush-line.svg);mask-image:url(../../../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../../../icons/design/contrast-fill.svg);mask-image:url(../../../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../../../icons/design/contrast-line.svg);mask-image:url(../../../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../../../icons/design/crop-fill.svg);mask-image:url(../../../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../../../icons/design/crop-line.svg);mask-image:url(../../../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../../../icons/design/drag-move-2-fill.svg);mask-image:url(../../../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../../../icons/design/drag-move-2-line.svg);mask-image:url(../../../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../../../icons/design/drop-fill.svg);mask-image:url(../../../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../../../icons/design/drop-line.svg);mask-image:url(../../../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../../../icons/design/edit-box-fill.svg);mask-image:url(../../../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../../../icons/design/edit-box-line.svg);mask-image:url(../../../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../../../icons/design/edit-fill.svg);mask-image:url(../../../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../../../icons/design/edit-line.svg);mask-image:url(../../../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../../../icons/design/ink-bottle-fill.svg);mask-image:url(../../../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../../../icons/design/ink-bottle-line.svg);mask-image:url(../../../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../../../icons/design/layout-grid-fill.svg);mask-image:url(../../../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../../../icons/design/layout-grid-line.svg);mask-image:url(../../../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../../../icons/design/mark-pen-fill.svg);mask-image:url(../../../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../../../icons/design/mark-pen-line.svg);mask-image:url(../../../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../../../icons/design/paint-brush-fill.svg);mask-image:url(../../../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../../../icons/design/paint-brush-line.svg);mask-image:url(../../../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../../../icons/design/paint-fill.svg);mask-image:url(../../../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../../../icons/design/paint-line.svg);mask-image:url(../../../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../../../icons/design/palette-fill.svg);mask-image:url(../../../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../../../icons/design/palette-line.svg);mask-image:url(../../../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../../../icons/design/pantone-fill.svg);mask-image:url(../../../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../../../icons/design/pantone-line.svg);mask-image:url(../../../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../../../icons/design/pen-nib-fill.svg);mask-image:url(../../../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../../../icons/design/pen-nib-line.svg);mask-image:url(../../../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../../../icons/design/pencil-fill.svg);mask-image:url(../../../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../../../icons/design/pencil-line.svg);mask-image:url(../../../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../../../icons/design/pencil-ruler-fill.svg);mask-image:url(../../../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../../../icons/design/pencil-ruler-line.svg);mask-image:url(../../../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../../../icons/design/shapes-fill.svg);mask-image:url(../../../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../../../icons/design/shapes-line.svg);mask-image:url(../../../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../../../icons/design/sip-fill.svg);mask-image:url(../../../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../../../icons/design/sip-line.svg);mask-image:url(../../../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../../../icons/design/table-fill.svg);mask-image:url(../../../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../../../icons/design/table-line.svg);mask-image:url(../../../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../../../icons/design/edit-fill.svg);mask-image:url(../../../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../../../icons/design/edit-line.svg);mask-image:url(../../../icons/design/edit-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.legacy.min.css index f915b5503..be3fae06b 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.main.min.css index c702fde8f..d5cd7af42 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../../../icons/development/bug-fill.svg);mask-image:url(../../../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../../../icons/development/bug-line.svg);mask-image:url(../../../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../../../icons/development/code-box-fill.svg);mask-image:url(../../../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../../../icons/development/code-box-line.svg);mask-image:url(../../../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../../../icons/development/code-s-slash-line.svg);mask-image:url(../../../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../../../icons/development/cursor-fill.svg);mask-image:url(../../../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../../../icons/development/cursor-line.svg);mask-image:url(../../../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../../../icons/development/git-branch-fill.svg);mask-image:url(../../../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../../../icons/development/git-branch-line.svg);mask-image:url(../../../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../../../icons/development/git-commit-fill.svg);mask-image:url(../../../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../../../icons/development/git-commit-line.svg);mask-image:url(../../../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../../../icons/development/git-merge-fill.svg);mask-image:url(../../../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../../../icons/development/git-merge-line.svg);mask-image:url(../../../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../../../icons/development/git-pull-request-fill.svg);mask-image:url(../../../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../../../icons/development/git-pull-request-line.svg);mask-image:url(../../../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../../../icons/development/git-repository-commits-fill.svg);mask-image:url(../../../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../../../icons/development/git-repository-commits-line.svg);mask-image:url(../../../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../../../icons/development/git-repository-fill.svg);mask-image:url(../../../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../../../icons/development/git-repository-line.svg);mask-image:url(../../../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../../../icons/development/git-repository-private-fill.svg);mask-image:url(../../../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../../../icons/development/git-repository-private-line.svg);mask-image:url(../../../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../../../icons/development/terminal-box-fill.svg);mask-image:url(../../../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../../../icons/development/terminal-box-line.svg);mask-image:url(../../../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../../../icons/development/terminal-line.svg);mask-image:url(../../../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../../../icons/development/terminal-window-fill.svg);mask-image:url(../../../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../../../icons/development/terminal-window-line.svg);mask-image:url(../../../icons/development/terminal-window-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.min.css index 6370781c7..55adbe71e 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-development/icons-development.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../../../icons/development/bug-fill.svg);mask-image:url(../../../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../../../icons/development/bug-line.svg);mask-image:url(../../../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../../../icons/development/code-box-fill.svg);mask-image:url(../../../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../../../icons/development/code-box-line.svg);mask-image:url(../../../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../../../icons/development/code-s-slash-line.svg);mask-image:url(../../../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../../../icons/development/cursor-fill.svg);mask-image:url(../../../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../../../icons/development/cursor-line.svg);mask-image:url(../../../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../../../icons/development/git-branch-fill.svg);mask-image:url(../../../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../../../icons/development/git-branch-line.svg);mask-image:url(../../../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../../../icons/development/git-commit-fill.svg);mask-image:url(../../../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../../../icons/development/git-commit-line.svg);mask-image:url(../../../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../../../icons/development/git-merge-fill.svg);mask-image:url(../../../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../../../icons/development/git-merge-line.svg);mask-image:url(../../../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../../../icons/development/git-pull-request-fill.svg);mask-image:url(../../../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../../../icons/development/git-pull-request-line.svg);mask-image:url(../../../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../../../icons/development/git-repository-commits-fill.svg);mask-image:url(../../../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../../../icons/development/git-repository-commits-line.svg);mask-image:url(../../../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../../../icons/development/git-repository-fill.svg);mask-image:url(../../../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../../../icons/development/git-repository-line.svg);mask-image:url(../../../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../../../icons/development/git-repository-private-fill.svg);mask-image:url(../../../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../../../icons/development/git-repository-private-line.svg);mask-image:url(../../../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../../../icons/development/terminal-box-fill.svg);mask-image:url(../../../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../../../icons/development/terminal-box-line.svg);mask-image:url(../../../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../../../icons/development/terminal-line.svg);mask-image:url(../../../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../../../icons/development/terminal-window-fill.svg);mask-image:url(../../../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../../../icons/development/terminal-window-line.svg);mask-image:url(../../../icons/development/terminal-window-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.legacy.min.css index cd541cfc9..734924561 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.main.min.css index 2014b0822..f96d843bb 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../../../icons/device/bluetooth-fill.svg);mask-image:url(../../../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../../../icons/device/bluetooth-line.svg);mask-image:url(../../../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../../../icons/device/computer-fill.svg);mask-image:url(../../../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../../../icons/device/computer-line.svg);mask-image:url(../../../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../../../icons/device/dashboard-3-fill.svg);mask-image:url(../../../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../../../icons/device/dashboard-3-line.svg);mask-image:url(../../../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../../../icons/device/database-fill.svg);mask-image:url(../../../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../../../icons/device/database-line.svg);mask-image:url(../../../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../../../icons/device/device-fill.svg);mask-image:url(../../../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../../../icons/device/device-line.svg);mask-image:url(../../../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../../../icons/device/hard-drive-2-fill.svg);mask-image:url(../../../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../../../icons/device/hard-drive-2-line.svg);mask-image:url(../../../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../../../icons/device/mac-fill.svg);mask-image:url(../../../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../../../icons/device/mac-line.svg);mask-image:url(../../../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../../../icons/device/phone-fill.svg);mask-image:url(../../../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../../../icons/device/phone-line.svg);mask-image:url(../../../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../../../icons/device/qr-code-fill.svg);mask-image:url(../../../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../../../icons/device/qr-code-line.svg);mask-image:url(../../../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../../../icons/device/rss-fill.svg);mask-image:url(../../../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../../../icons/device/rss-line.svg);mask-image:url(../../../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../../../icons/device/save-3-fill.svg);mask-image:url(../../../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../../../icons/device/save-3-line.svg);mask-image:url(../../../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../../../icons/device/save-fill.svg);mask-image:url(../../../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../../../icons/device/save-line.svg);mask-image:url(../../../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../../../icons/device/server-fill.svg);mask-image:url(../../../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../../../icons/device/server-line.svg);mask-image:url(../../../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../../../icons/device/smartphone-fill.svg);mask-image:url(../../../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../../../icons/device/smartphone-line.svg);mask-image:url(../../../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../../../icons/device/tablet-fill.svg);mask-image:url(../../../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../../../icons/device/tablet-line.svg);mask-image:url(../../../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../../../icons/device/tv-fill.svg);mask-image:url(../../../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../../../icons/device/tv-line.svg);mask-image:url(../../../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../../../icons/device/wifi-fill.svg);mask-image:url(../../../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../../../icons/device/wifi-line.svg);mask-image:url(../../../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../../../icons/device/phone-fill.svg);mask-image:url(../../../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../../../icons/device/phone-line.svg);mask-image:url(../../../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../../../icons/device/rss-fill.svg);mask-image:url(../../../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../../../icons/device/rss-line.svg);mask-image:url(../../../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../../../icons/device/save-fill.svg);mask-image:url(../../../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../../../icons/device/save-line.svg);mask-image:url(../../../icons/device/save-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.min.css index d5791655f..bfc836570 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-device/icons-device.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../../../icons/device/bluetooth-fill.svg);mask-image:url(../../../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../../../icons/device/bluetooth-line.svg);mask-image:url(../../../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../../../icons/device/computer-fill.svg);mask-image:url(../../../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../../../icons/device/computer-line.svg);mask-image:url(../../../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../../../icons/device/dashboard-3-fill.svg);mask-image:url(../../../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../../../icons/device/dashboard-3-line.svg);mask-image:url(../../../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../../../icons/device/database-fill.svg);mask-image:url(../../../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../../../icons/device/database-line.svg);mask-image:url(../../../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../../../icons/device/device-fill.svg);mask-image:url(../../../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../../../icons/device/device-line.svg);mask-image:url(../../../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../../../icons/device/hard-drive-2-fill.svg);mask-image:url(../../../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../../../icons/device/hard-drive-2-line.svg);mask-image:url(../../../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../../../icons/device/mac-fill.svg);mask-image:url(../../../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../../../icons/device/mac-line.svg);mask-image:url(../../../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../../../icons/device/phone-fill.svg);mask-image:url(../../../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../../../icons/device/phone-line.svg);mask-image:url(../../../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../../../icons/device/qr-code-fill.svg);mask-image:url(../../../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../../../icons/device/qr-code-line.svg);mask-image:url(../../../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../../../icons/device/rss-fill.svg);mask-image:url(../../../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../../../icons/device/rss-line.svg);mask-image:url(../../../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../../../icons/device/save-3-fill.svg);mask-image:url(../../../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../../../icons/device/save-3-line.svg);mask-image:url(../../../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../../../icons/device/save-fill.svg);mask-image:url(../../../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../../../icons/device/save-line.svg);mask-image:url(../../../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../../../icons/device/server-fill.svg);mask-image:url(../../../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../../../icons/device/server-line.svg);mask-image:url(../../../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../../../icons/device/smartphone-fill.svg);mask-image:url(../../../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../../../icons/device/smartphone-line.svg);mask-image:url(../../../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../../../icons/device/tablet-fill.svg);mask-image:url(../../../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../../../icons/device/tablet-line.svg);mask-image:url(../../../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../../../icons/device/tv-fill.svg);mask-image:url(../../../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../../../icons/device/tv-line.svg);mask-image:url(../../../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../../../icons/device/wifi-fill.svg);mask-image:url(../../../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../../../icons/device/wifi-line.svg);mask-image:url(../../../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../../../icons/device/phone-fill.svg);mask-image:url(../../../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../../../icons/device/phone-line.svg);mask-image:url(../../../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../../../icons/device/rss-fill.svg);mask-image:url(../../../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../../../icons/device/rss-line.svg);mask-image:url(../../../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../../../icons/device/save-fill.svg);mask-image:url(../../../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../../../icons/device/save-line.svg);mask-image:url(../../../icons/device/save-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.legacy.min.css index 99d51e686..5a6379f58 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.main.min.css index cf48325e0..6bff4d249 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../../../icons/document/article-fill.svg);mask-image:url(../../../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../../../icons/document/article-line.svg);mask-image:url(../../../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../../../icons/document/book-2-fill.svg);mask-image:url(../../../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../../../icons/document/book-2-line.svg);mask-image:url(../../../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../../../icons/document/booklet-fill.svg);mask-image:url(../../../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../../../icons/document/booklet-line.svg);mask-image:url(../../../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../../../icons/document/clipboard-fill.svg);mask-image:url(../../../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../../../icons/document/clipboard-line.svg);mask-image:url(../../../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../../../icons/document/draft-fill.svg);mask-image:url(../../../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../../../icons/document/draft-line.svg);mask-image:url(../../../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../../../icons/document/file-add-fill.svg);mask-image:url(../../../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../../../icons/document/file-add-line.svg);mask-image:url(../../../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../../../icons/document/file-download-fill.svg);mask-image:url(../../../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../../../icons/document/file-download-line.svg);mask-image:url(../../../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../../../icons/document/file-fill.svg);mask-image:url(../../../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../../../icons/document/file-line.svg);mask-image:url(../../../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../../../icons/document/file-pdf-fill.svg);mask-image:url(../../../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../../../icons/document/file-pdf-line.svg);mask-image:url(../../../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../../../icons/document/file-text-fill.svg);mask-image:url(../../../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../../../icons/document/file-text-line.svg);mask-image:url(../../../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../../../icons/document/folder-2-fill.svg);mask-image:url(../../../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../../../icons/document/folder-2-line.svg);mask-image:url(../../../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../../../icons/document/newspaper-fill.svg);mask-image:url(../../../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../../../icons/document/newspaper-line.svg);mask-image:url(../../../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../../../icons/document/survey-fill.svg);mask-image:url(../../../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../../../icons/document/survey-line.svg);mask-image:url(../../../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../../../icons/document/todo-fill.svg);mask-image:url(../../../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../../../icons/document/todo-line.svg);mask-image:url(../../../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../../../icons/document/file-download-fill.svg);mask-image:url(../../../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../../../icons/document/file-download-line.svg);mask-image:url(../../../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../../../icons/document/file-fill.svg);mask-image:url(../../../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../../../icons/document/file-line.svg);mask-image:url(../../../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../../../icons/document/file-pdf-fill.svg);mask-image:url(../../../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../../../icons/document/file-pdf-line.svg);mask-image:url(../../../icons/document/file-pdf-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.min.css index 29e5ed66b..0c5e426cc 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-document/icons-document.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../../../icons/document/article-fill.svg);mask-image:url(../../../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../../../icons/document/article-line.svg);mask-image:url(../../../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../../../icons/document/book-2-fill.svg);mask-image:url(../../../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../../../icons/document/book-2-line.svg);mask-image:url(../../../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../../../icons/document/booklet-fill.svg);mask-image:url(../../../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../../../icons/document/booklet-line.svg);mask-image:url(../../../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../../../icons/document/clipboard-fill.svg);mask-image:url(../../../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../../../icons/document/clipboard-line.svg);mask-image:url(../../../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../../../icons/document/draft-fill.svg);mask-image:url(../../../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../../../icons/document/draft-line.svg);mask-image:url(../../../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../../../icons/document/file-add-fill.svg);mask-image:url(../../../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../../../icons/document/file-add-line.svg);mask-image:url(../../../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../../../icons/document/file-download-fill.svg);mask-image:url(../../../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../../../icons/document/file-download-line.svg);mask-image:url(../../../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../../../icons/document/file-fill.svg);mask-image:url(../../../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../../../icons/document/file-line.svg);mask-image:url(../../../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../../../icons/document/file-pdf-fill.svg);mask-image:url(../../../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../../../icons/document/file-pdf-line.svg);mask-image:url(../../../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../../../icons/document/file-text-fill.svg);mask-image:url(../../../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../../../icons/document/file-text-line.svg);mask-image:url(../../../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../../../icons/document/folder-2-fill.svg);mask-image:url(../../../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../../../icons/document/folder-2-line.svg);mask-image:url(../../../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../../../icons/document/newspaper-fill.svg);mask-image:url(../../../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../../../icons/document/newspaper-line.svg);mask-image:url(../../../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../../../icons/document/survey-fill.svg);mask-image:url(../../../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../../../icons/document/survey-line.svg);mask-image:url(../../../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../../../icons/document/todo-fill.svg);mask-image:url(../../../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../../../icons/document/todo-line.svg);mask-image:url(../../../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../../../icons/document/file-download-fill.svg);mask-image:url(../../../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../../../icons/document/file-download-line.svg);mask-image:url(../../../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../../../icons/document/file-fill.svg);mask-image:url(../../../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../../../icons/document/file-line.svg);mask-image:url(../../../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../../../icons/document/file-pdf-fill.svg);mask-image:url(../../../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../../../icons/document/file-pdf-line.svg);mask-image:url(../../../icons/document/file-pdf-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.legacy.min.css index dfa620483..150748316 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.main.min.css index 386a2a857..3da6e2c71 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../../../icons/editor/code-view.svg);mask-image:url(../../../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../../../icons/editor/font-size.svg);mask-image:url(../../../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../../../icons/editor/fr--bold.svg);mask-image:url(../../../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../../../icons/editor/fr--highlight.svg);mask-image:url(../../../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../../../icons/editor/fr--quote-fill.svg);mask-image:url(../../../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../../../icons/editor/fr--quote-line.svg);mask-image:url(../../../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../../../icons/editor/h-1.svg);mask-image:url(../../../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../../../icons/editor/h-2.svg);mask-image:url(../../../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../../../icons/editor/h-3.svg);mask-image:url(../../../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../../../icons/editor/h-4.svg);mask-image:url(../../../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../../../icons/editor/h-5.svg);mask-image:url(../../../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../../../icons/editor/h-6.svg);mask-image:url(../../../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../../../icons/editor/hashtag.svg);mask-image:url(../../../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../../../icons/editor/italic.svg);mask-image:url(../../../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../../../icons/editor/link-unlink.svg);mask-image:url(../../../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../../../icons/editor/link.svg);mask-image:url(../../../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../../../icons/editor/list-ordered.svg);mask-image:url(../../../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../../../icons/editor/list-unordered.svg);mask-image:url(../../../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../../../icons/editor/question-mark.svg);mask-image:url(../../../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../../../icons/editor/separator.svg);mask-image:url(../../../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../../../icons/editor/space.svg);mask-image:url(../../../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../../../icons/editor/subscript.svg);mask-image:url(../../../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../../../icons/editor/superscript.svg);mask-image:url(../../../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../../../icons/editor/table-2.svg);mask-image:url(../../../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../../../icons/editor/translate-2.svg);mask-image:url(../../../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../../../icons/editor/font-size.svg);mask-image:url(../../../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../../../icons/editor/fr--bold.svg);mask-image:url(../../../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../../../icons/editor/fr--highlight.svg);mask-image:url(../../../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../../../icons/editor/italic.svg);mask-image:url(../../../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../../../icons/editor/link-unlink.svg);mask-image:url(../../../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../../../icons/editor/list-ordered.svg);mask-image:url(../../../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../../../icons/editor/list-unordered.svg);mask-image:url(../../../icons/editor/list-unordered.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.min.css index 1f8709cec..00ecf283c 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-editor/icons-editor.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../../../icons/editor/code-view.svg);mask-image:url(../../../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../../../icons/editor/font-size.svg);mask-image:url(../../../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../../../icons/editor/fr--bold.svg);mask-image:url(../../../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../../../icons/editor/fr--highlight.svg);mask-image:url(../../../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../../../icons/editor/fr--quote-fill.svg);mask-image:url(../../../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../../../icons/editor/fr--quote-line.svg);mask-image:url(../../../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../../../icons/editor/h-1.svg);mask-image:url(../../../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../../../icons/editor/h-2.svg);mask-image:url(../../../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../../../icons/editor/h-3.svg);mask-image:url(../../../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../../../icons/editor/h-4.svg);mask-image:url(../../../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../../../icons/editor/h-5.svg);mask-image:url(../../../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../../../icons/editor/h-6.svg);mask-image:url(../../../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../../../icons/editor/hashtag.svg);mask-image:url(../../../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../../../icons/editor/italic.svg);mask-image:url(../../../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../../../icons/editor/link-unlink.svg);mask-image:url(../../../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../../../icons/editor/link.svg);mask-image:url(../../../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../../../icons/editor/list-ordered.svg);mask-image:url(../../../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../../../icons/editor/list-unordered.svg);mask-image:url(../../../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../../../icons/editor/question-mark.svg);mask-image:url(../../../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../../../icons/editor/separator.svg);mask-image:url(../../../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../../../icons/editor/space.svg);mask-image:url(../../../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../../../icons/editor/subscript.svg);mask-image:url(../../../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../../../icons/editor/superscript.svg);mask-image:url(../../../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../../../icons/editor/table-2.svg);mask-image:url(../../../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../../../icons/editor/translate-2.svg);mask-image:url(../../../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../../../icons/editor/font-size.svg);mask-image:url(../../../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../../../icons/editor/fr--bold.svg);mask-image:url(../../../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../../../icons/editor/fr--highlight.svg);mask-image:url(../../../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../../../icons/editor/italic.svg);mask-image:url(../../../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../../../icons/editor/link-unlink.svg);mask-image:url(../../../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../../../icons/editor/list-ordered.svg);mask-image:url(../../../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../../../icons/editor/list-unordered.svg);mask-image:url(../../../icons/editor/list-unordered.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.legacy.min.css index 7e4b49bd4..666b6a147 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.main.min.css index 81710747d..8a29a3a67 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../../../icons/finance/bank-card-fill.svg);mask-image:url(../../../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../../../icons/finance/bank-card-line.svg);mask-image:url(../../../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../../../icons/finance/coin-fill.svg);mask-image:url(../../../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../../../icons/finance/gift-fill.svg);mask-image:url(../../../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../../../icons/finance/gift-line.svg);mask-image:url(../../../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../../../icons/finance/money-euro-box-fill.svg);mask-image:url(../../../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../../../icons/finance/money-euro-box-line.svg);mask-image:url(../../../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../../../icons/finance/money-euro-circle-fill.svg);mask-image:url(../../../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../../../icons/finance/money-euro-circle-line.svg);mask-image:url(../../../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../../../icons/finance/secure-payment-fill.svg);mask-image:url(../../../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../../../icons/finance/secure-payment-line.svg);mask-image:url(../../../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../../../icons/finance/shopping-bag-fill.svg);mask-image:url(../../../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../../../icons/finance/shopping-bag-line.svg);mask-image:url(../../../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../../../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../../../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../../../icons/finance/shopping-cart-2-line.svg);mask-image:url(../../../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../../../icons/finance/trophy-fill.svg);mask-image:url(../../../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../../../icons/finance/trophy-line.svg);mask-image:url(../../../icons/finance/trophy-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.min.css index 651b15eb5..c96947bf8 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-finance/icons-finance.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../../../icons/finance/bank-card-fill.svg);mask-image:url(../../../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../../../icons/finance/bank-card-line.svg);mask-image:url(../../../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../../../icons/finance/coin-fill.svg);mask-image:url(../../../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../../../icons/finance/gift-fill.svg);mask-image:url(../../../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../../../icons/finance/gift-line.svg);mask-image:url(../../../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../../../icons/finance/money-euro-box-fill.svg);mask-image:url(../../../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../../../icons/finance/money-euro-box-line.svg);mask-image:url(../../../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../../../icons/finance/money-euro-circle-fill.svg);mask-image:url(../../../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../../../icons/finance/money-euro-circle-line.svg);mask-image:url(../../../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../../../icons/finance/secure-payment-fill.svg);mask-image:url(../../../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../../../icons/finance/secure-payment-line.svg);mask-image:url(../../../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../../../icons/finance/shopping-bag-fill.svg);mask-image:url(../../../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../../../icons/finance/shopping-bag-line.svg);mask-image:url(../../../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../../../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../../../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../../../icons/finance/shopping-cart-2-line.svg);mask-image:url(../../../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../../../icons/finance/trophy-fill.svg);mask-image:url(../../../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../../../icons/finance/trophy-line.svg);mask-image:url(../../../icons/finance/trophy-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.legacy.min.css index 9e7e1f7be..e981a8f79 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.main.min.css index 10b72f129..ff681a2e8 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../../../icons/health/capsule-fill.svg);mask-image:url(../../../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../../../icons/health/capsule-line.svg);mask-image:url(../../../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../../../icons/health/dislike-fill.svg);mask-image:url(../../../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../../../icons/health/dislike-line.svg);mask-image:url(../../../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../../../icons/health/dossier-fill.svg);mask-image:url(../../../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../../../icons/health/dossier-line.svg);mask-image:url(../../../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../../../icons/health/first-aid-kit-fill.svg);mask-image:url(../../../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../../../icons/health/first-aid-kit-line.svg);mask-image:url(../../../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../../../icons/health/hand-sanitizer-fill.svg);mask-image:url(../../../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../../../icons/health/hand-sanitizer-line.svg);mask-image:url(../../../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../../../icons/health/health-book-fill.svg);mask-image:url(../../../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../../../icons/health/health-book-line.svg);mask-image:url(../../../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../../../icons/health/heart-fill.svg);mask-image:url(../../../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../../../icons/health/heart-line.svg);mask-image:url(../../../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../../../icons/health/heart-pulse-fill.svg);mask-image:url(../../../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../../../icons/health/heart-pulse-line.svg);mask-image:url(../../../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../../../icons/health/lungs-fill.svg);mask-image:url(../../../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../../../icons/health/lungs-line.svg);mask-image:url(../../../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../../../icons/health/medicine-bottle-fill.svg);mask-image:url(../../../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../../../icons/health/medicine-bottle-line.svg);mask-image:url(../../../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../../../icons/health/mental-health-fill.svg);mask-image:url(../../../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../../../icons/health/mental-health-line.svg);mask-image:url(../../../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../../../icons/health/microscope-fill.svg);mask-image:url(../../../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../../../icons/health/microscope-line.svg);mask-image:url(../../../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../../../icons/health/psychotherapy-fill.svg);mask-image:url(../../../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../../../icons/health/psychotherapy-line.svg);mask-image:url(../../../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../../../icons/health/pulse-line.svg);mask-image:url(../../../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../../../icons/health/stethoscope-fill.svg);mask-image:url(../../../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../../../icons/health/stethoscope-line.svg);mask-image:url(../../../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../../../icons/health/surgical-mask-fill.svg);mask-image:url(../../../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../../../icons/health/surgical-mask-line.svg);mask-image:url(../../../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../../../icons/health/syringe-fill.svg);mask-image:url(../../../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../../../icons/health/syringe-line.svg);mask-image:url(../../../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../../../icons/health/test-tube-fill.svg);mask-image:url(../../../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../../../icons/health/test-tube-line.svg);mask-image:url(../../../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../../../icons/health/thermometer-fill.svg);mask-image:url(../../../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../../../icons/health/thermometer-line.svg);mask-image:url(../../../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../../../icons/health/virus-fill.svg);mask-image:url(../../../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../../../icons/health/virus-line.svg);mask-image:url(../../../icons/health/virus-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.min.css index 36912610e..2ed4253b6 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-health/icons-health.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../../../icons/health/capsule-fill.svg);mask-image:url(../../../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../../../icons/health/capsule-line.svg);mask-image:url(../../../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../../../icons/health/dislike-fill.svg);mask-image:url(../../../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../../../icons/health/dislike-line.svg);mask-image:url(../../../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../../../icons/health/dossier-fill.svg);mask-image:url(../../../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../../../icons/health/dossier-line.svg);mask-image:url(../../../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../../../icons/health/first-aid-kit-fill.svg);mask-image:url(../../../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../../../icons/health/first-aid-kit-line.svg);mask-image:url(../../../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../../../icons/health/hand-sanitizer-fill.svg);mask-image:url(../../../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../../../icons/health/hand-sanitizer-line.svg);mask-image:url(../../../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../../../icons/health/health-book-fill.svg);mask-image:url(../../../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../../../icons/health/health-book-line.svg);mask-image:url(../../../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../../../icons/health/heart-fill.svg);mask-image:url(../../../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../../../icons/health/heart-line.svg);mask-image:url(../../../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../../../icons/health/heart-pulse-fill.svg);mask-image:url(../../../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../../../icons/health/heart-pulse-line.svg);mask-image:url(../../../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../../../icons/health/lungs-fill.svg);mask-image:url(../../../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../../../icons/health/lungs-line.svg);mask-image:url(../../../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../../../icons/health/medicine-bottle-fill.svg);mask-image:url(../../../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../../../icons/health/medicine-bottle-line.svg);mask-image:url(../../../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../../../icons/health/mental-health-fill.svg);mask-image:url(../../../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../../../icons/health/mental-health-line.svg);mask-image:url(../../../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../../../icons/health/microscope-fill.svg);mask-image:url(../../../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../../../icons/health/microscope-line.svg);mask-image:url(../../../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../../../icons/health/psychotherapy-fill.svg);mask-image:url(../../../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../../../icons/health/psychotherapy-line.svg);mask-image:url(../../../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../../../icons/health/pulse-line.svg);mask-image:url(../../../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../../../icons/health/stethoscope-fill.svg);mask-image:url(../../../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../../../icons/health/stethoscope-line.svg);mask-image:url(../../../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../../../icons/health/surgical-mask-fill.svg);mask-image:url(../../../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../../../icons/health/surgical-mask-line.svg);mask-image:url(../../../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../../../icons/health/syringe-fill.svg);mask-image:url(../../../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../../../icons/health/syringe-line.svg);mask-image:url(../../../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../../../icons/health/test-tube-fill.svg);mask-image:url(../../../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../../../icons/health/test-tube-line.svg);mask-image:url(../../../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../../../icons/health/thermometer-fill.svg);mask-image:url(../../../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../../../icons/health/thermometer-line.svg);mask-image:url(../../../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../../../icons/health/virus-fill.svg);mask-image:url(../../../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../../../icons/health/virus-line.svg);mask-image:url(../../../icons/health/virus-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.legacy.min.css index e9ccfa148..12f0c5170 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.main.min.css index 9819c1b62..bf3c98302 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../../../icons/logo/chrome-fill.svg);mask-image:url(../../../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../../../icons/logo/chrome-line.svg);mask-image:url(../../../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../../../icons/logo/edge-fill.svg);mask-image:url(../../../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../../../icons/logo/edge-line.svg);mask-image:url(../../../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-line.svg);mask-image:url(../../../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../../../icons/logo/firefox-fill.svg);mask-image:url(../../../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../../../icons/logo/firefox-line.svg);mask-image:url(../../../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../../../icons/logo/fr--tiktok-fill.svg);mask-image:url(../../../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../../../icons/logo/fr--tiktok-line.svg);mask-image:url(../../../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../../../icons/logo/github-fill.svg);mask-image:url(../../../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../../../icons/logo/github-line.svg);mask-image:url(../../../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../../../icons/logo/google-fill.svg);mask-image:url(../../../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../../../icons/logo/google-line.svg);mask-image:url(../../../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../../../icons/logo/ie-fill.svg);mask-image:url(../../../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../../../icons/logo/ie-line.svg);mask-image:url(../../../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../../../icons/logo/instagram-fill.svg);mask-image:url(../../../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../../../icons/logo/instagram-line.svg);mask-image:url(../../../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-line.svg);mask-image:url(../../../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../../../icons/logo/mastodon-fill.svg);mask-image:url(../../../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../../../icons/logo/mastodon-line.svg);mask-image:url(../../../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../../../icons/logo/npmjs-fill.svg);mask-image:url(../../../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../../../icons/logo/npmjs-line.svg);mask-image:url(../../../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../../../icons/logo/remixicon-fill.svg);mask-image:url(../../../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../../../icons/logo/remixicon-line.svg);mask-image:url(../../../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../../../icons/logo/safari-fill.svg);mask-image:url(../../../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../../../icons/logo/safari-line.svg);mask-image:url(../../../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../../../icons/logo/slack-fill.svg);mask-image:url(../../../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../../../icons/logo/slack-line.svg);mask-image:url(../../../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../../../icons/logo/snapchat-fill.svg);mask-image:url(../../../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../../../icons/logo/snapchat-line.svg);mask-image:url(../../../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../../../icons/logo/telegram-fill.svg);mask-image:url(../../../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../../../icons/logo/telegram-line.svg);mask-image:url(../../../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../../../icons/logo/threads-fill.svg);mask-image:url(../../../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../../../icons/logo/threads-line.svg);mask-image:url(../../../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../../../icons/logo/twitch-fill.svg);mask-image:url(../../../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../../../icons/logo/twitch-line.svg);mask-image:url(../../../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../../../icons/logo/twitter-fill.svg);mask-image:url(../../../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../../../icons/logo/twitter-line.svg);mask-image:url(../../../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../../../icons/logo/twitter-x-fill.svg);mask-image:url(../../../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../../../icons/logo/twitter-x-line.svg);mask-image:url(../../../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../../../icons/logo/vimeo-fill.svg);mask-image:url(../../../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../../../icons/logo/vimeo-line.svg);mask-image:url(../../../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../../../icons/logo/vuejs-fill.svg);mask-image:url(../../../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../../../icons/logo/vuejs-line.svg);mask-image:url(../../../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../../../icons/logo/whatsapp-fill.svg);mask-image:url(../../../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../../../icons/logo/whatsapp-line.svg);mask-image:url(../../../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../../../icons/logo/youtube-fill.svg);mask-image:url(../../../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../../../icons/logo/youtube-line.svg);mask-image:url(../../../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-line.svg);mask-image:url(../../../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../../../icons/logo/github-fill.svg);mask-image:url(../../../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../../../icons/logo/github-line.svg);mask-image:url(../../../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../../../icons/logo/instagram-fill.svg);mask-image:url(../../../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../../../icons/logo/instagram-line.svg);mask-image:url(../../../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-line.svg);mask-image:url(../../../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../../../icons/logo/npmjs-fill.svg);mask-image:url(../../../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../../../icons/logo/npmjs-line.svg);mask-image:url(../../../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../../../icons/logo/remixicon-fill.svg);mask-image:url(../../../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../../../icons/logo/remixicon-line.svg);mask-image:url(../../../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../../../icons/logo/slack-fill.svg);mask-image:url(../../../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../../../icons/logo/slack-line.svg);mask-image:url(../../../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../../../icons/logo/snapchat-fill.svg);mask-image:url(../../../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../../../icons/logo/snapchat-line.svg);mask-image:url(../../../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../../../icons/logo/telegram-fill.svg);mask-image:url(../../../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../../../icons/logo/telegram-line.svg);mask-image:url(../../../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../../../icons/logo/twitch-fill.svg);mask-image:url(../../../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../../../icons/logo/twitch-line.svg);mask-image:url(../../../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../../../icons/logo/twitter-fill.svg);mask-image:url(../../../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../../../icons/logo/twitter-line.svg);mask-image:url(../../../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../../../icons/logo/vimeo-fill.svg);mask-image:url(../../../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../../../icons/logo/vimeo-line.svg);mask-image:url(../../../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../../../icons/logo/youtube-fill.svg);mask-image:url(../../../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../../../icons/logo/youtube-line.svg);mask-image:url(../../../icons/logo/youtube-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.min.css index 35a2d2afb..46bd33b39 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-logo/icons-logo.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../../../icons/logo/chrome-fill.svg);mask-image:url(../../../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../../../icons/logo/chrome-line.svg);mask-image:url(../../../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../../../icons/logo/edge-fill.svg);mask-image:url(../../../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../../../icons/logo/edge-line.svg);mask-image:url(../../../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-line.svg);mask-image:url(../../../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../../../icons/logo/firefox-fill.svg);mask-image:url(../../../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../../../icons/logo/firefox-line.svg);mask-image:url(../../../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../../../icons/logo/fr--tiktok-fill.svg);mask-image:url(../../../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../../../icons/logo/fr--tiktok-line.svg);mask-image:url(../../../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../../../icons/logo/github-fill.svg);mask-image:url(../../../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../../../icons/logo/github-line.svg);mask-image:url(../../../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../../../icons/logo/google-fill.svg);mask-image:url(../../../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../../../icons/logo/google-line.svg);mask-image:url(../../../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../../../icons/logo/ie-fill.svg);mask-image:url(../../../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../../../icons/logo/ie-line.svg);mask-image:url(../../../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../../../icons/logo/instagram-fill.svg);mask-image:url(../../../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../../../icons/logo/instagram-line.svg);mask-image:url(../../../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-line.svg);mask-image:url(../../../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../../../icons/logo/mastodon-fill.svg);mask-image:url(../../../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../../../icons/logo/mastodon-line.svg);mask-image:url(../../../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../../../icons/logo/npmjs-fill.svg);mask-image:url(../../../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../../../icons/logo/npmjs-line.svg);mask-image:url(../../../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../../../icons/logo/remixicon-fill.svg);mask-image:url(../../../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../../../icons/logo/remixicon-line.svg);mask-image:url(../../../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../../../icons/logo/safari-fill.svg);mask-image:url(../../../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../../../icons/logo/safari-line.svg);mask-image:url(../../../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../../../icons/logo/slack-fill.svg);mask-image:url(../../../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../../../icons/logo/slack-line.svg);mask-image:url(../../../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../../../icons/logo/snapchat-fill.svg);mask-image:url(../../../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../../../icons/logo/snapchat-line.svg);mask-image:url(../../../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../../../icons/logo/telegram-fill.svg);mask-image:url(../../../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../../../icons/logo/telegram-line.svg);mask-image:url(../../../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../../../icons/logo/threads-fill.svg);mask-image:url(../../../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../../../icons/logo/threads-line.svg);mask-image:url(../../../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../../../icons/logo/twitch-fill.svg);mask-image:url(../../../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../../../icons/logo/twitch-line.svg);mask-image:url(../../../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../../../icons/logo/twitter-fill.svg);mask-image:url(../../../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../../../icons/logo/twitter-line.svg);mask-image:url(../../../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../../../icons/logo/twitter-x-fill.svg);mask-image:url(../../../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../../../icons/logo/twitter-x-line.svg);mask-image:url(../../../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../../../icons/logo/vimeo-fill.svg);mask-image:url(../../../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../../../icons/logo/vimeo-line.svg);mask-image:url(../../../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../../../icons/logo/vuejs-fill.svg);mask-image:url(../../../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../../../icons/logo/vuejs-line.svg);mask-image:url(../../../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../../../icons/logo/whatsapp-fill.svg);mask-image:url(../../../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../../../icons/logo/whatsapp-line.svg);mask-image:url(../../../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../../../icons/logo/youtube-fill.svg);mask-image:url(../../../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../../../icons/logo/youtube-line.svg);mask-image:url(../../../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../../../icons/logo/facebook-circle-line.svg);mask-image:url(../../../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../../../icons/logo/github-fill.svg);mask-image:url(../../../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../../../icons/logo/github-line.svg);mask-image:url(../../../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../../../icons/logo/instagram-fill.svg);mask-image:url(../../../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../../../icons/logo/instagram-line.svg);mask-image:url(../../../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../../../icons/logo/linkedin-box-line.svg);mask-image:url(../../../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../../../icons/logo/npmjs-fill.svg);mask-image:url(../../../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../../../icons/logo/npmjs-line.svg);mask-image:url(../../../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../../../icons/logo/remixicon-fill.svg);mask-image:url(../../../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../../../icons/logo/remixicon-line.svg);mask-image:url(../../../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../../../icons/logo/slack-fill.svg);mask-image:url(../../../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../../../icons/logo/slack-line.svg);mask-image:url(../../../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../../../icons/logo/snapchat-fill.svg);mask-image:url(../../../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../../../icons/logo/snapchat-line.svg);mask-image:url(../../../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../../../icons/logo/telegram-fill.svg);mask-image:url(../../../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../../../icons/logo/telegram-line.svg);mask-image:url(../../../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../../../icons/logo/twitch-fill.svg);mask-image:url(../../../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../../../icons/logo/twitch-line.svg);mask-image:url(../../../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../../../icons/logo/twitter-fill.svg);mask-image:url(../../../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../../../icons/logo/twitter-line.svg);mask-image:url(../../../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../../../icons/logo/vimeo-fill.svg);mask-image:url(../../../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../../../icons/logo/vimeo-line.svg);mask-image:url(../../../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../../../icons/logo/youtube-fill.svg);mask-image:url(../../../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../../../icons/logo/youtube-line.svg);mask-image:url(../../../icons/logo/youtube-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.legacy.min.css index 375723c17..925a25938 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.main.min.css index 0c156217f..fb97fb5f9 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../../../icons/map/anchor-fill.svg);mask-image:url(../../../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../../../icons/map/anchor-line.svg);mask-image:url(../../../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../../../icons/map/bike-fill.svg);mask-image:url(../../../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../../../icons/map/bike-line.svg);mask-image:url(../../../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../../../icons/map/bus-fill.svg);mask-image:url(../../../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../../../icons/map/bus-line.svg);mask-image:url(../../../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../../../icons/map/car-fill.svg);mask-image:url(../../../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../../../icons/map/car-line.svg);mask-image:url(../../../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../../../icons/map/caravan-fill.svg);mask-image:url(../../../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../../../icons/map/caravan-line.svg);mask-image:url(../../../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../../../icons/map/charging-pile-2-fill.svg);mask-image:url(../../../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../../../icons/map/charging-pile-2-line.svg);mask-image:url(../../../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../../../icons/map/compass-3-fill.svg);mask-image:url(../../../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../../../icons/map/compass-3-line.svg);mask-image:url(../../../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../../../icons/map/cup-fill.svg);mask-image:url(../../../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../../../icons/map/cup-line.svg);mask-image:url(../../../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../../../icons/map/earth-fill.svg);mask-image:url(../../../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../../../icons/map/earth-line.svg);mask-image:url(../../../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../../../icons/map/france-fill.svg);mask-image:url(../../../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../../../icons/map/france-line.svg);mask-image:url(../../../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../../../icons/map/gas-station-fill.svg);mask-image:url(../../../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../../../icons/map/gas-station-line.svg);mask-image:url(../../../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../../../icons/map/goblet-fill.svg);mask-image:url(../../../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../../../icons/map/goblet-line.svg);mask-image:url(../../../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-fill.svg);mask-image:url(../../../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-line.svg);mask-image:url(../../../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../../../icons/map/map-pin-user-fill.svg);mask-image:url(../../../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../../../icons/map/map-pin-user-line.svg);mask-image:url(../../../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../../../icons/map/motorbike-fill.svg);mask-image:url(../../../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../../../icons/map/motorbike-line.svg);mask-image:url(../../../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../../../icons/map/passport-fill.svg);mask-image:url(../../../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../../../icons/map/passport-line.svg);mask-image:url(../../../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../../../icons/map/restaurant-fill.svg);mask-image:url(../../../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../../../icons/map/restaurant-line.svg);mask-image:url(../../../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../../../icons/map/road-map-fill.svg);mask-image:url(../../../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../../../icons/map/road-map-line.svg);mask-image:url(../../../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../../../icons/map/sailboat-fill.svg);mask-image:url(../../../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../../../icons/map/sailboat-line.svg);mask-image:url(../../../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../../../icons/map/ship-2-fill.svg);mask-image:url(../../../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../../../icons/map/ship-2-line.svg);mask-image:url(../../../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../../../icons/map/signal-tower-fill.svg);mask-image:url(../../../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../../../icons/map/signal-tower-line.svg);mask-image:url(../../../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../../../icons/map/suitcase-2-fill.svg);mask-image:url(../../../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../../../icons/map/suitcase-2-line.svg);mask-image:url(../../../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../../../icons/map/taxi-fill.svg);mask-image:url(../../../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../../../icons/map/taxi-line.svg);mask-image:url(../../../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../../../icons/map/train-fill.svg);mask-image:url(../../../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../../../icons/map/train-line.svg);mask-image:url(../../../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-fill.svg);mask-image:url(../../../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-line.svg);mask-image:url(../../../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../../../icons/map/road-map-fill.svg);mask-image:url(../../../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../../../icons/map/road-map-line.svg);mask-image:url(../../../icons/map/road-map-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.min.css index d895c69ed..20a5e96b0 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-map/icons-map.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../../../icons/map/anchor-fill.svg);mask-image:url(../../../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../../../icons/map/anchor-line.svg);mask-image:url(../../../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../../../icons/map/bike-fill.svg);mask-image:url(../../../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../../../icons/map/bike-line.svg);mask-image:url(../../../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../../../icons/map/bus-fill.svg);mask-image:url(../../../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../../../icons/map/bus-line.svg);mask-image:url(../../../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../../../icons/map/car-fill.svg);mask-image:url(../../../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../../../icons/map/car-line.svg);mask-image:url(../../../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../../../icons/map/caravan-fill.svg);mask-image:url(../../../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../../../icons/map/caravan-line.svg);mask-image:url(../../../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../../../icons/map/charging-pile-2-fill.svg);mask-image:url(../../../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../../../icons/map/charging-pile-2-line.svg);mask-image:url(../../../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../../../icons/map/compass-3-fill.svg);mask-image:url(../../../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../../../icons/map/compass-3-line.svg);mask-image:url(../../../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../../../icons/map/cup-fill.svg);mask-image:url(../../../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../../../icons/map/cup-line.svg);mask-image:url(../../../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../../../icons/map/earth-fill.svg);mask-image:url(../../../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../../../icons/map/earth-line.svg);mask-image:url(../../../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../../../icons/map/france-fill.svg);mask-image:url(../../../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../../../icons/map/france-line.svg);mask-image:url(../../../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../../../icons/map/gas-station-fill.svg);mask-image:url(../../../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../../../icons/map/gas-station-line.svg);mask-image:url(../../../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../../../icons/map/goblet-fill.svg);mask-image:url(../../../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../../../icons/map/goblet-line.svg);mask-image:url(../../../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-fill.svg);mask-image:url(../../../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-line.svg);mask-image:url(../../../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../../../icons/map/map-pin-user-fill.svg);mask-image:url(../../../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../../../icons/map/map-pin-user-line.svg);mask-image:url(../../../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../../../icons/map/motorbike-fill.svg);mask-image:url(../../../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../../../icons/map/motorbike-line.svg);mask-image:url(../../../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../../../icons/map/passport-fill.svg);mask-image:url(../../../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../../../icons/map/passport-line.svg);mask-image:url(../../../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../../../icons/map/restaurant-fill.svg);mask-image:url(../../../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../../../icons/map/restaurant-line.svg);mask-image:url(../../../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../../../icons/map/road-map-fill.svg);mask-image:url(../../../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../../../icons/map/road-map-line.svg);mask-image:url(../../../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../../../icons/map/sailboat-fill.svg);mask-image:url(../../../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../../../icons/map/sailboat-line.svg);mask-image:url(../../../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../../../icons/map/ship-2-fill.svg);mask-image:url(../../../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../../../icons/map/ship-2-line.svg);mask-image:url(../../../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../../../icons/map/signal-tower-fill.svg);mask-image:url(../../../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../../../icons/map/signal-tower-line.svg);mask-image:url(../../../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../../../icons/map/suitcase-2-fill.svg);mask-image:url(../../../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../../../icons/map/suitcase-2-line.svg);mask-image:url(../../../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../../../icons/map/taxi-fill.svg);mask-image:url(../../../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../../../icons/map/taxi-line.svg);mask-image:url(../../../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../../../icons/map/train-fill.svg);mask-image:url(../../../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../../../icons/map/train-line.svg);mask-image:url(../../../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-fill.svg);mask-image:url(../../../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../../../icons/map/map-pin-2-line.svg);mask-image:url(../../../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../../../icons/map/road-map-fill.svg);mask-image:url(../../../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../../../icons/map/road-map-line.svg);mask-image:url(../../../icons/map/road-map-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.legacy.min.css index 5635834e1..657efbdd0 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.main.min.css index 5bacfde3c..fef42330f 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../../../icons/media/align-left.svg);mask-image:url(../../../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../../../icons/media/camera-fill.svg);mask-image:url(../../../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../../../icons/media/camera-line.svg);mask-image:url(../../../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../../../icons/media/clapperboard-fill.svg);mask-image:url(../../../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../../../icons/media/clapperboard-line.svg);mask-image:url(../../../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../../../icons/media/equalizer-fill.svg);mask-image:url(../../../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../../../icons/media/equalizer-line.svg);mask-image:url(../../../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../../../icons/media/film-fill.svg);mask-image:url(../../../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../../../icons/media/film-line.svg);mask-image:url(../../../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../../../icons/media/fullscreen-line.svg);mask-image:url(../../../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../../../icons/media/gallery-fill.svg);mask-image:url(../../../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../../../icons/media/gallery-line.svg);mask-image:url(../../../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../../../icons/media/headphone-fill.svg);mask-image:url(../../../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../../../icons/media/headphone-line.svg);mask-image:url(../../../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../../../icons/media/image-add-fill.svg);mask-image:url(../../../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../../../icons/media/image-add-line.svg);mask-image:url(../../../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../../../icons/media/image-edit-fill.svg);mask-image:url(../../../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../../../icons/media/image-edit-line.svg);mask-image:url(../../../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../../../icons/media/image-fill.svg);mask-image:url(../../../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../../../icons/media/image-line.svg);mask-image:url(../../../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../../../icons/media/live-fill.svg);mask-image:url(../../../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../../../icons/media/live-line.svg);mask-image:url(../../../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../../../icons/media/mic-fill.svg);mask-image:url(../../../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../../../icons/media/mic-line.svg);mask-image:url(../../../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../../../icons/media/music-2-fill.svg);mask-image:url(../../../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../../../icons/media/music-2-line.svg);mask-image:url(../../../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../../../icons/media/notification-3-fill.svg);mask-image:url(../../../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../../../icons/media/notification-3-line.svg);mask-image:url(../../../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../../../icons/media/pause-circle-fill.svg);mask-image:url(../../../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../../../icons/media/pause-circle-line.svg);mask-image:url(../../../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../../../icons/media/play-circle-fill.svg);mask-image:url(../../../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../../../icons/media/play-circle-line.svg);mask-image:url(../../../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../../../icons/media/stop-circle-fill.svg);mask-image:url(../../../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../../../icons/media/stop-circle-line.svg);mask-image:url(../../../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../../../icons/media/volume-down-fill.svg);mask-image:url(../../../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../../../icons/media/volume-down-line.svg);mask-image:url(../../../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../../../icons/media/volume-mute-fill.svg);mask-image:url(../../../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../../../icons/media/volume-mute-line.svg);mask-image:url(../../../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../../../icons/media/volume-up-fill.svg);mask-image:url(../../../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../../../icons/media/volume-up-line.svg);mask-image:url(../../../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../../../icons/media/equalizer-fill.svg);mask-image:url(../../../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../../../icons/media/equalizer-line.svg);mask-image:url(../../../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../../../icons/media/image-fill.svg);mask-image:url(../../../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../../../icons/media/image-line.svg);mask-image:url(../../../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../../../icons/media/pause-circle-fill.svg);mask-image:url(../../../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../../../icons/media/pause-circle-line.svg);mask-image:url(../../../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../../../icons/media/volume-down-fill.svg);mask-image:url(../../../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../../../icons/media/volume-down-line.svg);mask-image:url(../../../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../../../icons/media/volume-mute-fill.svg);mask-image:url(../../../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../../../icons/media/volume-mute-line.svg);mask-image:url(../../../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../../../icons/media/volume-up-fill.svg);mask-image:url(../../../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../../../icons/media/volume-up-line.svg);mask-image:url(../../../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../../../icons/media/play-circle-line.svg);mask-image:url(../../../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../../../icons/media/play-circle-fill.svg);mask-image:url(../../../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../../../icons/media/play-circle-line.svg);mask-image:url(../../../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../../../icons/media/play-circle-fill.svg);mask-image:url(../../../icons/media/play-circle-fill.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.min.css index 8416a3b0f..130d30c0f 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-media/icons-media.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../../../icons/media/align-left.svg);mask-image:url(../../../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../../../icons/media/camera-fill.svg);mask-image:url(../../../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../../../icons/media/camera-line.svg);mask-image:url(../../../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../../../icons/media/clapperboard-fill.svg);mask-image:url(../../../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../../../icons/media/clapperboard-line.svg);mask-image:url(../../../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../../../icons/media/equalizer-fill.svg);mask-image:url(../../../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../../../icons/media/equalizer-line.svg);mask-image:url(../../../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../../../icons/media/film-fill.svg);mask-image:url(../../../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../../../icons/media/film-line.svg);mask-image:url(../../../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../../../icons/media/fullscreen-line.svg);mask-image:url(../../../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../../../icons/media/gallery-fill.svg);mask-image:url(../../../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../../../icons/media/gallery-line.svg);mask-image:url(../../../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../../../icons/media/headphone-fill.svg);mask-image:url(../../../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../../../icons/media/headphone-line.svg);mask-image:url(../../../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../../../icons/media/image-add-fill.svg);mask-image:url(../../../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../../../icons/media/image-add-line.svg);mask-image:url(../../../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../../../icons/media/image-edit-fill.svg);mask-image:url(../../../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../../../icons/media/image-edit-line.svg);mask-image:url(../../../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../../../icons/media/image-fill.svg);mask-image:url(../../../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../../../icons/media/image-line.svg);mask-image:url(../../../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../../../icons/media/live-fill.svg);mask-image:url(../../../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../../../icons/media/live-line.svg);mask-image:url(../../../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../../../icons/media/mic-fill.svg);mask-image:url(../../../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../../../icons/media/mic-line.svg);mask-image:url(../../../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../../../icons/media/music-2-fill.svg);mask-image:url(../../../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../../../icons/media/music-2-line.svg);mask-image:url(../../../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../../../icons/media/notification-3-fill.svg);mask-image:url(../../../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../../../icons/media/notification-3-line.svg);mask-image:url(../../../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../../../icons/media/pause-circle-fill.svg);mask-image:url(../../../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../../../icons/media/pause-circle-line.svg);mask-image:url(../../../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../../../icons/media/play-circle-fill.svg);mask-image:url(../../../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../../../icons/media/play-circle-line.svg);mask-image:url(../../../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../../../icons/media/stop-circle-fill.svg);mask-image:url(../../../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../../../icons/media/stop-circle-line.svg);mask-image:url(../../../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../../../icons/media/volume-down-fill.svg);mask-image:url(../../../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../../../icons/media/volume-down-line.svg);mask-image:url(../../../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../../../icons/media/volume-mute-fill.svg);mask-image:url(../../../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../../../icons/media/volume-mute-line.svg);mask-image:url(../../../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../../../icons/media/volume-up-fill.svg);mask-image:url(../../../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../../../icons/media/volume-up-line.svg);mask-image:url(../../../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../../../icons/media/equalizer-fill.svg);mask-image:url(../../../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../../../icons/media/equalizer-line.svg);mask-image:url(../../../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../../../icons/media/image-fill.svg);mask-image:url(../../../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../../../icons/media/image-line.svg);mask-image:url(../../../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../../../icons/media/pause-circle-fill.svg);mask-image:url(../../../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../../../icons/media/pause-circle-line.svg);mask-image:url(../../../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../../../icons/media/volume-down-fill.svg);mask-image:url(../../../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../../../icons/media/volume-down-line.svg);mask-image:url(../../../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../../../icons/media/volume-mute-fill.svg);mask-image:url(../../../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../../../icons/media/volume-mute-line.svg);mask-image:url(../../../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../../../icons/media/volume-up-fill.svg);mask-image:url(../../../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../../../icons/media/volume-up-line.svg);mask-image:url(../../../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../../../icons/media/play-circle-line.svg);mask-image:url(../../../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../../../icons/media/play-circle-fill.svg);mask-image:url(../../../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../../../icons/media/play-circle-line.svg);mask-image:url(../../../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../../../icons/media/play-circle-fill.svg);mask-image:url(../../../icons/media/play-circle-fill.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.legacy.min.css index 9adb40ee1..749d70bd5 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.main.min.css index 8cfa3d4ed..6284e952a 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../../../icons/others/fr--accessibility-fill.svg);mask-image:url(../../../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../../../icons/others/fr--accessibility-line.svg);mask-image:url(../../../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../../../icons/others/fr--ear-off-fill.svg);mask-image:url(../../../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../../../icons/others/fr--ear-off-line.svg);mask-image:url(../../../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../../../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../../../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../../../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../../../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../../../icons/others/fr--sign-language-fill.svg);mask-image:url(../../../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../../../icons/others/fr--sign-language-line.svg);mask-image:url(../../../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../../../icons/others/leaf-fill.svg);mask-image:url(../../../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../../../icons/others/leaf-line.svg);mask-image:url(../../../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../../../icons/others/lightbulb-fill.svg);mask-image:url(../../../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../../../icons/others/lightbulb-line.svg);mask-image:url(../../../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../../../icons/others/plant-fill.svg);mask-image:url(../../../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../../../icons/others/plant-line.svg);mask-image:url(../../../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../../../icons/others/recycle-fill.svg);mask-image:url(../../../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../../../icons/others/recycle-line.svg);mask-image:url(../../../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../../../icons/others/scales-3-fill.svg);mask-image:url(../../../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../../../icons/others/scales-3-line.svg);mask-image:url(../../../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../../../icons/others/seedling-fill.svg);mask-image:url(../../../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../../../icons/others/seedling-line.svg);mask-image:url(../../../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../../../icons/others/umbrella-fill.svg);mask-image:url(../../../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../../../icons/others/umbrella-line.svg);mask-image:url(../../../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../../../icons/others/wheelchair-fill.svg);mask-image:url(../../../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../../../icons/others/wheelchair-line.svg);mask-image:url(../../../icons/others/wheelchair-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.min.css index 9c67edb21..7ebd2464d 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-others/icons-others.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../../../icons/others/fr--accessibility-fill.svg);mask-image:url(../../../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../../../icons/others/fr--accessibility-line.svg);mask-image:url(../../../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../../../icons/others/fr--ear-off-fill.svg);mask-image:url(../../../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../../../icons/others/fr--ear-off-line.svg);mask-image:url(../../../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../../../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../../../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../../../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../../../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../../../icons/others/fr--sign-language-fill.svg);mask-image:url(../../../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../../../icons/others/fr--sign-language-line.svg);mask-image:url(../../../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../../../icons/others/leaf-fill.svg);mask-image:url(../../../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../../../icons/others/leaf-line.svg);mask-image:url(../../../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../../../icons/others/lightbulb-fill.svg);mask-image:url(../../../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../../../icons/others/lightbulb-line.svg);mask-image:url(../../../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../../../icons/others/plant-fill.svg);mask-image:url(../../../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../../../icons/others/plant-line.svg);mask-image:url(../../../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../../../icons/others/recycle-fill.svg);mask-image:url(../../../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../../../icons/others/recycle-line.svg);mask-image:url(../../../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../../../icons/others/scales-3-fill.svg);mask-image:url(../../../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../../../icons/others/scales-3-line.svg);mask-image:url(../../../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../../../icons/others/seedling-fill.svg);mask-image:url(../../../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../../../icons/others/seedling-line.svg);mask-image:url(../../../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../../../icons/others/umbrella-fill.svg);mask-image:url(../../../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../../../icons/others/umbrella-line.svg);mask-image:url(../../../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../../../icons/others/wheelchair-fill.svg);mask-image:url(../../../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../../../icons/others/wheelchair-line.svg);mask-image:url(../../../icons/others/wheelchair-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.legacy.min.css index ffabcd2c1..dea2f6444 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.main.min.css index c34cc3f98..f2f37983f 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../../../icons/system/add-circle-fill.svg);mask-image:url(../../../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../../../icons/system/add-circle-line.svg);mask-image:url(../../../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../../../icons/system/add-line.svg);mask-image:url(../../../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../../../icons/system/alarm-warning-fill.svg);mask-image:url(../../../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../../../icons/system/alarm-warning-line.svg);mask-image:url(../../../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../../../icons/system/alert-fill.svg);mask-image:url(../../../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../../../icons/system/alert-line.svg);mask-image:url(../../../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-down-fill.svg);mask-image:url(../../../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-line.svg);mask-image:url(../../../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-down-s-fill.svg);mask-image:url(../../../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-s-line.svg);mask-image:url(../../../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-line.svg);mask-image:url(../../../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-go-forward-fill.svg);mask-image:url(../../../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../../../icons/system/arrow-go-forward-line.svg);mask-image:url(../../../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-left-fill.svg);mask-image:url(../../../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-line.svg);mask-image:url(../../../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-left-s-fill.svg);mask-image:url(../../../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-s-line.svg);mask-image:url(../../../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-right-fill.svg);mask-image:url(../../../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-line.svg);mask-image:url(../../../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-right-s-fill.svg);mask-image:url(../../../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-s-line.svg);mask-image:url(../../../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-up-line.svg);mask-image:url(../../../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-down-line.svg);mask-image:url(../../../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-up-fill.svg);mask-image:url(../../../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-line.svg);mask-image:url(../../../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-up-s-fill.svg);mask-image:url(../../../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-s-line.svg);mask-image:url(../../../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../../../icons/system/check-line.svg);mask-image:url(../../../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../../../icons/system/checkbox-circle-fill.svg);mask-image:url(../../../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../../../icons/system/checkbox-circle-line.svg);mask-image:url(../../../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../../../icons/system/checkbox-fill.svg);mask-image:url(../../../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../../../icons/system/checkbox-line.svg);mask-image:url(../../../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../../../icons/system/close-circle-fill.svg);mask-image:url(../../../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../../../icons/system/close-circle-line.svg);mask-image:url(../../../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../../../icons/system/close-line.svg);mask-image:url(../../../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../../../icons/system/delete-bin-fill.svg);mask-image:url(../../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../../../icons/system/delete-bin-line.svg);mask-image:url(../../../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../../../icons/system/download-fill.svg);mask-image:url(../../../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../../../icons/system/download-line.svg);mask-image:url(../../../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../../../icons/system/error-warning-fill.svg);mask-image:url(../../../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../../../icons/system/error-warning-line.svg);mask-image:url(../../../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../../../icons/system/external-link-fill.svg);mask-image:url(../../../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../../../icons/system/external-link-line.svg);mask-image:url(../../../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../../../icons/system/eye-fill.svg);mask-image:url(../../../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../../../icons/system/eye-line.svg);mask-image:url(../../../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../../../icons/system/eye-off-fill.svg);mask-image:url(../../../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../../../icons/system/eye-off-line.svg);mask-image:url(../../../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../../../icons/system/filter-fill.svg);mask-image:url(../../../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../../../icons/system/filter-line.svg);mask-image:url(../../../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../../../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../../../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../../../icons/system/fr--capslock-line.svg);mask-image:url(../../../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../../../icons/system/fr--equal-circle-fill.svg);mask-image:url(../../../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../../../icons/system/fr--error-fill.svg);mask-image:url(../../../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../../../icons/system/fr--error-line.svg);mask-image:url(../../../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../../../icons/system/fr--info-fill.svg);mask-image:url(../../../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../../../icons/system/fr--info-line.svg);mask-image:url(../../../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../../../icons/system/fr--success-fill.svg);mask-image:url(../../../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../../../icons/system/fr--success-line.svg);mask-image:url(../../../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../../../icons/system/fr--theme-fill.svg);mask-image:url(../../../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../../../icons/system/fr--warning-fill.svg);mask-image:url(../../../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../../../icons/system/fr--warning-line.svg);mask-image:url(../../../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../../../icons/system/information-fill.svg);mask-image:url(../../../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../../../icons/system/information-line.svg);mask-image:url(../../../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../../../icons/system/lock-fill.svg);mask-image:url(../../../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../../../icons/system/lock-line.svg);mask-image:url(../../../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../../../icons/system/lock-unlock-fill.svg);mask-image:url(../../../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../../../icons/system/lock-unlock-line.svg);mask-image:url(../../../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-fill.svg);mask-image:url(../../../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-line.svg);mask-image:url(../../../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../../../icons/system/menu-2-fill.svg);mask-image:url(../../../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../../../icons/system/menu-fill.svg);mask-image:url(../../../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../../../icons/system/more-fill.svg);mask-image:url(../../../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../../../icons/system/more-line.svg);mask-image:url(../../../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../../../icons/system/notification-badge-fill.svg);mask-image:url(../../../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../../../icons/system/notification-badge-line.svg);mask-image:url(../../../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../../../icons/system/question-fill.svg);mask-image:url(../../../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../../../icons/system/question-line.svg);mask-image:url(../../../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../../../icons/system/refresh-fill.svg);mask-image:url(../../../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../../../icons/system/refresh-line.svg);mask-image:url(../../../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../../../icons/system/search-fill.svg);mask-image:url(../../../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../../../icons/system/search-line.svg);mask-image:url(../../../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../../../icons/system/settings-5-fill.svg);mask-image:url(../../../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../../../icons/system/settings-5-line.svg);mask-image:url(../../../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../../../icons/system/shield-fill.svg);mask-image:url(../../../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../../../icons/system/shield-line.svg);mask-image:url(../../../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../../../icons/system/star-fill.svg);mask-image:url(../../../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../../../icons/system/star-line.svg);mask-image:url(../../../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../../../icons/system/star-s-fill.svg);mask-image:url(../../../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../../../icons/system/star-s-line.svg);mask-image:url(../../../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../../../icons/system/subtract-line.svg);mask-image:url(../../../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../../../icons/system/thumb-down-fill.svg);mask-image:url(../../../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../../../icons/system/thumb-down-line.svg);mask-image:url(../../../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../../../icons/system/thumb-up-fill.svg);mask-image:url(../../../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../../../icons/system/thumb-up-line.svg);mask-image:url(../../../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../../../icons/system/time-fill.svg);mask-image:url(../../../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../../../icons/system/time-line.svg);mask-image:url(../../../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../../../icons/system/timer-fill.svg);mask-image:url(../../../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../../../icons/system/timer-line.svg);mask-image:url(../../../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../../../icons/system/upload-2-fill.svg);mask-image:url(../../../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../../../icons/system/upload-2-line.svg);mask-image:url(../../../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../../../icons/system/upload-fill.svg);mask-image:url(../../../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../../../icons/system/upload-line.svg);mask-image:url(../../../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-in-fill.svg);mask-image:url(../../../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../../../icons/system/zoom-in-line.svg);mask-image:url(../../../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-out-fill.svg);mask-image:url(../../../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../../../icons/system/zoom-out-line.svg);mask-image:url(../../../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../../../icons/system/add-circle-fill.svg);mask-image:url(../../../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../../../icons/system/add-circle-line.svg);mask-image:url(../../../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../../../icons/system/add-line.svg);mask-image:url(../../../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-line.svg);mask-image:url(../../../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-s-line.svg);mask-image:url(../../../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-line.svg);mask-image:url(../../../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-line.svg);mask-image:url(../../../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-s-line.svg);mask-image:url(../../../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-line.svg);mask-image:url(../../../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-s-line.svg);mask-image:url(../../../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-up-line.svg);mask-image:url(../../../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-up-fill.svg);mask-image:url(../../../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-line.svg);mask-image:url(../../../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-s-line.svg);mask-image:url(../../../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../../../icons/system/check-line.svg);mask-image:url(../../../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../../../icons/system/checkbox-circle-line.svg);mask-image:url(../../../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../../../icons/system/close-line.svg);mask-image:url(../../../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../../../icons/system/download-line.svg);mask-image:url(../../../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../../../icons/system/error-warning-fill.svg);mask-image:url(../../../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../../../icons/system/error-warning-line.svg);mask-image:url(../../../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../../../icons/system/external-link-line.svg);mask-image:url(../../../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../../../icons/system/eye-fill.svg);mask-image:url(../../../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../../../icons/system/eye-line.svg);mask-image:url(../../../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../../../icons/system/eye-off-fill.svg);mask-image:url(../../../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../../../icons/system/eye-off-line.svg);mask-image:url(../../../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../../../icons/system/filter-fill.svg);mask-image:url(../../../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../../../icons/system/filter-line.svg);mask-image:url(../../../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../../../icons/system/fr--error-fill.svg);mask-image:url(../../../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../../../icons/system/fr--error-line.svg);mask-image:url(../../../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../../../icons/system/fr--info-fill.svg);mask-image:url(../../../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../../../icons/system/fr--info-line.svg);mask-image:url(../../../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../../../icons/system/fr--success-fill.svg);mask-image:url(../../../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../../../icons/system/fr--success-line.svg);mask-image:url(../../../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../../../icons/system/fr--theme-fill.svg);mask-image:url(../../../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../../../icons/system/fr--warning-fill.svg);mask-image:url(../../../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../../../icons/system/fr--warning-line.svg);mask-image:url(../../../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../../../icons/system/information-fill.svg);mask-image:url(../../../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../../../icons/system/information-line.svg);mask-image:url(../../../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../../../icons/system/lock-fill.svg);mask-image:url(../../../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../../../icons/system/lock-line.svg);mask-image:url(../../../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-fill.svg);mask-image:url(../../../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-line.svg);mask-image:url(../../../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../../../icons/system/menu-2-fill.svg);mask-image:url(../../../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../../../icons/system/menu-fill.svg);mask-image:url(../../../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../../../icons/system/question-fill.svg);mask-image:url(../../../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../../../icons/system/question-line.svg);mask-image:url(../../../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../../../icons/system/refresh-fill.svg);mask-image:url(../../../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../../../icons/system/refresh-line.svg);mask-image:url(../../../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../../../icons/system/search-fill.svg);mask-image:url(../../../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../../../icons/system/search-line.svg);mask-image:url(../../../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../../../icons/system/subtract-line.svg);mask-image:url(../../../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../../../icons/system/timer-fill.svg);mask-image:url(../../../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../../../icons/system/timer-line.svg);mask-image:url(../../../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../../../icons/system/upload-2-fill.svg);mask-image:url(../../../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../../../icons/system/upload-2-line.svg);mask-image:url(../../../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-in-fill.svg);mask-image:url(../../../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../../../icons/system/zoom-in-line.svg);mask-image:url(../../../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-out-fill.svg);mask-image:url(../../../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../../../icons/system/zoom-out-line.svg);mask-image:url(../../../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../../../icons/system/delete-bin-line.svg);mask-image:url(../../../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../../../icons/system/delete-bin-fill.svg);mask-image:url(../../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../../../icons/system/delete-bin-line.svg);mask-image:url(../../../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../../../icons/system/delete-bin-fill.svg);mask-image:url(../../../icons/system/delete-bin-fill.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.min.css index 022eeb7e7..f570b09ec 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-system/icons-system.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../../../icons/system/add-circle-fill.svg);mask-image:url(../../../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../../../icons/system/add-circle-line.svg);mask-image:url(../../../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../../../icons/system/add-line.svg);mask-image:url(../../../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../../../icons/system/alarm-warning-fill.svg);mask-image:url(../../../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../../../icons/system/alarm-warning-line.svg);mask-image:url(../../../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../../../icons/system/alert-fill.svg);mask-image:url(../../../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../../../icons/system/alert-line.svg);mask-image:url(../../../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-down-fill.svg);mask-image:url(../../../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-line.svg);mask-image:url(../../../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-down-s-fill.svg);mask-image:url(../../../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-s-line.svg);mask-image:url(../../../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-line.svg);mask-image:url(../../../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-go-forward-fill.svg);mask-image:url(../../../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../../../icons/system/arrow-go-forward-line.svg);mask-image:url(../../../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-left-fill.svg);mask-image:url(../../../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-line.svg);mask-image:url(../../../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-left-s-fill.svg);mask-image:url(../../../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-s-line.svg);mask-image:url(../../../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-right-fill.svg);mask-image:url(../../../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-line.svg);mask-image:url(../../../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-right-s-fill.svg);mask-image:url(../../../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-s-line.svg);mask-image:url(../../../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-up-line.svg);mask-image:url(../../../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-down-line.svg);mask-image:url(../../../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-up-fill.svg);mask-image:url(../../../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-line.svg);mask-image:url(../../../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-up-s-fill.svg);mask-image:url(../../../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-s-line.svg);mask-image:url(../../../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../../../icons/system/check-line.svg);mask-image:url(../../../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../../../icons/system/checkbox-circle-fill.svg);mask-image:url(../../../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../../../icons/system/checkbox-circle-line.svg);mask-image:url(../../../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../../../icons/system/checkbox-fill.svg);mask-image:url(../../../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../../../icons/system/checkbox-line.svg);mask-image:url(../../../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../../../icons/system/close-circle-fill.svg);mask-image:url(../../../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../../../icons/system/close-circle-line.svg);mask-image:url(../../../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../../../icons/system/close-line.svg);mask-image:url(../../../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../../../icons/system/delete-bin-fill.svg);mask-image:url(../../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../../../icons/system/delete-bin-line.svg);mask-image:url(../../../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../../../icons/system/download-fill.svg);mask-image:url(../../../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../../../icons/system/download-line.svg);mask-image:url(../../../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../../../icons/system/error-warning-fill.svg);mask-image:url(../../../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../../../icons/system/error-warning-line.svg);mask-image:url(../../../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../../../icons/system/external-link-fill.svg);mask-image:url(../../../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../../../icons/system/external-link-line.svg);mask-image:url(../../../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../../../icons/system/eye-fill.svg);mask-image:url(../../../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../../../icons/system/eye-line.svg);mask-image:url(../../../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../../../icons/system/eye-off-fill.svg);mask-image:url(../../../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../../../icons/system/eye-off-line.svg);mask-image:url(../../../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../../../icons/system/filter-fill.svg);mask-image:url(../../../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../../../icons/system/filter-line.svg);mask-image:url(../../../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../../../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../../../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../../../icons/system/fr--capslock-line.svg);mask-image:url(../../../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../../../icons/system/fr--equal-circle-fill.svg);mask-image:url(../../../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../../../icons/system/fr--error-fill.svg);mask-image:url(../../../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../../../icons/system/fr--error-line.svg);mask-image:url(../../../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../../../icons/system/fr--info-fill.svg);mask-image:url(../../../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../../../icons/system/fr--info-line.svg);mask-image:url(../../../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../../../icons/system/fr--success-fill.svg);mask-image:url(../../../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../../../icons/system/fr--success-line.svg);mask-image:url(../../../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../../../icons/system/fr--theme-fill.svg);mask-image:url(../../../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../../../icons/system/fr--warning-fill.svg);mask-image:url(../../../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../../../icons/system/fr--warning-line.svg);mask-image:url(../../../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../../../icons/system/information-fill.svg);mask-image:url(../../../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../../../icons/system/information-line.svg);mask-image:url(../../../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../../../icons/system/lock-fill.svg);mask-image:url(../../../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../../../icons/system/lock-line.svg);mask-image:url(../../../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../../../icons/system/lock-unlock-fill.svg);mask-image:url(../../../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../../../icons/system/lock-unlock-line.svg);mask-image:url(../../../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-fill.svg);mask-image:url(../../../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-line.svg);mask-image:url(../../../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../../../icons/system/menu-2-fill.svg);mask-image:url(../../../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../../../icons/system/menu-fill.svg);mask-image:url(../../../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../../../icons/system/more-fill.svg);mask-image:url(../../../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../../../icons/system/more-line.svg);mask-image:url(../../../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../../../icons/system/notification-badge-fill.svg);mask-image:url(../../../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../../../icons/system/notification-badge-line.svg);mask-image:url(../../../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../../../icons/system/question-fill.svg);mask-image:url(../../../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../../../icons/system/question-line.svg);mask-image:url(../../../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../../../icons/system/refresh-fill.svg);mask-image:url(../../../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../../../icons/system/refresh-line.svg);mask-image:url(../../../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../../../icons/system/search-fill.svg);mask-image:url(../../../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../../../icons/system/search-line.svg);mask-image:url(../../../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../../../icons/system/settings-5-fill.svg);mask-image:url(../../../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../../../icons/system/settings-5-line.svg);mask-image:url(../../../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../../../icons/system/shield-fill.svg);mask-image:url(../../../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../../../icons/system/shield-line.svg);mask-image:url(../../../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../../../icons/system/star-fill.svg);mask-image:url(../../../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../../../icons/system/star-line.svg);mask-image:url(../../../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../../../icons/system/star-s-fill.svg);mask-image:url(../../../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../../../icons/system/star-s-line.svg);mask-image:url(../../../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../../../icons/system/subtract-line.svg);mask-image:url(../../../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../../../icons/system/thumb-down-fill.svg);mask-image:url(../../../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../../../icons/system/thumb-down-line.svg);mask-image:url(../../../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../../../icons/system/thumb-up-fill.svg);mask-image:url(../../../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../../../icons/system/thumb-up-line.svg);mask-image:url(../../../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../../../icons/system/time-fill.svg);mask-image:url(../../../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../../../icons/system/time-line.svg);mask-image:url(../../../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../../../icons/system/timer-fill.svg);mask-image:url(../../../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../../../icons/system/timer-line.svg);mask-image:url(../../../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../../../icons/system/upload-2-fill.svg);mask-image:url(../../../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../../../icons/system/upload-2-line.svg);mask-image:url(../../../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../../../icons/system/upload-fill.svg);mask-image:url(../../../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../../../icons/system/upload-line.svg);mask-image:url(../../../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-in-fill.svg);mask-image:url(../../../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../../../icons/system/zoom-in-line.svg);mask-image:url(../../../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-out-fill.svg);mask-image:url(../../../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../../../icons/system/zoom-out-line.svg);mask-image:url(../../../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../../../icons/system/add-circle-fill.svg);mask-image:url(../../../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../../../icons/system/add-circle-line.svg);mask-image:url(../../../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../../../icons/system/add-line.svg);mask-image:url(../../../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-line.svg);mask-image:url(../../../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-down-s-line.svg);mask-image:url(../../../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../../../icons/system/arrow-go-back-line.svg);mask-image:url(../../../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-line.svg);mask-image:url(../../../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-left-s-line.svg);mask-image:url(../../../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-line.svg);mask-image:url(../../../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-s-line.svg);mask-image:url(../../../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-right-up-line.svg);mask-image:url(../../../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../../../icons/system/arrow-up-fill.svg);mask-image:url(../../../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-line.svg);mask-image:url(../../../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../../../icons/system/arrow-up-s-line.svg);mask-image:url(../../../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../../../icons/system/check-line.svg);mask-image:url(../../../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../../../icons/system/checkbox-circle-line.svg);mask-image:url(../../../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../../../icons/system/close-line.svg);mask-image:url(../../../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../../../icons/system/download-line.svg);mask-image:url(../../../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../../../icons/system/error-warning-fill.svg);mask-image:url(../../../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../../../icons/system/error-warning-line.svg);mask-image:url(../../../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../../../icons/system/external-link-line.svg);mask-image:url(../../../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../../../icons/system/eye-fill.svg);mask-image:url(../../../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../../../icons/system/eye-line.svg);mask-image:url(../../../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../../../icons/system/eye-off-fill.svg);mask-image:url(../../../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../../../icons/system/eye-off-line.svg);mask-image:url(../../../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../../../icons/system/filter-fill.svg);mask-image:url(../../../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../../../icons/system/filter-line.svg);mask-image:url(../../../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../../../icons/system/fr--error-fill.svg);mask-image:url(../../../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../../../icons/system/fr--error-line.svg);mask-image:url(../../../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../../../icons/system/fr--info-fill.svg);mask-image:url(../../../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../../../icons/system/fr--info-line.svg);mask-image:url(../../../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../../../icons/system/fr--success-fill.svg);mask-image:url(../../../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../../../icons/system/fr--success-line.svg);mask-image:url(../../../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../../../icons/system/fr--theme-fill.svg);mask-image:url(../../../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../../../icons/system/fr--warning-fill.svg);mask-image:url(../../../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../../../icons/system/fr--warning-line.svg);mask-image:url(../../../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../../../icons/system/information-fill.svg);mask-image:url(../../../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../../../icons/system/information-line.svg);mask-image:url(../../../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../../../icons/system/lock-fill.svg);mask-image:url(../../../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../../../icons/system/lock-line.svg);mask-image:url(../../../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-fill.svg);mask-image:url(../../../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../../../icons/system/logout-box-r-line.svg);mask-image:url(../../../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../../../icons/system/menu-2-fill.svg);mask-image:url(../../../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../../../icons/system/menu-fill.svg);mask-image:url(../../../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../../../icons/system/question-fill.svg);mask-image:url(../../../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../../../icons/system/question-line.svg);mask-image:url(../../../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../../../icons/system/refresh-fill.svg);mask-image:url(../../../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../../../icons/system/refresh-line.svg);mask-image:url(../../../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../../../icons/system/search-fill.svg);mask-image:url(../../../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../../../icons/system/search-line.svg);mask-image:url(../../../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../../../icons/system/subtract-line.svg);mask-image:url(../../../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../../../icons/system/timer-fill.svg);mask-image:url(../../../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../../../icons/system/timer-line.svg);mask-image:url(../../../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../../../icons/system/upload-2-fill.svg);mask-image:url(../../../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../../../icons/system/upload-2-line.svg);mask-image:url(../../../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-in-fill.svg);mask-image:url(../../../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../../../icons/system/zoom-in-line.svg);mask-image:url(../../../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../../../icons/system/zoom-out-fill.svg);mask-image:url(../../../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../../../icons/system/zoom-out-line.svg);mask-image:url(../../../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../../../icons/system/delete-bin-line.svg);mask-image:url(../../../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../../../icons/system/delete-bin-fill.svg);mask-image:url(../../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../../../icons/system/delete-bin-line.svg);mask-image:url(../../../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../../../icons/system/delete-bin-fill.svg);mask-image:url(../../../icons/system/delete-bin-fill.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.legacy.min.css index 3997a6c63..db1709537 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.main.min.css index 73e0a58c5..f3c111520 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../../../icons/user/account-circle-fill.svg);mask-image:url(../../../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../../../icons/user/account-circle-line.svg);mask-image:url(../../../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../../../icons/user/account-pin-circle-fill.svg);mask-image:url(../../../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../../../icons/user/account-pin-circle-line.svg);mask-image:url(../../../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../../../icons/user/admin-fill.svg);mask-image:url(../../../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../../../icons/user/admin-line.svg);mask-image:url(../../../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../../../icons/user/group-fill.svg);mask-image:url(../../../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../../../icons/user/group-line.svg);mask-image:url(../../../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../../../icons/user/parent-fill.svg);mask-image:url(../../../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../../../icons/user/parent-line.svg);mask-image:url(../../../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../../../icons/user/team-fill.svg);mask-image:url(../../../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../../../icons/user/team-line.svg);mask-image:url(../../../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../../../icons/user/user-add-fill.svg);mask-image:url(../../../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../../../icons/user/user-add-line.svg);mask-image:url(../../../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../../../icons/user/user-fill.svg);mask-image:url(../../../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../../../icons/user/user-heart-fill.svg);mask-image:url(../../../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../../../icons/user/user-heart-line.svg);mask-image:url(../../../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../../../icons/user/user-line.svg);mask-image:url(../../../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../../../icons/user/user-search-fill.svg);mask-image:url(../../../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../../../icons/user/user-search-line.svg);mask-image:url(../../../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../../../icons/user/user-setting-fill.svg);mask-image:url(../../../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../../../icons/user/user-setting-line.svg);mask-image:url(../../../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../../../icons/user/user-star-fill.svg);mask-image:url(../../../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../../../icons/user/user-star-line.svg);mask-image:url(../../../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../../../icons/user/user-fill.svg);mask-image:url(../../../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../../../icons/user/user-line.svg);mask-image:url(../../../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../../../icons/user/account-circle-line.svg);mask-image:url(../../../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../../../icons/user/account-circle-fill.svg);mask-image:url(../../../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../../../icons/user/account-circle-line.svg);mask-image:url(../../../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../../../icons/user/account-circle-fill.svg);mask-image:url(../../../icons/user/account-circle-fill.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.min.css index 070deef36..5ca8bc395 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-user/icons-user.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../../../icons/user/account-circle-fill.svg);mask-image:url(../../../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../../../icons/user/account-circle-line.svg);mask-image:url(../../../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../../../icons/user/account-pin-circle-fill.svg);mask-image:url(../../../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../../../icons/user/account-pin-circle-line.svg);mask-image:url(../../../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../../../icons/user/admin-fill.svg);mask-image:url(../../../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../../../icons/user/admin-line.svg);mask-image:url(../../../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../../../icons/user/group-fill.svg);mask-image:url(../../../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../../../icons/user/group-line.svg);mask-image:url(../../../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../../../icons/user/parent-fill.svg);mask-image:url(../../../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../../../icons/user/parent-line.svg);mask-image:url(../../../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../../../icons/user/team-fill.svg);mask-image:url(../../../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../../../icons/user/team-line.svg);mask-image:url(../../../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../../../icons/user/user-add-fill.svg);mask-image:url(../../../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../../../icons/user/user-add-line.svg);mask-image:url(../../../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../../../icons/user/user-fill.svg);mask-image:url(../../../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../../../icons/user/user-heart-fill.svg);mask-image:url(../../../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../../../icons/user/user-heart-line.svg);mask-image:url(../../../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../../../icons/user/user-line.svg);mask-image:url(../../../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../../../icons/user/user-search-fill.svg);mask-image:url(../../../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../../../icons/user/user-search-line.svg);mask-image:url(../../../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../../../icons/user/user-setting-fill.svg);mask-image:url(../../../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../../../icons/user/user-setting-line.svg);mask-image:url(../../../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../../../icons/user/user-star-fill.svg);mask-image:url(../../../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../../../icons/user/user-star-line.svg);mask-image:url(../../../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../../../icons/user/user-fill.svg);mask-image:url(../../../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../../../icons/user/user-line.svg);mask-image:url(../../../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../../../icons/user/account-circle-line.svg);mask-image:url(../../../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../../../icons/user/account-circle-fill.svg);mask-image:url(../../../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../../../icons/user/account-circle-line.svg);mask-image:url(../../../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../../../icons/user/account-circle-fill.svg);mask-image:url(../../../icons/user/account-circle-fill.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.legacy.min.css index 9734a0e81..9b2687b46 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.main.min.css index 0290c2c33..86806c101 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../../../icons/weather/cloudy-2-fill.svg);mask-image:url(../../../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../../../icons/weather/cloudy-2-line.svg);mask-image:url(../../../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../../../icons/weather/fire-fill.svg);mask-image:url(../../../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../../../icons/weather/fire-line.svg);mask-image:url(../../../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../../../icons/weather/flashlight-fill.svg);mask-image:url(../../../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../../../icons/weather/flashlight-line.svg);mask-image:url(../../../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../../../icons/weather/flood-fill.svg);mask-image:url(../../../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../../../icons/weather/flood-line.svg);mask-image:url(../../../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../../../icons/weather/fr--avalanches-fill.svg);mask-image:url(../../../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../../../icons/weather/fr--submersion-fill.svg);mask-image:url(../../../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../../../icons/weather/heavy-showers-line.svg);mask-image:url(../../../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../../../icons/weather/moon-fill.svg);mask-image:url(../../../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../../../icons/weather/moon-line.svg);mask-image:url(../../../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../../../icons/weather/snowy-fill.svg);mask-image:url(../../../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../../../icons/weather/snowy-line.svg);mask-image:url(../../../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../../../icons/weather/sparkling-2-fill.svg);mask-image:url(../../../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../../../icons/weather/sparkling-2-line.svg);mask-image:url(../../../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../../../icons/weather/sun-fill.svg);mask-image:url(../../../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../../../icons/weather/sun-line.svg);mask-image:url(../../../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../../../icons/weather/temp-cold-fill.svg);mask-image:url(../../../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../../../icons/weather/temp-cold-line.svg);mask-image:url(../../../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../../../icons/weather/thunderstorms-fill.svg);mask-image:url(../../../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../../../icons/weather/thunderstorms-line.svg);mask-image:url(../../../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../../../icons/weather/tornado-fill.svg);mask-image:url(../../../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../../../icons/weather/tornado-line.svg);mask-image:url(../../../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../../../icons/weather/typhoon-fill.svg);mask-image:url(../../../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../../../icons/weather/typhoon-line.svg);mask-image:url(../../../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../../../icons/weather/windy-fill.svg);mask-image:url(../../../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../../../icons/weather/windy-line.svg);mask-image:url(../../../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../../../icons/weather/flashlight-fill.svg);mask-image:url(../../../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../../../icons/weather/flashlight-line.svg);mask-image:url(../../../icons/weather/flashlight-line.svg)}@media (min-width:36em){ /*! media sm */}@media (min-width:48em){ /*! media md */}@media (min-width:62em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.min.css b/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.min.css index a45f80bbd..28356c62c 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons-weather/icons-weather.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../../../icons/weather/cloudy-2-fill.svg);mask-image:url(../../../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../../../icons/weather/cloudy-2-line.svg);mask-image:url(../../../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../../../icons/weather/fire-fill.svg);mask-image:url(../../../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../../../icons/weather/fire-line.svg);mask-image:url(../../../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../../../icons/weather/flashlight-fill.svg);mask-image:url(../../../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../../../icons/weather/flashlight-line.svg);mask-image:url(../../../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../../../icons/weather/flood-fill.svg);mask-image:url(../../../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../../../icons/weather/flood-line.svg);mask-image:url(../../../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../../../icons/weather/fr--avalanches-fill.svg);mask-image:url(../../../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../../../icons/weather/fr--submersion-fill.svg);mask-image:url(../../../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../../../icons/weather/heavy-showers-line.svg);mask-image:url(../../../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../../../icons/weather/moon-fill.svg);mask-image:url(../../../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../../../icons/weather/moon-line.svg);mask-image:url(../../../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../../../icons/weather/snowy-fill.svg);mask-image:url(../../../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../../../icons/weather/snowy-line.svg);mask-image:url(../../../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../../../icons/weather/sparkling-2-fill.svg);mask-image:url(../../../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../../../icons/weather/sparkling-2-line.svg);mask-image:url(../../../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../../../icons/weather/sun-fill.svg);mask-image:url(../../../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../../../icons/weather/sun-line.svg);mask-image:url(../../../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../../../icons/weather/temp-cold-fill.svg);mask-image:url(../../../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../../../icons/weather/temp-cold-line.svg);mask-image:url(../../../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../../../icons/weather/thunderstorms-fill.svg);mask-image:url(../../../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../../../icons/weather/thunderstorms-line.svg);mask-image:url(../../../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../../../icons/weather/tornado-fill.svg);mask-image:url(../../../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../../../icons/weather/tornado-line.svg);mask-image:url(../../../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../../../icons/weather/typhoon-fill.svg);mask-image:url(../../../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../../../icons/weather/typhoon-line.svg);mask-image:url(../../../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../../../icons/weather/windy-fill.svg);mask-image:url(../../../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../../../icons/weather/windy-line.svg);mask-image:url(../../../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../../../icons/weather/flashlight-fill.svg);mask-image:url(../../../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../../../icons/weather/flashlight-line.svg);mask-image:url(../../../icons/weather/flashlight-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */}@media (min-width:48em){ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons.legacy.min.css b/dsfr/static/dsfr/dist/utility/icons/icons.legacy.min.css index 52a0e80fa..619e67397 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */ /*! media sm */ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons.main.min.css b/dsfr/static/dsfr/dist/utility/icons/icons.main.min.css index 3a76c1ccb..c33129944 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons.main.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons.main.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../../icons/buildings/ancient-gate-fill.svg);mask-image:url(../../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../../icons/buildings/ancient-gate-line.svg);mask-image:url(../../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../../icons/buildings/bank-fill.svg);mask-image:url(../../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../../icons/buildings/bank-line.svg);mask-image:url(../../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../../icons/buildings/building-fill.svg);mask-image:url(../../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../../icons/buildings/building-line.svg);mask-image:url(../../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../../icons/buildings/community-fill.svg);mask-image:url(../../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../../icons/buildings/community-line.svg);mask-image:url(../../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../../icons/buildings/government-fill.svg);mask-image:url(../../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../../icons/buildings/government-line.svg);mask-image:url(../../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../../icons/buildings/home-4-fill.svg);mask-image:url(../../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../../icons/buildings/home-4-line.svg);mask-image:url(../../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../../icons/buildings/hospital-fill.svg);mask-image:url(../../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../../icons/buildings/hospital-line.svg);mask-image:url(../../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../../icons/buildings/hotel-fill.svg);mask-image:url(../../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../../icons/buildings/hotel-line.svg);mask-image:url(../../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../../icons/buildings/store-fill.svg);mask-image:url(../../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../../icons/buildings/store-line.svg);mask-image:url(../../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../../icons/buildings/home-4-fill.svg);mask-image:url(../../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../../icons/buildings/home-4-line.svg);mask-image:url(../../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../../icons/business/archive-fill.svg);mask-image:url(../../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../../icons/business/archive-line.svg);mask-image:url(../../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../../icons/business/attachment-fill.svg);mask-image:url(../../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../../icons/business/attachment-line.svg);mask-image:url(../../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../../icons/business/award-fill.svg);mask-image:url(../../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../../icons/business/award-line.svg);mask-image:url(../../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../../icons/business/bar-chart-box-fill.svg);mask-image:url(../../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../../icons/business/bar-chart-box-line.svg);mask-image:url(../../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../../icons/business/bookmark-fill.svg);mask-image:url(../../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../../icons/business/bookmark-line.svg);mask-image:url(../../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../../icons/business/briefcase-fill.svg);mask-image:url(../../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../../icons/business/briefcase-line.svg);mask-image:url(../../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../../icons/business/calendar-2-fill.svg);mask-image:url(../../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../../icons/business/calendar-2-line.svg);mask-image:url(../../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../../icons/business/calendar-event-fill.svg);mask-image:url(../../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../../icons/business/calendar-event-line.svg);mask-image:url(../../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../../icons/business/calendar-fill.svg);mask-image:url(../../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../../icons/business/calendar-line.svg);mask-image:url(../../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../../icons/business/cloud-fill.svg);mask-image:url(../../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../../icons/business/cloud-line.svg);mask-image:url(../../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../../icons/business/copyright-fill.svg);mask-image:url(../../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../../icons/business/copyright-line.svg);mask-image:url(../../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../../icons/business/customer-service-fill.svg);mask-image:url(../../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../../icons/business/customer-service-line.svg);mask-image:url(../../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../../icons/business/flag-fill.svg);mask-image:url(../../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../../icons/business/flag-line.svg);mask-image:url(../../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../../icons/business/global-fill.svg);mask-image:url(../../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../../icons/business/global-line.svg);mask-image:url(../../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../../icons/business/line-chart-fill.svg);mask-image:url(../../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../../icons/business/line-chart-line.svg);mask-image:url(../../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../../icons/business/links-line.svg);mask-image:url(../../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../../icons/business/mail-fill.svg);mask-image:url(../../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../../icons/business/mail-open-fill.svg);mask-image:url(../../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../../icons/business/mail-open-line.svg);mask-image:url(../../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../../icons/business/medal-fill.svg);mask-image:url(../../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../../icons/business/medal-line.svg);mask-image:url(../../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../../icons/business/pie-chart-2-fill.svg);mask-image:url(../../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../../icons/business/pie-chart-2-line.svg);mask-image:url(../../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../../icons/business/pie-chart-box-fill.svg);mask-image:url(../../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../../icons/business/pie-chart-box-line.svg);mask-image:url(../../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../../icons/business/printer-fill.svg);mask-image:url(../../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../../icons/business/printer-line.svg);mask-image:url(../../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../../icons/business/profil-fill.svg);mask-image:url(../../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../../icons/business/profil-line.svg);mask-image:url(../../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../../icons/business/projector-2-fill.svg);mask-image:url(../../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../../icons/business/projector-2-line.svg);mask-image:url(../../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../../icons/business/send-plane-fill.svg);mask-image:url(../../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../../icons/business/send-plane-line.svg);mask-image:url(../../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../../icons/business/slideshow-fill.svg);mask-image:url(../../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../../icons/business/slideshow-line.svg);mask-image:url(../../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../../icons/business/window-fill.svg);mask-image:url(../../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../../icons/business/window-line.svg);mask-image:url(../../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../../icons/business/attachment-fill.svg);mask-image:url(../../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../../icons/business/attachment-line.svg);mask-image:url(../../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../../icons/business/calendar-fill.svg);mask-image:url(../../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../../icons/business/calendar-line.svg);mask-image:url(../../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../../icons/business/line-chart-fill.svg);mask-image:url(../../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../../icons/business/line-chart-line.svg);mask-image:url(../../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../../icons/business/mail-fill.svg);mask-image:url(../../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../../icons/business/printer-fill.svg);mask-image:url(../../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../../icons/business/printer-line.svg);mask-image:url(../../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../../icons/communication/chat-2-fill.svg);mask-image:url(../../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../../icons/communication/chat-2-line.svg);mask-image:url(../../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../../icons/communication/chat-3-fill.svg);mask-image:url(../../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../../icons/communication/chat-3-line.svg);mask-image:url(../../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../../icons/communication/chat-check-fill.svg);mask-image:url(../../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../../icons/communication/chat-check-line.svg);mask-image:url(../../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../../icons/communication/chat-delete-fill.svg);mask-image:url(../../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../../icons/communication/chat-delete-line.svg);mask-image:url(../../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../../icons/communication/chat-poll-fill.svg);mask-image:url(../../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../../icons/communication/chat-poll-line.svg);mask-image:url(../../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../../icons/communication/discuss-fill.svg);mask-image:url(../../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../../icons/communication/discuss-line.svg);mask-image:url(../../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../../icons/communication/feedback-fill.svg);mask-image:url(../../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../../icons/communication/feedback-line.svg);mask-image:url(../../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../../icons/communication/message-2-fill.svg);mask-image:url(../../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../../icons/communication/message-2-line.svg);mask-image:url(../../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../../icons/communication/question-answer-fill.svg);mask-image:url(../../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../../icons/communication/question-answer-line.svg);mask-image:url(../../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../../icons/communication/questionnaire-fill.svg);mask-image:url(../../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../../icons/communication/questionnaire-line.svg);mask-image:url(../../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../../icons/communication/video-chat-fill.svg);mask-image:url(../../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../../icons/communication/video-chat-line.svg);mask-image:url(../../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../../icons/design/ball-pen-fill.svg);mask-image:url(../../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../../icons/design/ball-pen-line.svg);mask-image:url(../../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../../icons/design/brush-3-fill.svg);mask-image:url(../../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../../icons/design/brush-3-line.svg);mask-image:url(../../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../../icons/design/brush-fill.svg);mask-image:url(../../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../../icons/design/brush-line.svg);mask-image:url(../../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../../icons/design/contrast-fill.svg);mask-image:url(../../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../../icons/design/contrast-line.svg);mask-image:url(../../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../../icons/design/crop-fill.svg);mask-image:url(../../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../../icons/design/crop-line.svg);mask-image:url(../../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../../icons/design/drag-move-2-fill.svg);mask-image:url(../../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../../icons/design/drag-move-2-line.svg);mask-image:url(../../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../../icons/design/drop-fill.svg);mask-image:url(../../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../../icons/design/drop-line.svg);mask-image:url(../../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../../icons/design/edit-box-fill.svg);mask-image:url(../../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../../icons/design/edit-box-line.svg);mask-image:url(../../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../../icons/design/edit-fill.svg);mask-image:url(../../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../../icons/design/edit-line.svg);mask-image:url(../../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../../icons/design/ink-bottle-fill.svg);mask-image:url(../../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../../icons/design/ink-bottle-line.svg);mask-image:url(../../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../../icons/design/layout-grid-fill.svg);mask-image:url(../../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../../icons/design/layout-grid-line.svg);mask-image:url(../../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../../icons/design/mark-pen-fill.svg);mask-image:url(../../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../../icons/design/mark-pen-line.svg);mask-image:url(../../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../../icons/design/paint-brush-fill.svg);mask-image:url(../../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../../icons/design/paint-brush-line.svg);mask-image:url(../../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../../icons/design/paint-fill.svg);mask-image:url(../../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../../icons/design/paint-line.svg);mask-image:url(../../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../../icons/design/palette-fill.svg);mask-image:url(../../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../../icons/design/palette-line.svg);mask-image:url(../../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../../icons/design/pantone-fill.svg);mask-image:url(../../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../../icons/design/pantone-line.svg);mask-image:url(../../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../../icons/design/pen-nib-fill.svg);mask-image:url(../../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../../icons/design/pen-nib-line.svg);mask-image:url(../../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../../icons/design/pencil-fill.svg);mask-image:url(../../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../../icons/design/pencil-line.svg);mask-image:url(../../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../../icons/design/pencil-ruler-fill.svg);mask-image:url(../../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../../icons/design/pencil-ruler-line.svg);mask-image:url(../../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../../icons/design/shapes-fill.svg);mask-image:url(../../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../../icons/design/shapes-line.svg);mask-image:url(../../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../../icons/design/sip-fill.svg);mask-image:url(../../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../../icons/design/sip-line.svg);mask-image:url(../../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../../icons/design/table-fill.svg);mask-image:url(../../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../../icons/design/table-line.svg);mask-image:url(../../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../../icons/design/edit-fill.svg);mask-image:url(../../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../../icons/design/edit-line.svg);mask-image:url(../../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../../icons/development/bug-fill.svg);mask-image:url(../../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../../icons/development/bug-line.svg);mask-image:url(../../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../../icons/development/code-box-fill.svg);mask-image:url(../../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../../icons/development/code-box-line.svg);mask-image:url(../../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../../icons/development/code-s-slash-line.svg);mask-image:url(../../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../../icons/development/cursor-fill.svg);mask-image:url(../../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../../icons/development/cursor-line.svg);mask-image:url(../../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../../icons/development/git-branch-fill.svg);mask-image:url(../../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../../icons/development/git-branch-line.svg);mask-image:url(../../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../../icons/development/git-commit-fill.svg);mask-image:url(../../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../../icons/development/git-commit-line.svg);mask-image:url(../../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../../icons/development/git-merge-fill.svg);mask-image:url(../../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../../icons/development/git-merge-line.svg);mask-image:url(../../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../../icons/development/git-pull-request-fill.svg);mask-image:url(../../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../../icons/development/git-pull-request-line.svg);mask-image:url(../../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../../icons/development/git-repository-commits-fill.svg);mask-image:url(../../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../../icons/development/git-repository-commits-line.svg);mask-image:url(../../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../../icons/development/git-repository-fill.svg);mask-image:url(../../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../../icons/development/git-repository-line.svg);mask-image:url(../../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../../icons/development/git-repository-private-fill.svg);mask-image:url(../../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../../icons/development/git-repository-private-line.svg);mask-image:url(../../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../../icons/development/terminal-box-fill.svg);mask-image:url(../../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../../icons/development/terminal-box-line.svg);mask-image:url(../../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../../icons/development/terminal-line.svg);mask-image:url(../../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../../icons/development/terminal-window-fill.svg);mask-image:url(../../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../../icons/development/terminal-window-line.svg);mask-image:url(../../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../../icons/device/bluetooth-fill.svg);mask-image:url(../../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../../icons/device/bluetooth-line.svg);mask-image:url(../../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../../icons/device/computer-fill.svg);mask-image:url(../../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../../icons/device/computer-line.svg);mask-image:url(../../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../../icons/device/dashboard-3-fill.svg);mask-image:url(../../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../../icons/device/dashboard-3-line.svg);mask-image:url(../../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../../icons/device/database-fill.svg);mask-image:url(../../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../../icons/device/database-line.svg);mask-image:url(../../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../../icons/device/device-fill.svg);mask-image:url(../../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../../icons/device/device-line.svg);mask-image:url(../../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../../icons/device/hard-drive-2-fill.svg);mask-image:url(../../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../../icons/device/hard-drive-2-line.svg);mask-image:url(../../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../../icons/device/mac-fill.svg);mask-image:url(../../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../../icons/device/mac-line.svg);mask-image:url(../../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../../icons/device/phone-fill.svg);mask-image:url(../../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../../icons/device/phone-line.svg);mask-image:url(../../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../../icons/device/qr-code-fill.svg);mask-image:url(../../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../../icons/device/qr-code-line.svg);mask-image:url(../../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../../icons/device/rss-fill.svg);mask-image:url(../../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../../icons/device/rss-line.svg);mask-image:url(../../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../../icons/device/save-3-fill.svg);mask-image:url(../../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../../icons/device/save-3-line.svg);mask-image:url(../../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../../icons/device/save-fill.svg);mask-image:url(../../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../../icons/device/save-line.svg);mask-image:url(../../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../../icons/device/server-fill.svg);mask-image:url(../../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../../icons/device/server-line.svg);mask-image:url(../../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../../icons/device/smartphone-fill.svg);mask-image:url(../../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../../icons/device/smartphone-line.svg);mask-image:url(../../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../../icons/device/tablet-fill.svg);mask-image:url(../../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../../icons/device/tablet-line.svg);mask-image:url(../../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../../icons/device/tv-fill.svg);mask-image:url(../../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../../icons/device/tv-line.svg);mask-image:url(../../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../../icons/device/wifi-fill.svg);mask-image:url(../../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../../icons/device/wifi-line.svg);mask-image:url(../../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../../icons/device/phone-fill.svg);mask-image:url(../../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../../icons/device/phone-line.svg);mask-image:url(../../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../../icons/device/rss-fill.svg);mask-image:url(../../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../../icons/device/rss-line.svg);mask-image:url(../../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../../icons/device/save-fill.svg);mask-image:url(../../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../../icons/device/save-line.svg);mask-image:url(../../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../../icons/document/article-fill.svg);mask-image:url(../../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../../icons/document/article-line.svg);mask-image:url(../../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../../icons/document/book-2-fill.svg);mask-image:url(../../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../../icons/document/book-2-line.svg);mask-image:url(../../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../../icons/document/booklet-fill.svg);mask-image:url(../../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../../icons/document/booklet-line.svg);mask-image:url(../../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../../icons/document/clipboard-fill.svg);mask-image:url(../../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../../icons/document/clipboard-line.svg);mask-image:url(../../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../../icons/document/draft-fill.svg);mask-image:url(../../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../../icons/document/draft-line.svg);mask-image:url(../../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../../icons/document/file-add-fill.svg);mask-image:url(../../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../../icons/document/file-add-line.svg);mask-image:url(../../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../../icons/document/file-download-fill.svg);mask-image:url(../../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../../icons/document/file-download-line.svg);mask-image:url(../../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../../icons/document/file-fill.svg);mask-image:url(../../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../../icons/document/file-line.svg);mask-image:url(../../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../../icons/document/file-pdf-fill.svg);mask-image:url(../../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../../icons/document/file-pdf-line.svg);mask-image:url(../../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../../icons/document/file-text-fill.svg);mask-image:url(../../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../../icons/document/file-text-line.svg);mask-image:url(../../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../../icons/document/folder-2-fill.svg);mask-image:url(../../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../../icons/document/folder-2-line.svg);mask-image:url(../../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../../icons/document/newspaper-fill.svg);mask-image:url(../../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../../icons/document/newspaper-line.svg);mask-image:url(../../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../../icons/document/survey-fill.svg);mask-image:url(../../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../../icons/document/survey-line.svg);mask-image:url(../../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../../icons/document/todo-fill.svg);mask-image:url(../../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../../icons/document/todo-line.svg);mask-image:url(../../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../../icons/document/file-download-fill.svg);mask-image:url(../../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../../icons/document/file-download-line.svg);mask-image:url(../../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../../icons/document/file-fill.svg);mask-image:url(../../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../../icons/document/file-line.svg);mask-image:url(../../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../../icons/document/file-pdf-fill.svg);mask-image:url(../../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../../icons/document/file-pdf-line.svg);mask-image:url(../../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../../icons/editor/code-view.svg);mask-image:url(../../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../../icons/editor/font-size.svg);mask-image:url(../../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../../icons/editor/fr--bold.svg);mask-image:url(../../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../../icons/editor/fr--highlight.svg);mask-image:url(../../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../../icons/editor/fr--quote-fill.svg);mask-image:url(../../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../../icons/editor/fr--quote-line.svg);mask-image:url(../../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../../icons/editor/h-1.svg);mask-image:url(../../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../../icons/editor/h-2.svg);mask-image:url(../../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../../icons/editor/h-3.svg);mask-image:url(../../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../../icons/editor/h-4.svg);mask-image:url(../../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../../icons/editor/h-5.svg);mask-image:url(../../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../../icons/editor/h-6.svg);mask-image:url(../../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../../icons/editor/hashtag.svg);mask-image:url(../../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../../icons/editor/italic.svg);mask-image:url(../../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../../icons/editor/link-unlink.svg);mask-image:url(../../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../../icons/editor/link.svg);mask-image:url(../../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../../icons/editor/list-ordered.svg);mask-image:url(../../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../../icons/editor/list-unordered.svg);mask-image:url(../../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../../icons/editor/question-mark.svg);mask-image:url(../../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../../icons/editor/separator.svg);mask-image:url(../../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../../icons/editor/space.svg);mask-image:url(../../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../../icons/editor/subscript.svg);mask-image:url(../../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../../icons/editor/superscript.svg);mask-image:url(../../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../../icons/editor/table-2.svg);mask-image:url(../../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../../icons/editor/translate-2.svg);mask-image:url(../../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../../icons/editor/font-size.svg);mask-image:url(../../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../../icons/editor/fr--bold.svg);mask-image:url(../../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../../icons/editor/fr--highlight.svg);mask-image:url(../../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../../icons/editor/italic.svg);mask-image:url(../../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../../icons/editor/link-unlink.svg);mask-image:url(../../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../../icons/editor/list-ordered.svg);mask-image:url(../../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../../icons/editor/list-unordered.svg);mask-image:url(../../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../../icons/finance/bank-card-fill.svg);mask-image:url(../../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../../icons/finance/bank-card-line.svg);mask-image:url(../../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../../icons/finance/coin-fill.svg);mask-image:url(../../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../../icons/finance/gift-fill.svg);mask-image:url(../../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../../icons/finance/gift-line.svg);mask-image:url(../../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../../icons/finance/money-euro-box-fill.svg);mask-image:url(../../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../../icons/finance/money-euro-box-line.svg);mask-image:url(../../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../../icons/finance/money-euro-circle-fill.svg);mask-image:url(../../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../../icons/finance/money-euro-circle-line.svg);mask-image:url(../../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../../icons/finance/secure-payment-fill.svg);mask-image:url(../../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../../icons/finance/secure-payment-line.svg);mask-image:url(../../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../../icons/finance/shopping-bag-fill.svg);mask-image:url(../../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../../icons/finance/shopping-bag-line.svg);mask-image:url(../../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../../icons/finance/shopping-cart-2-line.svg);mask-image:url(../../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../../icons/finance/trophy-fill.svg);mask-image:url(../../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../../icons/finance/trophy-line.svg);mask-image:url(../../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../../icons/health/capsule-fill.svg);mask-image:url(../../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../../icons/health/capsule-line.svg);mask-image:url(../../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../../icons/health/dislike-fill.svg);mask-image:url(../../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../../icons/health/dislike-line.svg);mask-image:url(../../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../../icons/health/dossier-fill.svg);mask-image:url(../../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../../icons/health/dossier-line.svg);mask-image:url(../../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../../icons/health/first-aid-kit-fill.svg);mask-image:url(../../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../../icons/health/first-aid-kit-line.svg);mask-image:url(../../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../../icons/health/hand-sanitizer-fill.svg);mask-image:url(../../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../../icons/health/hand-sanitizer-line.svg);mask-image:url(../../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../../icons/health/health-book-fill.svg);mask-image:url(../../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../../icons/health/health-book-line.svg);mask-image:url(../../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../../icons/health/heart-fill.svg);mask-image:url(../../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../../icons/health/heart-line.svg);mask-image:url(../../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../../icons/health/heart-pulse-fill.svg);mask-image:url(../../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../../icons/health/heart-pulse-line.svg);mask-image:url(../../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../../icons/health/lungs-fill.svg);mask-image:url(../../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../../icons/health/lungs-line.svg);mask-image:url(../../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../../icons/health/medicine-bottle-fill.svg);mask-image:url(../../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../../icons/health/medicine-bottle-line.svg);mask-image:url(../../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../../icons/health/mental-health-fill.svg);mask-image:url(../../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../../icons/health/mental-health-line.svg);mask-image:url(../../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../../icons/health/microscope-fill.svg);mask-image:url(../../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../../icons/health/microscope-line.svg);mask-image:url(../../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../../icons/health/psychotherapy-fill.svg);mask-image:url(../../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../../icons/health/psychotherapy-line.svg);mask-image:url(../../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../../icons/health/pulse-line.svg);mask-image:url(../../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../../icons/health/stethoscope-fill.svg);mask-image:url(../../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../../icons/health/stethoscope-line.svg);mask-image:url(../../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../../icons/health/surgical-mask-fill.svg);mask-image:url(../../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../../icons/health/surgical-mask-line.svg);mask-image:url(../../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../../icons/health/syringe-fill.svg);mask-image:url(../../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../../icons/health/syringe-line.svg);mask-image:url(../../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../../icons/health/test-tube-fill.svg);mask-image:url(../../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../../icons/health/test-tube-line.svg);mask-image:url(../../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../../icons/health/thermometer-fill.svg);mask-image:url(../../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../../icons/health/thermometer-line.svg);mask-image:url(../../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../../icons/health/virus-fill.svg);mask-image:url(../../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../../icons/health/virus-line.svg);mask-image:url(../../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../../icons/logo/chrome-fill.svg);mask-image:url(../../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../../icons/logo/chrome-line.svg);mask-image:url(../../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../../icons/logo/edge-fill.svg);mask-image:url(../../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../../icons/logo/edge-line.svg);mask-image:url(../../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../../icons/logo/firefox-fill.svg);mask-image:url(../../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../../icons/logo/firefox-line.svg);mask-image:url(../../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../../icons/logo/fr--tiktok-fill.svg);mask-image:url(../../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../../icons/logo/fr--tiktok-line.svg);mask-image:url(../../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../../icons/logo/github-fill.svg);mask-image:url(../../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../../icons/logo/github-line.svg);mask-image:url(../../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../../icons/logo/google-fill.svg);mask-image:url(../../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../../icons/logo/google-line.svg);mask-image:url(../../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../../icons/logo/ie-fill.svg);mask-image:url(../../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../../icons/logo/ie-line.svg);mask-image:url(../../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../../icons/logo/instagram-line.svg);mask-image:url(../../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../../icons/logo/mastodon-fill.svg);mask-image:url(../../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../../icons/logo/mastodon-line.svg);mask-image:url(../../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../../icons/logo/npmjs-fill.svg);mask-image:url(../../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../../icons/logo/npmjs-line.svg);mask-image:url(../../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../../icons/logo/remixicon-fill.svg);mask-image:url(../../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../../icons/logo/remixicon-line.svg);mask-image:url(../../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../../icons/logo/safari-fill.svg);mask-image:url(../../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../../icons/logo/safari-line.svg);mask-image:url(../../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../../icons/logo/slack-fill.svg);mask-image:url(../../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../../icons/logo/slack-line.svg);mask-image:url(../../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../../icons/logo/snapchat-fill.svg);mask-image:url(../../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../../icons/logo/snapchat-line.svg);mask-image:url(../../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../../icons/logo/telegram-fill.svg);mask-image:url(../../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../../icons/logo/telegram-line.svg);mask-image:url(../../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../../icons/logo/threads-fill.svg);mask-image:url(../../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../../icons/logo/threads-line.svg);mask-image:url(../../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../../icons/logo/twitch-fill.svg);mask-image:url(../../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../../icons/logo/twitch-line.svg);mask-image:url(../../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../../icons/logo/twitter-x-fill.svg);mask-image:url(../../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../../icons/logo/twitter-x-line.svg);mask-image:url(../../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../../icons/logo/vimeo-fill.svg);mask-image:url(../../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../../icons/logo/vimeo-line.svg);mask-image:url(../../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../../icons/logo/vuejs-fill.svg);mask-image:url(../../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../../icons/logo/vuejs-line.svg);mask-image:url(../../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../../icons/logo/whatsapp-fill.svg);mask-image:url(../../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../../icons/logo/whatsapp-line.svg);mask-image:url(../../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../../icons/logo/youtube-line.svg);mask-image:url(../../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../../icons/logo/github-fill.svg);mask-image:url(../../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../../icons/logo/github-line.svg);mask-image:url(../../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../../icons/logo/instagram-line.svg);mask-image:url(../../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../../icons/logo/npmjs-fill.svg);mask-image:url(../../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../../icons/logo/npmjs-line.svg);mask-image:url(../../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../../icons/logo/remixicon-fill.svg);mask-image:url(../../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../../icons/logo/remixicon-line.svg);mask-image:url(../../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../../icons/logo/slack-fill.svg);mask-image:url(../../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../../icons/logo/slack-line.svg);mask-image:url(../../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../../icons/logo/snapchat-fill.svg);mask-image:url(../../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../../icons/logo/snapchat-line.svg);mask-image:url(../../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../../icons/logo/telegram-fill.svg);mask-image:url(../../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../../icons/logo/telegram-line.svg);mask-image:url(../../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../../icons/logo/twitch-fill.svg);mask-image:url(../../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../../icons/logo/twitch-line.svg);mask-image:url(../../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../../icons/logo/vimeo-fill.svg);mask-image:url(../../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../../icons/logo/vimeo-line.svg);mask-image:url(../../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../../icons/logo/youtube-line.svg);mask-image:url(../../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../../icons/map/anchor-fill.svg);mask-image:url(../../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../../icons/map/anchor-line.svg);mask-image:url(../../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../../icons/map/bike-fill.svg);mask-image:url(../../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../../icons/map/bike-line.svg);mask-image:url(../../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../../icons/map/bus-fill.svg);mask-image:url(../../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../../icons/map/bus-line.svg);mask-image:url(../../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../../icons/map/car-fill.svg);mask-image:url(../../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../../icons/map/car-line.svg);mask-image:url(../../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../../icons/map/caravan-fill.svg);mask-image:url(../../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../../icons/map/caravan-line.svg);mask-image:url(../../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../../icons/map/charging-pile-2-fill.svg);mask-image:url(../../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../../icons/map/charging-pile-2-line.svg);mask-image:url(../../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../../icons/map/compass-3-fill.svg);mask-image:url(../../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../../icons/map/compass-3-line.svg);mask-image:url(../../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../../icons/map/cup-fill.svg);mask-image:url(../../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../../icons/map/cup-line.svg);mask-image:url(../../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../../icons/map/earth-fill.svg);mask-image:url(../../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../../icons/map/earth-line.svg);mask-image:url(../../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../../icons/map/france-fill.svg);mask-image:url(../../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../../icons/map/france-line.svg);mask-image:url(../../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../../icons/map/gas-station-fill.svg);mask-image:url(../../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../../icons/map/gas-station-line.svg);mask-image:url(../../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../../icons/map/goblet-fill.svg);mask-image:url(../../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../../icons/map/goblet-line.svg);mask-image:url(../../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../../icons/map/map-pin-2-fill.svg);mask-image:url(../../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../../icons/map/map-pin-2-line.svg);mask-image:url(../../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../../icons/map/map-pin-user-fill.svg);mask-image:url(../../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../../icons/map/map-pin-user-line.svg);mask-image:url(../../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../../icons/map/motorbike-fill.svg);mask-image:url(../../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../../icons/map/motorbike-line.svg);mask-image:url(../../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../../icons/map/passport-fill.svg);mask-image:url(../../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../../icons/map/passport-line.svg);mask-image:url(../../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../../icons/map/restaurant-fill.svg);mask-image:url(../../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../../icons/map/restaurant-line.svg);mask-image:url(../../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../../icons/map/road-map-fill.svg);mask-image:url(../../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../../icons/map/road-map-line.svg);mask-image:url(../../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../../icons/map/sailboat-fill.svg);mask-image:url(../../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../../icons/map/sailboat-line.svg);mask-image:url(../../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../../icons/map/ship-2-fill.svg);mask-image:url(../../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../../icons/map/ship-2-line.svg);mask-image:url(../../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../../icons/map/signal-tower-fill.svg);mask-image:url(../../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../../icons/map/signal-tower-line.svg);mask-image:url(../../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../../icons/map/suitcase-2-fill.svg);mask-image:url(../../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../../icons/map/suitcase-2-line.svg);mask-image:url(../../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../../icons/map/taxi-fill.svg);mask-image:url(../../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../../icons/map/taxi-line.svg);mask-image:url(../../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../../icons/map/train-fill.svg);mask-image:url(../../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../../icons/map/train-line.svg);mask-image:url(../../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../../icons/map/map-pin-2-fill.svg);mask-image:url(../../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../../icons/map/map-pin-2-line.svg);mask-image:url(../../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../../icons/map/road-map-fill.svg);mask-image:url(../../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../../icons/map/road-map-line.svg);mask-image:url(../../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../../icons/media/align-left.svg);mask-image:url(../../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../../icons/media/camera-fill.svg);mask-image:url(../../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../../icons/media/camera-line.svg);mask-image:url(../../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../../icons/media/clapperboard-fill.svg);mask-image:url(../../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../../icons/media/clapperboard-line.svg);mask-image:url(../../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../../icons/media/equalizer-fill.svg);mask-image:url(../../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../../icons/media/equalizer-line.svg);mask-image:url(../../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../../icons/media/film-fill.svg);mask-image:url(../../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../../icons/media/film-line.svg);mask-image:url(../../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../../icons/media/fullscreen-line.svg);mask-image:url(../../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../../icons/media/gallery-fill.svg);mask-image:url(../../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../../icons/media/gallery-line.svg);mask-image:url(../../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../../icons/media/headphone-fill.svg);mask-image:url(../../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../../icons/media/headphone-line.svg);mask-image:url(../../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../../icons/media/image-add-fill.svg);mask-image:url(../../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../../icons/media/image-add-line.svg);mask-image:url(../../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../../icons/media/image-edit-fill.svg);mask-image:url(../../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../../icons/media/image-edit-line.svg);mask-image:url(../../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../../icons/media/image-fill.svg);mask-image:url(../../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../../icons/media/image-line.svg);mask-image:url(../../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../../icons/media/live-fill.svg);mask-image:url(../../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../../icons/media/live-line.svg);mask-image:url(../../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../../icons/media/mic-fill.svg);mask-image:url(../../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../../icons/media/mic-line.svg);mask-image:url(../../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../../icons/media/music-2-fill.svg);mask-image:url(../../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../../icons/media/music-2-line.svg);mask-image:url(../../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../../icons/media/notification-3-fill.svg);mask-image:url(../../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../../icons/media/notification-3-line.svg);mask-image:url(../../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../../icons/media/pause-circle-fill.svg);mask-image:url(../../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../../icons/media/pause-circle-line.svg);mask-image:url(../../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../../icons/media/play-circle-fill.svg);mask-image:url(../../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../../icons/media/play-circle-line.svg);mask-image:url(../../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../../icons/media/stop-circle-fill.svg);mask-image:url(../../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../../icons/media/stop-circle-line.svg);mask-image:url(../../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../../icons/media/volume-down-fill.svg);mask-image:url(../../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../../icons/media/volume-down-line.svg);mask-image:url(../../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../../icons/media/volume-mute-fill.svg);mask-image:url(../../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../../icons/media/volume-mute-line.svg);mask-image:url(../../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../../icons/media/volume-up-fill.svg);mask-image:url(../../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../../icons/media/volume-up-line.svg);mask-image:url(../../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../../icons/media/equalizer-fill.svg);mask-image:url(../../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../../icons/media/equalizer-line.svg);mask-image:url(../../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../../icons/media/image-fill.svg);mask-image:url(../../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../../icons/media/image-line.svg);mask-image:url(../../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../../icons/media/pause-circle-fill.svg);mask-image:url(../../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../../icons/media/pause-circle-line.svg);mask-image:url(../../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../../icons/media/volume-down-fill.svg);mask-image:url(../../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../../icons/media/volume-down-line.svg);mask-image:url(../../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../../icons/media/volume-mute-fill.svg);mask-image:url(../../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../../icons/media/volume-mute-line.svg);mask-image:url(../../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../../icons/media/volume-up-fill.svg);mask-image:url(../../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../../icons/media/volume-up-line.svg);mask-image:url(../../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../../icons/media/play-circle-line.svg);mask-image:url(../../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../../icons/media/play-circle-fill.svg);mask-image:url(../../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../../icons/media/play-circle-line.svg);mask-image:url(../../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../../icons/media/play-circle-fill.svg);mask-image:url(../../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../../icons/others/fr--accessibility-fill.svg);mask-image:url(../../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../../icons/others/fr--accessibility-line.svg);mask-image:url(../../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../../icons/others/fr--ear-off-fill.svg);mask-image:url(../../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../../icons/others/fr--ear-off-line.svg);mask-image:url(../../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../../icons/others/fr--sign-language-fill.svg);mask-image:url(../../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../../icons/others/fr--sign-language-line.svg);mask-image:url(../../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../../icons/others/leaf-fill.svg);mask-image:url(../../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../../icons/others/leaf-line.svg);mask-image:url(../../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../../icons/others/lightbulb-fill.svg);mask-image:url(../../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../../icons/others/lightbulb-line.svg);mask-image:url(../../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../../icons/others/plant-fill.svg);mask-image:url(../../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../../icons/others/plant-line.svg);mask-image:url(../../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../../icons/others/recycle-fill.svg);mask-image:url(../../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../../icons/others/recycle-line.svg);mask-image:url(../../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../../icons/others/scales-3-fill.svg);mask-image:url(../../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../../icons/others/scales-3-line.svg);mask-image:url(../../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../../icons/others/seedling-fill.svg);mask-image:url(../../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../../icons/others/seedling-line.svg);mask-image:url(../../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../../icons/others/umbrella-fill.svg);mask-image:url(../../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../../icons/others/umbrella-line.svg);mask-image:url(../../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../../icons/others/wheelchair-fill.svg);mask-image:url(../../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../../icons/others/wheelchair-line.svg);mask-image:url(../../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../../icons/system/add-circle-fill.svg);mask-image:url(../../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../../icons/system/add-circle-line.svg);mask-image:url(../../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../../icons/system/add-line.svg);mask-image:url(../../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../../icons/system/alarm-warning-fill.svg);mask-image:url(../../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../../icons/system/alarm-warning-line.svg);mask-image:url(../../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../../icons/system/alert-fill.svg);mask-image:url(../../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../../icons/system/alert-line.svg);mask-image:url(../../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../../icons/system/arrow-down-fill.svg);mask-image:url(../../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-line.svg);mask-image:url(../../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-down-s-fill.svg);mask-image:url(../../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-line.svg);mask-image:url(../../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../../icons/system/arrow-go-forward-fill.svg);mask-image:url(../../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../../icons/system/arrow-go-forward-line.svg);mask-image:url(../../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../../icons/system/arrow-left-fill.svg);mask-image:url(../../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-line.svg);mask-image:url(../../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-left-s-fill.svg);mask-image:url(../../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../../icons/system/arrow-right-fill.svg);mask-image:url(../../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-right-s-fill.svg);mask-image:url(../../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-up-line.svg);mask-image:url(../../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-down-line.svg);mask-image:url(../../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../../icons/system/arrow-up-fill.svg);mask-image:url(../../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-up-s-fill.svg);mask-image:url(../../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-s-line.svg);mask-image:url(../../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../../icons/system/check-line.svg);mask-image:url(../../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../../icons/system/checkbox-circle-fill.svg);mask-image:url(../../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../../icons/system/checkbox-circle-line.svg);mask-image:url(../../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../../icons/system/checkbox-fill.svg);mask-image:url(../../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../../icons/system/checkbox-line.svg);mask-image:url(../../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../../icons/system/close-circle-fill.svg);mask-image:url(../../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../../icons/system/close-circle-line.svg);mask-image:url(../../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../../icons/system/delete-bin-fill.svg);mask-image:url(../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../../icons/system/delete-bin-line.svg);mask-image:url(../../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../../icons/system/download-fill.svg);mask-image:url(../../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../../icons/system/error-warning-line.svg);mask-image:url(../../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../../icons/system/external-link-fill.svg);mask-image:url(../../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../../icons/system/eye-fill.svg);mask-image:url(../../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../../icons/system/eye-line.svg);mask-image:url(../../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../../icons/system/eye-off-fill.svg);mask-image:url(../../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../../icons/system/eye-off-line.svg);mask-image:url(../../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../../icons/system/filter-fill.svg);mask-image:url(../../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../../icons/system/filter-line.svg);mask-image:url(../../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../../icons/system/fr--capslock-line.svg);mask-image:url(../../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../../icons/system/fr--equal-circle-fill.svg);mask-image:url(../../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../../icons/system/fr--error-line.svg);mask-image:url(../../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../../icons/system/fr--info-line.svg);mask-image:url(../../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../../icons/system/fr--success-line.svg);mask-image:url(../../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../../icons/system/fr--warning-line.svg);mask-image:url(../../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../../icons/system/information-fill.svg);mask-image:url(../../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../../icons/system/information-line.svg);mask-image:url(../../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../../icons/system/lock-fill.svg);mask-image:url(../../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../../icons/system/lock-line.svg);mask-image:url(../../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../../icons/system/lock-unlock-fill.svg);mask-image:url(../../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../../icons/system/lock-unlock-line.svg);mask-image:url(../../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../../icons/system/logout-box-r-fill.svg);mask-image:url(../../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../../icons/system/logout-box-r-line.svg);mask-image:url(../../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../../icons/system/more-fill.svg);mask-image:url(../../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../../icons/system/more-line.svg);mask-image:url(../../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../../icons/system/notification-badge-fill.svg);mask-image:url(../../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../../icons/system/notification-badge-line.svg);mask-image:url(../../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../../icons/system/question-fill.svg);mask-image:url(../../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../../icons/system/refresh-fill.svg);mask-image:url(../../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../../icons/system/refresh-line.svg);mask-image:url(../../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../../icons/system/search-fill.svg);mask-image:url(../../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../../icons/system/settings-5-fill.svg);mask-image:url(../../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../../icons/system/settings-5-line.svg);mask-image:url(../../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../../icons/system/shield-fill.svg);mask-image:url(../../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../../icons/system/shield-line.svg);mask-image:url(../../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../../icons/system/star-fill.svg);mask-image:url(../../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../../icons/system/star-line.svg);mask-image:url(../../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../../icons/system/star-s-fill.svg);mask-image:url(../../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../../icons/system/star-s-line.svg);mask-image:url(../../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../../icons/system/subtract-line.svg);mask-image:url(../../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../../icons/system/thumb-down-fill.svg);mask-image:url(../../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../../icons/system/thumb-down-line.svg);mask-image:url(../../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../../icons/system/thumb-up-fill.svg);mask-image:url(../../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../../icons/system/thumb-up-line.svg);mask-image:url(../../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../../icons/system/time-fill.svg);mask-image:url(../../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../../icons/system/time-line.svg);mask-image:url(../../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../../icons/system/timer-fill.svg);mask-image:url(../../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../../icons/system/timer-line.svg);mask-image:url(../../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../../icons/system/upload-2-fill.svg);mask-image:url(../../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../../icons/system/upload-2-line.svg);mask-image:url(../../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../../icons/system/upload-fill.svg);mask-image:url(../../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../../icons/system/upload-line.svg);mask-image:url(../../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../../icons/system/zoom-in-fill.svg);mask-image:url(../../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../../icons/system/zoom-in-line.svg);mask-image:url(../../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../../icons/system/zoom-out-fill.svg);mask-image:url(../../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../../icons/system/zoom-out-line.svg);mask-image:url(../../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../../icons/system/add-circle-fill.svg);mask-image:url(../../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../../icons/system/add-circle-line.svg);mask-image:url(../../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../../icons/system/add-line.svg);mask-image:url(../../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-line.svg);mask-image:url(../../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-line.svg);mask-image:url(../../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-line.svg);mask-image:url(../../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-up-line.svg);mask-image:url(../../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../../icons/system/arrow-up-fill.svg);mask-image:url(../../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-s-line.svg);mask-image:url(../../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../../icons/system/check-line.svg);mask-image:url(../../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../../icons/system/checkbox-circle-line.svg);mask-image:url(../../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../../icons/system/error-warning-line.svg);mask-image:url(../../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../../icons/system/eye-fill.svg);mask-image:url(../../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../../icons/system/eye-line.svg);mask-image:url(../../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../../icons/system/eye-off-fill.svg);mask-image:url(../../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../../icons/system/eye-off-line.svg);mask-image:url(../../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../../icons/system/filter-fill.svg);mask-image:url(../../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../../icons/system/filter-line.svg);mask-image:url(../../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../../icons/system/fr--error-line.svg);mask-image:url(../../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../../icons/system/fr--info-line.svg);mask-image:url(../../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../../icons/system/fr--success-line.svg);mask-image:url(../../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../../icons/system/fr--warning-line.svg);mask-image:url(../../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../../icons/system/information-fill.svg);mask-image:url(../../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../../icons/system/information-line.svg);mask-image:url(../../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../../icons/system/lock-fill.svg);mask-image:url(../../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../../icons/system/lock-line.svg);mask-image:url(../../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../../icons/system/logout-box-r-fill.svg);mask-image:url(../../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../../icons/system/logout-box-r-line.svg);mask-image:url(../../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../../icons/system/question-fill.svg);mask-image:url(../../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../../icons/system/refresh-fill.svg);mask-image:url(../../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../../icons/system/refresh-line.svg);mask-image:url(../../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../../icons/system/search-fill.svg);mask-image:url(../../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../../icons/system/subtract-line.svg);mask-image:url(../../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../../icons/system/timer-fill.svg);mask-image:url(../../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../../icons/system/timer-line.svg);mask-image:url(../../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../../icons/system/upload-2-fill.svg);mask-image:url(../../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../../icons/system/upload-2-line.svg);mask-image:url(../../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../../icons/system/zoom-in-fill.svg);mask-image:url(../../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../../icons/system/zoom-in-line.svg);mask-image:url(../../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../../icons/system/zoom-out-fill.svg);mask-image:url(../../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../../icons/system/zoom-out-line.svg);mask-image:url(../../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../../icons/system/delete-bin-line.svg);mask-image:url(../../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../../icons/system/delete-bin-fill.svg);mask-image:url(../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../../icons/system/delete-bin-line.svg);mask-image:url(../../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../../icons/system/delete-bin-fill.svg);mask-image:url(../../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../../icons/user/account-circle-line.svg);mask-image:url(../../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../../icons/user/account-pin-circle-fill.svg);mask-image:url(../../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../../icons/user/account-pin-circle-line.svg);mask-image:url(../../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../../icons/user/admin-fill.svg);mask-image:url(../../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../../icons/user/admin-line.svg);mask-image:url(../../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../../icons/user/group-fill.svg);mask-image:url(../../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../../icons/user/group-line.svg);mask-image:url(../../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../../icons/user/parent-fill.svg);mask-image:url(../../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../../icons/user/parent-line.svg);mask-image:url(../../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../../icons/user/team-fill.svg);mask-image:url(../../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../../icons/user/team-line.svg);mask-image:url(../../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../../icons/user/user-add-fill.svg);mask-image:url(../../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../../icons/user/user-add-line.svg);mask-image:url(../../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../../icons/user/user-fill.svg);mask-image:url(../../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../../icons/user/user-heart-fill.svg);mask-image:url(../../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../../icons/user/user-heart-line.svg);mask-image:url(../../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../../icons/user/user-line.svg);mask-image:url(../../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../../icons/user/user-search-fill.svg);mask-image:url(../../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../../icons/user/user-search-line.svg);mask-image:url(../../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../../icons/user/user-setting-fill.svg);mask-image:url(../../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../../icons/user/user-setting-line.svg);mask-image:url(../../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../../icons/user/user-star-fill.svg);mask-image:url(../../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../../icons/user/user-star-line.svg);mask-image:url(../../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../../icons/user/user-fill.svg);mask-image:url(../../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../../icons/user/user-line.svg);mask-image:url(../../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../../icons/user/account-circle-line.svg);mask-image:url(../../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../../icons/user/account-circle-line.svg);mask-image:url(../../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../../icons/weather/cloudy-2-fill.svg);mask-image:url(../../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../../icons/weather/cloudy-2-line.svg);mask-image:url(../../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../../icons/weather/fire-fill.svg);mask-image:url(../../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../../icons/weather/fire-line.svg);mask-image:url(../../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../../icons/weather/flashlight-line.svg);mask-image:url(../../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../../icons/weather/flood-fill.svg);mask-image:url(../../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../../icons/weather/flood-line.svg);mask-image:url(../../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../../icons/weather/fr--avalanches-fill.svg);mask-image:url(../../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../../icons/weather/fr--submersion-fill.svg);mask-image:url(../../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../../icons/weather/heavy-showers-line.svg);mask-image:url(../../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../../icons/weather/moon-fill.svg);mask-image:url(../../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../../icons/weather/moon-line.svg);mask-image:url(../../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../../icons/weather/snowy-fill.svg);mask-image:url(../../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../../icons/weather/snowy-line.svg);mask-image:url(../../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../../icons/weather/sparkling-2-fill.svg);mask-image:url(../../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../../icons/weather/sparkling-2-line.svg);mask-image:url(../../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../../icons/weather/sun-fill.svg);mask-image:url(../../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../../icons/weather/sun-line.svg);mask-image:url(../../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../../icons/weather/temp-cold-fill.svg);mask-image:url(../../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../../icons/weather/temp-cold-line.svg);mask-image:url(../../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../../icons/weather/thunderstorms-fill.svg);mask-image:url(../../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../../icons/weather/thunderstorms-line.svg);mask-image:url(../../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../../icons/weather/tornado-fill.svg);mask-image:url(../../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../../icons/weather/tornado-line.svg);mask-image:url(../../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../../icons/weather/typhoon-fill.svg);mask-image:url(../../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../../icons/weather/typhoon-line.svg);mask-image:url(../../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../../icons/weather/windy-fill.svg);mask-image:url(../../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../../icons/weather/windy-line.svg);mask-image:url(../../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../../icons/weather/flashlight-line.svg);mask-image:url(../../icons/weather/flashlight-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ diff --git a/dsfr/static/dsfr/dist/utility/icons/icons.min.css b/dsfr/static/dsfr/dist/utility/icons/icons.min.css index fe3e643cc..ab82e4329 100644 --- a/dsfr/static/dsfr/dist/utility/icons/icons.min.css +++ b/dsfr/static/dsfr/dist/utility/icons/icons.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../../icons/buildings/ancient-gate-fill.svg);mask-image:url(../../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../../icons/buildings/ancient-gate-line.svg);mask-image:url(../../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../../icons/buildings/bank-fill.svg);mask-image:url(../../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../../icons/buildings/bank-line.svg);mask-image:url(../../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../../icons/buildings/building-fill.svg);mask-image:url(../../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../../icons/buildings/building-line.svg);mask-image:url(../../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../../icons/buildings/community-fill.svg);mask-image:url(../../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../../icons/buildings/community-line.svg);mask-image:url(../../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../../icons/buildings/government-fill.svg);mask-image:url(../../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../../icons/buildings/government-line.svg);mask-image:url(../../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../../icons/buildings/home-4-fill.svg);mask-image:url(../../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../../icons/buildings/home-4-line.svg);mask-image:url(../../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../../icons/buildings/hospital-fill.svg);mask-image:url(../../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../../icons/buildings/hospital-line.svg);mask-image:url(../../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../../icons/buildings/hotel-fill.svg);mask-image:url(../../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../../icons/buildings/hotel-line.svg);mask-image:url(../../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../../icons/buildings/store-fill.svg);mask-image:url(../../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../../icons/buildings/store-line.svg);mask-image:url(../../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../../icons/buildings/home-4-fill.svg);mask-image:url(../../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../../icons/buildings/home-4-line.svg);mask-image:url(../../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../../icons/business/archive-fill.svg);mask-image:url(../../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../../icons/business/archive-line.svg);mask-image:url(../../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../../icons/business/attachment-fill.svg);mask-image:url(../../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../../icons/business/attachment-line.svg);mask-image:url(../../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../../icons/business/award-fill.svg);mask-image:url(../../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../../icons/business/award-line.svg);mask-image:url(../../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../../icons/business/bar-chart-box-fill.svg);mask-image:url(../../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../../icons/business/bar-chart-box-line.svg);mask-image:url(../../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../../icons/business/bookmark-fill.svg);mask-image:url(../../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../../icons/business/bookmark-line.svg);mask-image:url(../../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../../icons/business/briefcase-fill.svg);mask-image:url(../../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../../icons/business/briefcase-line.svg);mask-image:url(../../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../../icons/business/calendar-2-fill.svg);mask-image:url(../../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../../icons/business/calendar-2-line.svg);mask-image:url(../../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../../icons/business/calendar-event-fill.svg);mask-image:url(../../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../../icons/business/calendar-event-line.svg);mask-image:url(../../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../../icons/business/calendar-fill.svg);mask-image:url(../../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../../icons/business/calendar-line.svg);mask-image:url(../../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../../icons/business/cloud-fill.svg);mask-image:url(../../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../../icons/business/cloud-line.svg);mask-image:url(../../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../../icons/business/copyright-fill.svg);mask-image:url(../../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../../icons/business/copyright-line.svg);mask-image:url(../../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../../icons/business/customer-service-fill.svg);mask-image:url(../../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../../icons/business/customer-service-line.svg);mask-image:url(../../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../../icons/business/flag-fill.svg);mask-image:url(../../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../../icons/business/flag-line.svg);mask-image:url(../../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../../icons/business/global-fill.svg);mask-image:url(../../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../../icons/business/global-line.svg);mask-image:url(../../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../../icons/business/line-chart-fill.svg);mask-image:url(../../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../../icons/business/line-chart-line.svg);mask-image:url(../../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../../icons/business/links-line.svg);mask-image:url(../../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../../icons/business/mail-fill.svg);mask-image:url(../../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../../icons/business/mail-open-fill.svg);mask-image:url(../../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../../icons/business/mail-open-line.svg);mask-image:url(../../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../../icons/business/medal-fill.svg);mask-image:url(../../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../../icons/business/medal-line.svg);mask-image:url(../../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../../icons/business/pie-chart-2-fill.svg);mask-image:url(../../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../../icons/business/pie-chart-2-line.svg);mask-image:url(../../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../../icons/business/pie-chart-box-fill.svg);mask-image:url(../../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../../icons/business/pie-chart-box-line.svg);mask-image:url(../../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../../icons/business/printer-fill.svg);mask-image:url(../../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../../icons/business/printer-line.svg);mask-image:url(../../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../../icons/business/profil-fill.svg);mask-image:url(../../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../../icons/business/profil-line.svg);mask-image:url(../../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../../icons/business/projector-2-fill.svg);mask-image:url(../../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../../icons/business/projector-2-line.svg);mask-image:url(../../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../../icons/business/send-plane-fill.svg);mask-image:url(../../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../../icons/business/send-plane-line.svg);mask-image:url(../../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../../icons/business/slideshow-fill.svg);mask-image:url(../../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../../icons/business/slideshow-line.svg);mask-image:url(../../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../../icons/business/window-fill.svg);mask-image:url(../../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../../icons/business/window-line.svg);mask-image:url(../../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../../icons/business/attachment-fill.svg);mask-image:url(../../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../../icons/business/attachment-line.svg);mask-image:url(../../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../../icons/business/calendar-fill.svg);mask-image:url(../../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../../icons/business/calendar-line.svg);mask-image:url(../../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../../icons/business/line-chart-fill.svg);mask-image:url(../../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../../icons/business/line-chart-line.svg);mask-image:url(../../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../../icons/business/links-fill.svg);mask-image:url(../../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../../icons/business/mail-fill.svg);mask-image:url(../../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../../icons/business/mail-line.svg);mask-image:url(../../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../../icons/business/printer-fill.svg);mask-image:url(../../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../../icons/business/printer-line.svg);mask-image:url(../../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../../icons/communication/chat-2-fill.svg);mask-image:url(../../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../../icons/communication/chat-2-line.svg);mask-image:url(../../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../../icons/communication/chat-3-fill.svg);mask-image:url(../../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../../icons/communication/chat-3-line.svg);mask-image:url(../../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../../icons/communication/chat-check-fill.svg);mask-image:url(../../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../../icons/communication/chat-check-line.svg);mask-image:url(../../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../../icons/communication/chat-delete-fill.svg);mask-image:url(../../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../../icons/communication/chat-delete-line.svg);mask-image:url(../../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../../icons/communication/chat-poll-fill.svg);mask-image:url(../../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../../icons/communication/chat-poll-line.svg);mask-image:url(../../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../../icons/communication/discuss-fill.svg);mask-image:url(../../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../../icons/communication/discuss-line.svg);mask-image:url(../../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../../icons/communication/feedback-fill.svg);mask-image:url(../../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../../icons/communication/feedback-line.svg);mask-image:url(../../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../../icons/communication/message-2-fill.svg);mask-image:url(../../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../../icons/communication/message-2-line.svg);mask-image:url(../../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../../icons/communication/question-answer-fill.svg);mask-image:url(../../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../../icons/communication/question-answer-line.svg);mask-image:url(../../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../../icons/communication/questionnaire-fill.svg);mask-image:url(../../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../../icons/communication/questionnaire-line.svg);mask-image:url(../../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../../icons/communication/video-chat-fill.svg);mask-image:url(../../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../../icons/communication/video-chat-line.svg);mask-image:url(../../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../../icons/design/ball-pen-fill.svg);mask-image:url(../../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../../icons/design/ball-pen-line.svg);mask-image:url(../../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../../icons/design/brush-3-fill.svg);mask-image:url(../../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../../icons/design/brush-3-line.svg);mask-image:url(../../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../../icons/design/brush-fill.svg);mask-image:url(../../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../../icons/design/brush-line.svg);mask-image:url(../../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../../icons/design/contrast-fill.svg);mask-image:url(../../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../../icons/design/contrast-line.svg);mask-image:url(../../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../../icons/design/crop-fill.svg);mask-image:url(../../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../../icons/design/crop-line.svg);mask-image:url(../../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../../icons/design/drag-move-2-fill.svg);mask-image:url(../../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../../icons/design/drag-move-2-line.svg);mask-image:url(../../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../../icons/design/drop-fill.svg);mask-image:url(../../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../../icons/design/drop-line.svg);mask-image:url(../../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../../icons/design/edit-box-fill.svg);mask-image:url(../../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../../icons/design/edit-box-line.svg);mask-image:url(../../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../../icons/design/edit-fill.svg);mask-image:url(../../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../../icons/design/edit-line.svg);mask-image:url(../../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../../icons/design/ink-bottle-fill.svg);mask-image:url(../../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../../icons/design/ink-bottle-line.svg);mask-image:url(../../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../../icons/design/layout-grid-fill.svg);mask-image:url(../../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../../icons/design/layout-grid-line.svg);mask-image:url(../../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../../icons/design/mark-pen-fill.svg);mask-image:url(../../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../../icons/design/mark-pen-line.svg);mask-image:url(../../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../../icons/design/paint-brush-fill.svg);mask-image:url(../../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../../icons/design/paint-brush-line.svg);mask-image:url(../../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../../icons/design/paint-fill.svg);mask-image:url(../../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../../icons/design/paint-line.svg);mask-image:url(../../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../../icons/design/palette-fill.svg);mask-image:url(../../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../../icons/design/palette-line.svg);mask-image:url(../../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../../icons/design/pantone-fill.svg);mask-image:url(../../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../../icons/design/pantone-line.svg);mask-image:url(../../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../../icons/design/pen-nib-fill.svg);mask-image:url(../../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../../icons/design/pen-nib-line.svg);mask-image:url(../../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../../icons/design/pencil-fill.svg);mask-image:url(../../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../../icons/design/pencil-line.svg);mask-image:url(../../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../../icons/design/pencil-ruler-fill.svg);mask-image:url(../../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../../icons/design/pencil-ruler-line.svg);mask-image:url(../../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../../icons/design/shapes-fill.svg);mask-image:url(../../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../../icons/design/shapes-line.svg);mask-image:url(../../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../../icons/design/sip-fill.svg);mask-image:url(../../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../../icons/design/sip-line.svg);mask-image:url(../../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../../icons/design/table-fill.svg);mask-image:url(../../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../../icons/design/table-line.svg);mask-image:url(../../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../../icons/design/edit-fill.svg);mask-image:url(../../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../../icons/design/edit-line.svg);mask-image:url(../../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../../icons/development/bug-fill.svg);mask-image:url(../../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../../icons/development/bug-line.svg);mask-image:url(../../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../../icons/development/code-box-fill.svg);mask-image:url(../../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../../icons/development/code-box-line.svg);mask-image:url(../../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../../icons/development/code-s-slash-line.svg);mask-image:url(../../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../../icons/development/cursor-fill.svg);mask-image:url(../../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../../icons/development/cursor-line.svg);mask-image:url(../../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../../icons/development/git-branch-fill.svg);mask-image:url(../../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../../icons/development/git-branch-line.svg);mask-image:url(../../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../../icons/development/git-commit-fill.svg);mask-image:url(../../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../../icons/development/git-commit-line.svg);mask-image:url(../../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../../icons/development/git-merge-fill.svg);mask-image:url(../../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../../icons/development/git-merge-line.svg);mask-image:url(../../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../../icons/development/git-pull-request-fill.svg);mask-image:url(../../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../../icons/development/git-pull-request-line.svg);mask-image:url(../../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../../icons/development/git-repository-commits-fill.svg);mask-image:url(../../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../../icons/development/git-repository-commits-line.svg);mask-image:url(../../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../../icons/development/git-repository-fill.svg);mask-image:url(../../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../../icons/development/git-repository-line.svg);mask-image:url(../../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../../icons/development/git-repository-private-fill.svg);mask-image:url(../../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../../icons/development/git-repository-private-line.svg);mask-image:url(../../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../../icons/development/terminal-box-fill.svg);mask-image:url(../../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../../icons/development/terminal-box-line.svg);mask-image:url(../../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../../icons/development/terminal-line.svg);mask-image:url(../../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../../icons/development/terminal-window-fill.svg);mask-image:url(../../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../../icons/development/terminal-window-line.svg);mask-image:url(../../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../../icons/device/bluetooth-fill.svg);mask-image:url(../../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../../icons/device/bluetooth-line.svg);mask-image:url(../../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../../icons/device/computer-fill.svg);mask-image:url(../../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../../icons/device/computer-line.svg);mask-image:url(../../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../../icons/device/dashboard-3-fill.svg);mask-image:url(../../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../../icons/device/dashboard-3-line.svg);mask-image:url(../../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../../icons/device/database-fill.svg);mask-image:url(../../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../../icons/device/database-line.svg);mask-image:url(../../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../../icons/device/device-fill.svg);mask-image:url(../../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../../icons/device/device-line.svg);mask-image:url(../../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../../icons/device/hard-drive-2-fill.svg);mask-image:url(../../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../../icons/device/hard-drive-2-line.svg);mask-image:url(../../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../../icons/device/mac-fill.svg);mask-image:url(../../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../../icons/device/mac-line.svg);mask-image:url(../../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../../icons/device/phone-fill.svg);mask-image:url(../../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../../icons/device/phone-line.svg);mask-image:url(../../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../../icons/device/qr-code-fill.svg);mask-image:url(../../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../../icons/device/qr-code-line.svg);mask-image:url(../../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../../icons/device/rss-fill.svg);mask-image:url(../../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../../icons/device/rss-line.svg);mask-image:url(../../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../../icons/device/save-3-fill.svg);mask-image:url(../../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../../icons/device/save-3-line.svg);mask-image:url(../../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../../icons/device/save-fill.svg);mask-image:url(../../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../../icons/device/save-line.svg);mask-image:url(../../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../../icons/device/server-fill.svg);mask-image:url(../../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../../icons/device/server-line.svg);mask-image:url(../../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../../icons/device/smartphone-fill.svg);mask-image:url(../../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../../icons/device/smartphone-line.svg);mask-image:url(../../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../../icons/device/tablet-fill.svg);mask-image:url(../../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../../icons/device/tablet-line.svg);mask-image:url(../../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../../icons/device/tv-fill.svg);mask-image:url(../../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../../icons/device/tv-line.svg);mask-image:url(../../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../../icons/device/wifi-fill.svg);mask-image:url(../../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../../icons/device/wifi-line.svg);mask-image:url(../../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../../icons/device/phone-fill.svg);mask-image:url(../../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../../icons/device/phone-line.svg);mask-image:url(../../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../../icons/device/rss-fill.svg);mask-image:url(../../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../../icons/device/rss-line.svg);mask-image:url(../../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../../icons/device/save-fill.svg);mask-image:url(../../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../../icons/device/save-line.svg);mask-image:url(../../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../../icons/document/article-fill.svg);mask-image:url(../../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../../icons/document/article-line.svg);mask-image:url(../../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../../icons/document/book-2-fill.svg);mask-image:url(../../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../../icons/document/book-2-line.svg);mask-image:url(../../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../../icons/document/booklet-fill.svg);mask-image:url(../../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../../icons/document/booklet-line.svg);mask-image:url(../../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../../icons/document/clipboard-fill.svg);mask-image:url(../../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../../icons/document/clipboard-line.svg);mask-image:url(../../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../../icons/document/draft-fill.svg);mask-image:url(../../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../../icons/document/draft-line.svg);mask-image:url(../../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../../icons/document/file-add-fill.svg);mask-image:url(../../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../../icons/document/file-add-line.svg);mask-image:url(../../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../../icons/document/file-download-fill.svg);mask-image:url(../../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../../icons/document/file-download-line.svg);mask-image:url(../../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../../icons/document/file-fill.svg);mask-image:url(../../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../../icons/document/file-line.svg);mask-image:url(../../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../../icons/document/file-pdf-fill.svg);mask-image:url(../../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../../icons/document/file-pdf-line.svg);mask-image:url(../../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../../icons/document/file-text-fill.svg);mask-image:url(../../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../../icons/document/file-text-line.svg);mask-image:url(../../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../../icons/document/folder-2-fill.svg);mask-image:url(../../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../../icons/document/folder-2-line.svg);mask-image:url(../../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../../icons/document/newspaper-fill.svg);mask-image:url(../../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../../icons/document/newspaper-line.svg);mask-image:url(../../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../../icons/document/survey-fill.svg);mask-image:url(../../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../../icons/document/survey-line.svg);mask-image:url(../../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../../icons/document/todo-fill.svg);mask-image:url(../../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../../icons/document/todo-line.svg);mask-image:url(../../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../../icons/document/file-download-fill.svg);mask-image:url(../../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../../icons/document/file-download-line.svg);mask-image:url(../../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../../icons/document/file-fill.svg);mask-image:url(../../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../../icons/document/file-line.svg);mask-image:url(../../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../../icons/document/file-pdf-fill.svg);mask-image:url(../../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../../icons/document/file-pdf-line.svg);mask-image:url(../../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../../icons/editor/code-view.svg);mask-image:url(../../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../../icons/editor/font-size.svg);mask-image:url(../../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../../icons/editor/fr--bold.svg);mask-image:url(../../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../../icons/editor/fr--highlight.svg);mask-image:url(../../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../../icons/editor/fr--quote-fill.svg);mask-image:url(../../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../../icons/editor/fr--quote-line.svg);mask-image:url(../../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../../icons/editor/h-1.svg);mask-image:url(../../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../../icons/editor/h-2.svg);mask-image:url(../../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../../icons/editor/h-3.svg);mask-image:url(../../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../../icons/editor/h-4.svg);mask-image:url(../../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../../icons/editor/h-5.svg);mask-image:url(../../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../../icons/editor/h-6.svg);mask-image:url(../../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../../icons/editor/hashtag.svg);mask-image:url(../../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../../icons/editor/italic.svg);mask-image:url(../../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../../icons/editor/link-unlink.svg);mask-image:url(../../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../../icons/editor/link.svg);mask-image:url(../../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../../icons/editor/list-ordered.svg);mask-image:url(../../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../../icons/editor/list-unordered.svg);mask-image:url(../../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../../icons/editor/question-mark.svg);mask-image:url(../../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../../icons/editor/separator.svg);mask-image:url(../../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../../icons/editor/space.svg);mask-image:url(../../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../../icons/editor/subscript.svg);mask-image:url(../../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../../icons/editor/superscript.svg);mask-image:url(../../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../../icons/editor/table-2.svg);mask-image:url(../../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../../icons/editor/translate-2.svg);mask-image:url(../../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../../icons/editor/font-size.svg);mask-image:url(../../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../../icons/editor/fr--bold.svg);mask-image:url(../../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../../icons/editor/fr--highlight.svg);mask-image:url(../../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../../icons/editor/italic.svg);mask-image:url(../../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../../icons/editor/link-unlink.svg);mask-image:url(../../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../../icons/editor/list-ordered.svg);mask-image:url(../../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../../icons/editor/list-unordered.svg);mask-image:url(../../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../../icons/finance/bank-card-fill.svg);mask-image:url(../../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../../icons/finance/bank-card-line.svg);mask-image:url(../../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../../icons/finance/coin-fill.svg);mask-image:url(../../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../../icons/finance/gift-fill.svg);mask-image:url(../../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../../icons/finance/gift-line.svg);mask-image:url(../../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../../icons/finance/money-euro-box-fill.svg);mask-image:url(../../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../../icons/finance/money-euro-box-line.svg);mask-image:url(../../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../../icons/finance/money-euro-circle-fill.svg);mask-image:url(../../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../../icons/finance/money-euro-circle-line.svg);mask-image:url(../../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../../icons/finance/secure-payment-fill.svg);mask-image:url(../../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../../icons/finance/secure-payment-line.svg);mask-image:url(../../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../../icons/finance/shopping-bag-fill.svg);mask-image:url(../../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../../icons/finance/shopping-bag-line.svg);mask-image:url(../../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../../icons/finance/shopping-cart-2-line.svg);mask-image:url(../../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../../icons/finance/trophy-fill.svg);mask-image:url(../../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../../icons/finance/trophy-line.svg);mask-image:url(../../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../../icons/health/capsule-fill.svg);mask-image:url(../../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../../icons/health/capsule-line.svg);mask-image:url(../../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../../icons/health/dislike-fill.svg);mask-image:url(../../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../../icons/health/dislike-line.svg);mask-image:url(../../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../../icons/health/dossier-fill.svg);mask-image:url(../../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../../icons/health/dossier-line.svg);mask-image:url(../../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../../icons/health/first-aid-kit-fill.svg);mask-image:url(../../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../../icons/health/first-aid-kit-line.svg);mask-image:url(../../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../../icons/health/hand-sanitizer-fill.svg);mask-image:url(../../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../../icons/health/hand-sanitizer-line.svg);mask-image:url(../../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../../icons/health/health-book-fill.svg);mask-image:url(../../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../../icons/health/health-book-line.svg);mask-image:url(../../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../../icons/health/heart-fill.svg);mask-image:url(../../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../../icons/health/heart-line.svg);mask-image:url(../../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../../icons/health/heart-pulse-fill.svg);mask-image:url(../../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../../icons/health/heart-pulse-line.svg);mask-image:url(../../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../../icons/health/lungs-fill.svg);mask-image:url(../../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../../icons/health/lungs-line.svg);mask-image:url(../../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../../icons/health/medicine-bottle-fill.svg);mask-image:url(../../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../../icons/health/medicine-bottle-line.svg);mask-image:url(../../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../../icons/health/mental-health-fill.svg);mask-image:url(../../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../../icons/health/mental-health-line.svg);mask-image:url(../../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../../icons/health/microscope-fill.svg);mask-image:url(../../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../../icons/health/microscope-line.svg);mask-image:url(../../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../../icons/health/psychotherapy-fill.svg);mask-image:url(../../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../../icons/health/psychotherapy-line.svg);mask-image:url(../../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../../icons/health/pulse-line.svg);mask-image:url(../../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../../icons/health/stethoscope-fill.svg);mask-image:url(../../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../../icons/health/stethoscope-line.svg);mask-image:url(../../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../../icons/health/surgical-mask-fill.svg);mask-image:url(../../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../../icons/health/surgical-mask-line.svg);mask-image:url(../../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../../icons/health/syringe-fill.svg);mask-image:url(../../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../../icons/health/syringe-line.svg);mask-image:url(../../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../../icons/health/test-tube-fill.svg);mask-image:url(../../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../../icons/health/test-tube-line.svg);mask-image:url(../../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../../icons/health/thermometer-fill.svg);mask-image:url(../../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../../icons/health/thermometer-line.svg);mask-image:url(../../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../../icons/health/virus-fill.svg);mask-image:url(../../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../../icons/health/virus-line.svg);mask-image:url(../../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../../icons/logo/chrome-fill.svg);mask-image:url(../../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../../icons/logo/chrome-line.svg);mask-image:url(../../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../../icons/logo/edge-fill.svg);mask-image:url(../../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../../icons/logo/edge-line.svg);mask-image:url(../../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../../icons/logo/firefox-fill.svg);mask-image:url(../../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../../icons/logo/firefox-line.svg);mask-image:url(../../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../../icons/logo/fr--tiktok-fill.svg);mask-image:url(../../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../../icons/logo/fr--tiktok-line.svg);mask-image:url(../../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../../icons/logo/github-fill.svg);mask-image:url(../../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../../icons/logo/github-line.svg);mask-image:url(../../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../../icons/logo/google-fill.svg);mask-image:url(../../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../../icons/logo/google-line.svg);mask-image:url(../../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../../icons/logo/ie-fill.svg);mask-image:url(../../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../../icons/logo/ie-line.svg);mask-image:url(../../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../../icons/logo/instagram-line.svg);mask-image:url(../../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../../icons/logo/mastodon-fill.svg);mask-image:url(../../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../../icons/logo/mastodon-line.svg);mask-image:url(../../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../../icons/logo/npmjs-fill.svg);mask-image:url(../../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../../icons/logo/npmjs-line.svg);mask-image:url(../../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../../icons/logo/remixicon-fill.svg);mask-image:url(../../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../../icons/logo/remixicon-line.svg);mask-image:url(../../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../../icons/logo/safari-fill.svg);mask-image:url(../../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../../icons/logo/safari-line.svg);mask-image:url(../../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../../icons/logo/slack-fill.svg);mask-image:url(../../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../../icons/logo/slack-line.svg);mask-image:url(../../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../../icons/logo/snapchat-fill.svg);mask-image:url(../../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../../icons/logo/snapchat-line.svg);mask-image:url(../../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../../icons/logo/telegram-fill.svg);mask-image:url(../../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../../icons/logo/telegram-line.svg);mask-image:url(../../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../../icons/logo/threads-fill.svg);mask-image:url(../../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../../icons/logo/threads-line.svg);mask-image:url(../../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../../icons/logo/twitch-fill.svg);mask-image:url(../../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../../icons/logo/twitch-line.svg);mask-image:url(../../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../../icons/logo/twitter-x-fill.svg);mask-image:url(../../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../../icons/logo/twitter-x-line.svg);mask-image:url(../../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../../icons/logo/vimeo-fill.svg);mask-image:url(../../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../../icons/logo/vimeo-line.svg);mask-image:url(../../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../../icons/logo/vuejs-fill.svg);mask-image:url(../../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../../icons/logo/vuejs-line.svg);mask-image:url(../../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../../icons/logo/whatsapp-fill.svg);mask-image:url(../../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../../icons/logo/whatsapp-line.svg);mask-image:url(../../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../../icons/logo/youtube-line.svg);mask-image:url(../../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-fill.svg);mask-image:url(../../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../../icons/logo/facebook-circle-line.svg);mask-image:url(../../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../../icons/logo/fr--dailymotion-line.svg);mask-image:url(../../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../../icons/logo/github-fill.svg);mask-image:url(../../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../../icons/logo/github-line.svg);mask-image:url(../../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../../icons/logo/instagram-fill.svg);mask-image:url(../../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../../icons/logo/instagram-line.svg);mask-image:url(../../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-fill.svg);mask-image:url(../../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../../icons/logo/linkedin-box-line.svg);mask-image:url(../../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../../icons/logo/npmjs-fill.svg);mask-image:url(../../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../../icons/logo/npmjs-line.svg);mask-image:url(../../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../../icons/logo/remixicon-fill.svg);mask-image:url(../../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../../icons/logo/remixicon-line.svg);mask-image:url(../../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../../icons/logo/slack-fill.svg);mask-image:url(../../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../../icons/logo/slack-line.svg);mask-image:url(../../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../../icons/logo/snapchat-fill.svg);mask-image:url(../../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../../icons/logo/snapchat-line.svg);mask-image:url(../../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../../icons/logo/telegram-fill.svg);mask-image:url(../../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../../icons/logo/telegram-line.svg);mask-image:url(../../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../../icons/logo/twitch-fill.svg);mask-image:url(../../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../../icons/logo/twitch-line.svg);mask-image:url(../../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../../icons/logo/twitter-fill.svg);mask-image:url(../../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../../icons/logo/twitter-line.svg);mask-image:url(../../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../../icons/logo/vimeo-fill.svg);mask-image:url(../../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../../icons/logo/vimeo-line.svg);mask-image:url(../../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../../icons/logo/youtube-fill.svg);mask-image:url(../../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../../icons/logo/youtube-line.svg);mask-image:url(../../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../../icons/map/anchor-fill.svg);mask-image:url(../../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../../icons/map/anchor-line.svg);mask-image:url(../../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../../icons/map/bike-fill.svg);mask-image:url(../../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../../icons/map/bike-line.svg);mask-image:url(../../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../../icons/map/bus-fill.svg);mask-image:url(../../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../../icons/map/bus-line.svg);mask-image:url(../../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../../icons/map/car-fill.svg);mask-image:url(../../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../../icons/map/car-line.svg);mask-image:url(../../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../../icons/map/caravan-fill.svg);mask-image:url(../../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../../icons/map/caravan-line.svg);mask-image:url(../../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../../icons/map/charging-pile-2-fill.svg);mask-image:url(../../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../../icons/map/charging-pile-2-line.svg);mask-image:url(../../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../../icons/map/compass-3-fill.svg);mask-image:url(../../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../../icons/map/compass-3-line.svg);mask-image:url(../../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../../icons/map/cup-fill.svg);mask-image:url(../../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../../icons/map/cup-line.svg);mask-image:url(../../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../../icons/map/earth-fill.svg);mask-image:url(../../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../../icons/map/earth-line.svg);mask-image:url(../../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../../icons/map/france-fill.svg);mask-image:url(../../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../../icons/map/france-line.svg);mask-image:url(../../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../../icons/map/gas-station-fill.svg);mask-image:url(../../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../../icons/map/gas-station-line.svg);mask-image:url(../../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../../icons/map/goblet-fill.svg);mask-image:url(../../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../../icons/map/goblet-line.svg);mask-image:url(../../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../../icons/map/map-pin-2-fill.svg);mask-image:url(../../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../../icons/map/map-pin-2-line.svg);mask-image:url(../../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../../icons/map/map-pin-user-fill.svg);mask-image:url(../../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../../icons/map/map-pin-user-line.svg);mask-image:url(../../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../../icons/map/motorbike-fill.svg);mask-image:url(../../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../../icons/map/motorbike-line.svg);mask-image:url(../../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../../icons/map/passport-fill.svg);mask-image:url(../../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../../icons/map/passport-line.svg);mask-image:url(../../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../../icons/map/restaurant-fill.svg);mask-image:url(../../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../../icons/map/restaurant-line.svg);mask-image:url(../../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../../icons/map/road-map-fill.svg);mask-image:url(../../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../../icons/map/road-map-line.svg);mask-image:url(../../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../../icons/map/sailboat-fill.svg);mask-image:url(../../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../../icons/map/sailboat-line.svg);mask-image:url(../../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../../icons/map/ship-2-fill.svg);mask-image:url(../../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../../icons/map/ship-2-line.svg);mask-image:url(../../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../../icons/map/signal-tower-fill.svg);mask-image:url(../../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../../icons/map/signal-tower-line.svg);mask-image:url(../../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../../icons/map/suitcase-2-fill.svg);mask-image:url(../../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../../icons/map/suitcase-2-line.svg);mask-image:url(../../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../../icons/map/taxi-fill.svg);mask-image:url(../../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../../icons/map/taxi-line.svg);mask-image:url(../../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../../icons/map/train-fill.svg);mask-image:url(../../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../../icons/map/train-line.svg);mask-image:url(../../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../../icons/map/map-pin-2-fill.svg);mask-image:url(../../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../../icons/map/map-pin-2-line.svg);mask-image:url(../../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../../icons/map/road-map-fill.svg);mask-image:url(../../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../../icons/map/road-map-line.svg);mask-image:url(../../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../../icons/media/align-left.svg);mask-image:url(../../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../../icons/media/camera-fill.svg);mask-image:url(../../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../../icons/media/camera-line.svg);mask-image:url(../../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../../icons/media/clapperboard-fill.svg);mask-image:url(../../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../../icons/media/clapperboard-line.svg);mask-image:url(../../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../../icons/media/equalizer-fill.svg);mask-image:url(../../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../../icons/media/equalizer-line.svg);mask-image:url(../../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../../icons/media/film-fill.svg);mask-image:url(../../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../../icons/media/film-line.svg);mask-image:url(../../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../../icons/media/fullscreen-line.svg);mask-image:url(../../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../../icons/media/gallery-fill.svg);mask-image:url(../../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../../icons/media/gallery-line.svg);mask-image:url(../../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../../icons/media/headphone-fill.svg);mask-image:url(../../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../../icons/media/headphone-line.svg);mask-image:url(../../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../../icons/media/image-add-fill.svg);mask-image:url(../../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../../icons/media/image-add-line.svg);mask-image:url(../../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../../icons/media/image-edit-fill.svg);mask-image:url(../../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../../icons/media/image-edit-line.svg);mask-image:url(../../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../../icons/media/image-fill.svg);mask-image:url(../../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../../icons/media/image-line.svg);mask-image:url(../../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../../icons/media/live-fill.svg);mask-image:url(../../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../../icons/media/live-line.svg);mask-image:url(../../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../../icons/media/mic-fill.svg);mask-image:url(../../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../../icons/media/mic-line.svg);mask-image:url(../../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../../icons/media/music-2-fill.svg);mask-image:url(../../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../../icons/media/music-2-line.svg);mask-image:url(../../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../../icons/media/notification-3-fill.svg);mask-image:url(../../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../../icons/media/notification-3-line.svg);mask-image:url(../../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../../icons/media/pause-circle-fill.svg);mask-image:url(../../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../../icons/media/pause-circle-line.svg);mask-image:url(../../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../../icons/media/play-circle-fill.svg);mask-image:url(../../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../../icons/media/play-circle-line.svg);mask-image:url(../../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../../icons/media/stop-circle-fill.svg);mask-image:url(../../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../../icons/media/stop-circle-line.svg);mask-image:url(../../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../../icons/media/volume-down-fill.svg);mask-image:url(../../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../../icons/media/volume-down-line.svg);mask-image:url(../../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../../icons/media/volume-mute-fill.svg);mask-image:url(../../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../../icons/media/volume-mute-line.svg);mask-image:url(../../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../../icons/media/volume-up-fill.svg);mask-image:url(../../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../../icons/media/volume-up-line.svg);mask-image:url(../../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../../icons/media/equalizer-fill.svg);mask-image:url(../../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../../icons/media/equalizer-line.svg);mask-image:url(../../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../../icons/media/image-fill.svg);mask-image:url(../../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../../icons/media/image-line.svg);mask-image:url(../../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../../icons/media/pause-circle-fill.svg);mask-image:url(../../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../../icons/media/pause-circle-line.svg);mask-image:url(../../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../../icons/media/volume-down-fill.svg);mask-image:url(../../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../../icons/media/volume-down-line.svg);mask-image:url(../../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../../icons/media/volume-mute-fill.svg);mask-image:url(../../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../../icons/media/volume-mute-line.svg);mask-image:url(../../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../../icons/media/volume-up-fill.svg);mask-image:url(../../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../../icons/media/volume-up-line.svg);mask-image:url(../../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../../icons/media/play-circle-line.svg);mask-image:url(../../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../../icons/media/play-circle-fill.svg);mask-image:url(../../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../../icons/media/play-circle-line.svg);mask-image:url(../../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../../icons/media/play-circle-fill.svg);mask-image:url(../../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../../icons/others/fr--accessibility-fill.svg);mask-image:url(../../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../../icons/others/fr--accessibility-line.svg);mask-image:url(../../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../../icons/others/fr--ear-off-fill.svg);mask-image:url(../../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../../icons/others/fr--ear-off-line.svg);mask-image:url(../../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../../icons/others/fr--sign-language-fill.svg);mask-image:url(../../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../../icons/others/fr--sign-language-line.svg);mask-image:url(../../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../../icons/others/leaf-fill.svg);mask-image:url(../../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../../icons/others/leaf-line.svg);mask-image:url(../../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../../icons/others/lightbulb-fill.svg);mask-image:url(../../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../../icons/others/lightbulb-line.svg);mask-image:url(../../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../../icons/others/plant-fill.svg);mask-image:url(../../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../../icons/others/plant-line.svg);mask-image:url(../../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../../icons/others/recycle-fill.svg);mask-image:url(../../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../../icons/others/recycle-line.svg);mask-image:url(../../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../../icons/others/scales-3-fill.svg);mask-image:url(../../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../../icons/others/scales-3-line.svg);mask-image:url(../../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../../icons/others/seedling-fill.svg);mask-image:url(../../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../../icons/others/seedling-line.svg);mask-image:url(../../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../../icons/others/umbrella-fill.svg);mask-image:url(../../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../../icons/others/umbrella-line.svg);mask-image:url(../../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../../icons/others/wheelchair-fill.svg);mask-image:url(../../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../../icons/others/wheelchair-line.svg);mask-image:url(../../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../../icons/system/add-circle-fill.svg);mask-image:url(../../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../../icons/system/add-circle-line.svg);mask-image:url(../../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../../icons/system/add-line.svg);mask-image:url(../../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../../icons/system/alarm-warning-fill.svg);mask-image:url(../../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../../icons/system/alarm-warning-line.svg);mask-image:url(../../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../../icons/system/alert-fill.svg);mask-image:url(../../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../../icons/system/alert-line.svg);mask-image:url(../../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../../icons/system/arrow-down-fill.svg);mask-image:url(../../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-line.svg);mask-image:url(../../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-down-s-fill.svg);mask-image:url(../../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-line.svg);mask-image:url(../../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../../icons/system/arrow-go-forward-fill.svg);mask-image:url(../../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../../icons/system/arrow-go-forward-line.svg);mask-image:url(../../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../../icons/system/arrow-left-fill.svg);mask-image:url(../../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-line.svg);mask-image:url(../../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-left-s-fill.svg);mask-image:url(../../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../../icons/system/arrow-right-fill.svg);mask-image:url(../../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-right-s-fill.svg);mask-image:url(../../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-up-line.svg);mask-image:url(../../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-down-line.svg);mask-image:url(../../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../../icons/system/arrow-up-fill.svg);mask-image:url(../../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../../icons/system/arrow-up-s-fill.svg);mask-image:url(../../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-s-line.svg);mask-image:url(../../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../../icons/system/check-line.svg);mask-image:url(../../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../../icons/system/checkbox-circle-fill.svg);mask-image:url(../../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../../icons/system/checkbox-circle-line.svg);mask-image:url(../../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../../icons/system/checkbox-fill.svg);mask-image:url(../../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../../icons/system/checkbox-line.svg);mask-image:url(../../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../../icons/system/close-circle-fill.svg);mask-image:url(../../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../../icons/system/close-circle-line.svg);mask-image:url(../../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../../icons/system/delete-bin-fill.svg);mask-image:url(../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../../icons/system/delete-bin-line.svg);mask-image:url(../../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../../icons/system/download-fill.svg);mask-image:url(../../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../../icons/system/error-warning-line.svg);mask-image:url(../../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../../icons/system/external-link-fill.svg);mask-image:url(../../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../../icons/system/eye-fill.svg);mask-image:url(../../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../../icons/system/eye-line.svg);mask-image:url(../../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../../icons/system/eye-off-fill.svg);mask-image:url(../../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../../icons/system/eye-off-line.svg);mask-image:url(../../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../../icons/system/filter-fill.svg);mask-image:url(../../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../../icons/system/filter-line.svg);mask-image:url(../../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../../icons/system/fr--alert-warning-fill.svg);mask-image:url(../../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../../icons/system/fr--capslock-line.svg);mask-image:url(../../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../../icons/system/fr--equal-circle-fill.svg);mask-image:url(../../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../../icons/system/fr--error-line.svg);mask-image:url(../../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../../icons/system/fr--info-line.svg);mask-image:url(../../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../../icons/system/fr--success-line.svg);mask-image:url(../../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../../icons/system/fr--warning-line.svg);mask-image:url(../../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../../icons/system/information-fill.svg);mask-image:url(../../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../../icons/system/information-line.svg);mask-image:url(../../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../../icons/system/lock-fill.svg);mask-image:url(../../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../../icons/system/lock-line.svg);mask-image:url(../../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../../icons/system/lock-unlock-fill.svg);mask-image:url(../../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../../icons/system/lock-unlock-line.svg);mask-image:url(../../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../../icons/system/logout-box-r-fill.svg);mask-image:url(../../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../../icons/system/logout-box-r-line.svg);mask-image:url(../../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../../icons/system/more-fill.svg);mask-image:url(../../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../../icons/system/more-line.svg);mask-image:url(../../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../../icons/system/notification-badge-fill.svg);mask-image:url(../../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../../icons/system/notification-badge-line.svg);mask-image:url(../../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../../icons/system/question-fill.svg);mask-image:url(../../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../../icons/system/refresh-fill.svg);mask-image:url(../../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../../icons/system/refresh-line.svg);mask-image:url(../../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../../icons/system/search-fill.svg);mask-image:url(../../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../../icons/system/settings-5-fill.svg);mask-image:url(../../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../../icons/system/settings-5-line.svg);mask-image:url(../../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../../icons/system/shield-fill.svg);mask-image:url(../../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../../icons/system/shield-line.svg);mask-image:url(../../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../../icons/system/star-fill.svg);mask-image:url(../../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../../icons/system/star-line.svg);mask-image:url(../../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../../icons/system/star-s-fill.svg);mask-image:url(../../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../../icons/system/star-s-line.svg);mask-image:url(../../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../../icons/system/subtract-line.svg);mask-image:url(../../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../../icons/system/thumb-down-fill.svg);mask-image:url(../../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../../icons/system/thumb-down-line.svg);mask-image:url(../../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../../icons/system/thumb-up-fill.svg);mask-image:url(../../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../../icons/system/thumb-up-line.svg);mask-image:url(../../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../../icons/system/time-fill.svg);mask-image:url(../../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../../icons/system/time-line.svg);mask-image:url(../../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../../icons/system/timer-fill.svg);mask-image:url(../../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../../icons/system/timer-line.svg);mask-image:url(../../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../../icons/system/upload-2-fill.svg);mask-image:url(../../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../../icons/system/upload-2-line.svg);mask-image:url(../../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../../icons/system/upload-fill.svg);mask-image:url(../../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../../icons/system/upload-line.svg);mask-image:url(../../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../../icons/system/zoom-in-fill.svg);mask-image:url(../../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../../icons/system/zoom-in-line.svg);mask-image:url(../../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../../icons/system/zoom-out-fill.svg);mask-image:url(../../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../../icons/system/zoom-out-line.svg);mask-image:url(../../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../../icons/system/add-circle-fill.svg);mask-image:url(../../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../../icons/system/add-circle-line.svg);mask-image:url(../../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../../icons/system/add-line.svg);mask-image:url(../../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-line.svg);mask-image:url(../../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-down-s-line.svg);mask-image:url(../../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-fill.svg);mask-image:url(../../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../../icons/system/arrow-go-back-line.svg);mask-image:url(../../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-line.svg);mask-image:url(../../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-left-s-line.svg);mask-image:url(../../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-line.svg);mask-image:url(../../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-s-line.svg);mask-image:url(../../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-right-up-line.svg);mask-image:url(../../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../../icons/system/arrow-up-fill.svg);mask-image:url(../../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-line.svg);mask-image:url(../../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../../icons/system/arrow-up-s-line.svg);mask-image:url(../../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../../icons/system/check-line.svg);mask-image:url(../../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../../icons/system/checkbox-circle-line.svg);mask-image:url(../../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../../icons/system/close-line.svg);mask-image:url(../../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../../icons/system/download-line.svg);mask-image:url(../../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../../icons/system/error-warning-fill.svg);mask-image:url(../../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../../icons/system/error-warning-line.svg);mask-image:url(../../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../../icons/system/external-link-line.svg);mask-image:url(../../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../../icons/system/eye-fill.svg);mask-image:url(../../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../../icons/system/eye-line.svg);mask-image:url(../../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../../icons/system/eye-off-fill.svg);mask-image:url(../../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../../icons/system/eye-off-line.svg);mask-image:url(../../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../../icons/system/filter-fill.svg);mask-image:url(../../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../../icons/system/filter-line.svg);mask-image:url(../../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../../icons/system/fr--error-fill.svg);mask-image:url(../../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../../icons/system/fr--error-line.svg);mask-image:url(../../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../../icons/system/fr--info-fill.svg);mask-image:url(../../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../../icons/system/fr--info-line.svg);mask-image:url(../../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../../icons/system/fr--success-fill.svg);mask-image:url(../../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../../icons/system/fr--success-line.svg);mask-image:url(../../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../../icons/system/fr--theme-fill.svg);mask-image:url(../../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../../icons/system/fr--warning-fill.svg);mask-image:url(../../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../../icons/system/fr--warning-line.svg);mask-image:url(../../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../../icons/system/information-fill.svg);mask-image:url(../../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../../icons/system/information-line.svg);mask-image:url(../../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../../icons/system/lock-fill.svg);mask-image:url(../../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../../icons/system/lock-line.svg);mask-image:url(../../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../../icons/system/logout-box-r-fill.svg);mask-image:url(../../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../../icons/system/logout-box-r-line.svg);mask-image:url(../../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../../icons/system/menu-2-fill.svg);mask-image:url(../../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../../icons/system/menu-fill.svg);mask-image:url(../../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../../icons/system/question-fill.svg);mask-image:url(../../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../../icons/system/question-line.svg);mask-image:url(../../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../../icons/system/refresh-fill.svg);mask-image:url(../../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../../icons/system/refresh-line.svg);mask-image:url(../../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../../icons/system/search-fill.svg);mask-image:url(../../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../../icons/system/search-line.svg);mask-image:url(../../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../../icons/system/subtract-line.svg);mask-image:url(../../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../../icons/system/timer-fill.svg);mask-image:url(../../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../../icons/system/timer-line.svg);mask-image:url(../../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../../icons/system/upload-2-fill.svg);mask-image:url(../../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../../icons/system/upload-2-line.svg);mask-image:url(../../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../../icons/system/zoom-in-fill.svg);mask-image:url(../../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../../icons/system/zoom-in-line.svg);mask-image:url(../../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../../icons/system/zoom-out-fill.svg);mask-image:url(../../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../../icons/system/zoom-out-line.svg);mask-image:url(../../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../../icons/system/delete-bin-line.svg);mask-image:url(../../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../../icons/system/delete-bin-fill.svg);mask-image:url(../../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../../icons/system/delete-bin-line.svg);mask-image:url(../../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../../icons/system/delete-bin-fill.svg);mask-image:url(../../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../../icons/user/account-circle-line.svg);mask-image:url(../../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../../icons/user/account-pin-circle-fill.svg);mask-image:url(../../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../../icons/user/account-pin-circle-line.svg);mask-image:url(../../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../../icons/user/admin-fill.svg);mask-image:url(../../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../../icons/user/admin-line.svg);mask-image:url(../../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../../icons/user/group-fill.svg);mask-image:url(../../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../../icons/user/group-line.svg);mask-image:url(../../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../../icons/user/parent-fill.svg);mask-image:url(../../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../../icons/user/parent-line.svg);mask-image:url(../../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../../icons/user/team-fill.svg);mask-image:url(../../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../../icons/user/team-line.svg);mask-image:url(../../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../../icons/user/user-add-fill.svg);mask-image:url(../../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../../icons/user/user-add-line.svg);mask-image:url(../../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../../icons/user/user-fill.svg);mask-image:url(../../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../../icons/user/user-heart-fill.svg);mask-image:url(../../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../../icons/user/user-heart-line.svg);mask-image:url(../../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../../icons/user/user-line.svg);mask-image:url(../../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../../icons/user/user-search-fill.svg);mask-image:url(../../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../../icons/user/user-search-line.svg);mask-image:url(../../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../../icons/user/user-setting-fill.svg);mask-image:url(../../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../../icons/user/user-setting-line.svg);mask-image:url(../../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../../icons/user/user-star-fill.svg);mask-image:url(../../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../../icons/user/user-star-line.svg);mask-image:url(../../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../../icons/user/user-fill.svg);mask-image:url(../../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../../icons/user/user-line.svg);mask-image:url(../../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../../icons/user/account-circle-line.svg);mask-image:url(../../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../../icons/user/account-circle-line.svg);mask-image:url(../../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../../icons/user/account-circle-fill.svg);mask-image:url(../../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../../icons/weather/cloudy-2-fill.svg);mask-image:url(../../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../../icons/weather/cloudy-2-line.svg);mask-image:url(../../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../../icons/weather/fire-fill.svg);mask-image:url(../../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../../icons/weather/fire-line.svg);mask-image:url(../../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../../icons/weather/flashlight-line.svg);mask-image:url(../../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../../icons/weather/flood-fill.svg);mask-image:url(../../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../../icons/weather/flood-line.svg);mask-image:url(../../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../../icons/weather/fr--avalanches-fill.svg);mask-image:url(../../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../../icons/weather/fr--submersion-fill.svg);mask-image:url(../../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../../icons/weather/heavy-showers-fill.svg);mask-image:url(../../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../../icons/weather/heavy-showers-line.svg);mask-image:url(../../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../../icons/weather/moon-fill.svg);mask-image:url(../../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../../icons/weather/moon-line.svg);mask-image:url(../../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../../icons/weather/snowy-fill.svg);mask-image:url(../../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../../icons/weather/snowy-line.svg);mask-image:url(../../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../../icons/weather/sparkling-2-fill.svg);mask-image:url(../../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../../icons/weather/sparkling-2-line.svg);mask-image:url(../../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../../icons/weather/sun-fill.svg);mask-image:url(../../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../../icons/weather/sun-line.svg);mask-image:url(../../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../../icons/weather/temp-cold-fill.svg);mask-image:url(../../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../../icons/weather/temp-cold-line.svg);mask-image:url(../../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../../icons/weather/thunderstorms-fill.svg);mask-image:url(../../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../../icons/weather/thunderstorms-line.svg);mask-image:url(../../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../../icons/weather/tornado-fill.svg);mask-image:url(../../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../../icons/weather/tornado-line.svg);mask-image:url(../../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../../icons/weather/typhoon-fill.svg);mask-image:url(../../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../../icons/weather/typhoon-line.svg);mask-image:url(../../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../../icons/weather/windy-fill.svg);mask-image:url(../../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../../icons/weather/windy-line.svg);mask-image:url(../../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../../icons/weather/flashlight-fill.svg);mask-image:url(../../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../../icons/weather/flashlight-line.svg);mask-image:url(../../icons/weather/flashlight-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ diff --git a/dsfr/static/dsfr/dist/utility/utility.legacy.min.css b/dsfr/static/dsfr/dist/utility/utility.legacy.min.css index c990f5cd8..a4bea2a64 100644 --- a/dsfr/static/dsfr/dist/utility/utility.legacy.min.css +++ b/dsfr/static/dsfr/dist/utility/utility.legacy.min.css @@ -1,5 +1,5 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) */@media (min-width:36em){ /*! media sm */ /*! media sm */ @@ -76,4 +76,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{background-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{background-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{background-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{background-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{background-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{background-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{background-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{background-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{background-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{background-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{background-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{background-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{background-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{background-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{background-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{background-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{background-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{background-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{background-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{background-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{background-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{background-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{background-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{background-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{background-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{background-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{background-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{background-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{background-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{background-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{background-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{background-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{background-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{background-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{background-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{background-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{background-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{background-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{background-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{background-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{background-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{background-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{background-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{background-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{background-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{background-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{background-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{background-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{background-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{background-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{background-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{background-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{background-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{background-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{background-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{background-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{background-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{background-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{background-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{background-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{background-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{background-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{background-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{background-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{background-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{background-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{background-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{background-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{background-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{background-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{background-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{background-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{background-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{background-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{background-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{background-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{background-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{background-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{background-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{background-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{background-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{background-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{background-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{background-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{background-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{background-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{background-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{background-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{background-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{background-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{background-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{background-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{background-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{background-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{background-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{background-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{background-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{background-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{background-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{background-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{background-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{background-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{background-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{background-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{background-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{background-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{background-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{background-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{background-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{background-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{background-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{background-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{background-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{background-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{background-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{background-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{background-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{background-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{background-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{background-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{background-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{background-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{background-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{background-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{background-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{background-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{background-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{background-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{background-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{background-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{background-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{background-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{background-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{background-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{background-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{background-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{background-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{background-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{background-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{background-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{background-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{background-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{background-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{background-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{background-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{background-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{background-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{background-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{background-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{background-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{background-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{background-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{background-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{background-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{background-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{background-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{background-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{background-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{background-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{background-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{background-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{background-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{background-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{background-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{background-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{background-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{background-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{background-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{background-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{background-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{background-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{background-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{background-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{background-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{background-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{background-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{background-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{background-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{background-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{background-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{background-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{background-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{background-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{background-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{background-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{background-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{background-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{background-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{background-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{background-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{background-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{background-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{background-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{background-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{background-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{background-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{background-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{background-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{background-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{background-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{background-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{background-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{background-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{background-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{background-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{background-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{background-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{background-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{background-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{background-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{background-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{background-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{background-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{background-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{background-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{background-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{background-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{background-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{background-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{background-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{background-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{background-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{background-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{background-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{background-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{background-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{background-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{background-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{background-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{background-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{background-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{background-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{background-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{background-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{background-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{background-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{background-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{background-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{background-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{background-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{background-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{background-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{background-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{background-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{background-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{background-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{background-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{background-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{background-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{background-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{background-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{background-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{background-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{background-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{background-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{background-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{background-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{background-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{background-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{background-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{background-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{background-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{background-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{background-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{background-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{background-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{background-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{background-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{background-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{background-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{background-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{background-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{background-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{background-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{background-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{background-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{background-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{background-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{background-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{background-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{background-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{background-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{background-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{background-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{background-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{background-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{background-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{background-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{background-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{background-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{background-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{background-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{background-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{background-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{background-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{background-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{background-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{background-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{background-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{background-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{background-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{background-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{background-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{background-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{background-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{background-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{background-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{background-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{background-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{background-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{background-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{background-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{background-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{background-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{background-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{background-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{background-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{background-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{background-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{background-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{background-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{background-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{background-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{background-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{background-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{background-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{background-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{background-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{background-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{background-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{background-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{background-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{background-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{background-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{background-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{background-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{background-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{background-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{background-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{background-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{background-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{background-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{background-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{background-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{background-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{background-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{background-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{background-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{background-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{background-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{background-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{background-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{background-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{background-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{background-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{background-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{background-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{background-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{background-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{background-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{background-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{background-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{background-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{background-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{background-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{background-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{background-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{background-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{background-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{background-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{background-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{background-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{background-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{background-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{background-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{background-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{background-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{background-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{background-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{background-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{background-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{background-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{background-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{background-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{background-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{background-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{background-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{background-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{background-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{background-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{background-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{background-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{background-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{background-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{background-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{background-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{background-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{background-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{background-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{background-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{background-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{background-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{background-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{background-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{background-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{background-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{background-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{background-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{background-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{background-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{background-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{background-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{background-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{background-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{background-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{background-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{background-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{background-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{background-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{background-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{background-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{background-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{background-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{background-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{background-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{background-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{background-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{background-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{background-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{background-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{background-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{background-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{background-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{background-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{background-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{background-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{background-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{background-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{background-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{background-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{background-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{background-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{background-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{background-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{background-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{background-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{background-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{background-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{background-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{background-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{background-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{background-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{background-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{background-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{background-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{background-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{background-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{background-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{background-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{background-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{background-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{background-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{background-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{background-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{background-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{background-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{background-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{background-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{background-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{background-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{background-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{background-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{background-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{background-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{background-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{background-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{background-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{background-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{background-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{background-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{background-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{background-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{background-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{background-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{background-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{background-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{background-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{background-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{background-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{background-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{background-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{background-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{background-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{background-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{background-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{background-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{background-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{background-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{background-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{background-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{background-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{background-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{background-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{background-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{background-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{background-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{background-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{background-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{background-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{background-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{background-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{background-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{background-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{background-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{background-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{background-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{background-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{background-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{background-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{background-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{background-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{background-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{background-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{background-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{background-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{background-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{background-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{background-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{background-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{background-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{background-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{background-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{background-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{background-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{background-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{background-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{background-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{background-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{background-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{background-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{background-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{background-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{background-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{background-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{background-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{background-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{background-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{background-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{background-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{background-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{background-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{background-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{background-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{background-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{background-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{background-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{background-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{background-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{background-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{background-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{background-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{background-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{background-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{background-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{background-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{background-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{background-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{background-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{background-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{background-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{background-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{background-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{background-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{background-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{background-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{background-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{background-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{background-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{background-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{background-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{background-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{background-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{background-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{background-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{background-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{background-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{background-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{background-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{background-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{background-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{background-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{background-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{background-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{background-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{background-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{background-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{background-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{background-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{background-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{background-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{background-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{background-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{background-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{background-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{background-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{background-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{background-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{background-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{background-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{background-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{background-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{background-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{background-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{background-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{background-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{background-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{background-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{background-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{background-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{background-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{background-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{background-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{background-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{background-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{background-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{background-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{background-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{background-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{background-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{background-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{background-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{background-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{background-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{background-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{background-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{background-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{background-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{background-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{background-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{background-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{background-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{background-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{background-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{background-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{background-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{background-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{background-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{background-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{background-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{background-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{background-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{background-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{background-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{background-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{background-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{background-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{background-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{background-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{background-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{background-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{background-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{background-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{background-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{background-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{background-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{background-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{background-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{background-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{background-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{background-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{background-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{background-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{background-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{background-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{background-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{background-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{background-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{background-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{background-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{background-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{background-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{background-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{background-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{background-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{background-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{background-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{background-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{background-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{background-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{background-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{background-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{background-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{background-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{background-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{background-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{background-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{background-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{background-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{background-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{background-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{background-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{background-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{background-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{background-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{background-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{background-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{background-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{background-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{background-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{background-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{background-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{background-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{background-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{background-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{background-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{background-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{background-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{background-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{background-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{background-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{background-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{background-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{background-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{background-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{background-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{background-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{background-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{background-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{background-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{background-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{background-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{background-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{background-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{background-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{background-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{background-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{background-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{background-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{background-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{background-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{background-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{background-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{background-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{background-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{background-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{background-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{background-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{background-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{background-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{background-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{background-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{background-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{background-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{background-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{background-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{background-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{background-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{background-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{background-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{background-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{background-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{background-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{background-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{background-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{background-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{background-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{background-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{background-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{background-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{background-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{background-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{background-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{background-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{background-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{background-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{background-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{background-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{background-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{background-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{background-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{background-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{background-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{background-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{background-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{background-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{background-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{background-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{background-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{background-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{background-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{background-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{background-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{background-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{background-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{background-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{background-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{background-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{background-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{background-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{background-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{background-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{background-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{background-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{background-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{background-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{background-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{background-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{background-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{background-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{background-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{background-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{background-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{background-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{background-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{background-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{background-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{background-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{background-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{background-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{background-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{background-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{background-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{background-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{background-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{background-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{background-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{background-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{background-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{background-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{background-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{background-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{background-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{background-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{background-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{background-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{background-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{background-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{background-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{background-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{background-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{background-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{background-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{background-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{background-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{background-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{background-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{background-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{background-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{background-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{background-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{background-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{background-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{background-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{background-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{background-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{background-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{background-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{background-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{background-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{background-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{background-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{background-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{background-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{background-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{background-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{background-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{background-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{background-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{background-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{background-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{background-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{background-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{background-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{background-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{background-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{background-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{background-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{background-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{background-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{background-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{background-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{background-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{background-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{background-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{background-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{background-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{background-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{background-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{background-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{background-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{background-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{background-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{background-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{background-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{background-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{background-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{background-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{background-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{background-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{background-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{background-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{background-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{background-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{background-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{background-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{background-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{background-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{background-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{background-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{background-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{background-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{background-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{background-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{background-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{background-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{background-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{background-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{background-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{background-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{background-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{background-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{background-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{background-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{background-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{background-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{background-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{background-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{background-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{background-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{background-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{background-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{background-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{background-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{background-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{background-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{background-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{background-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{background-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{background-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{background-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{background-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{background-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{background-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{background-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{background-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{background-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{background-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{background-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{background-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{background-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{background-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{background-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{background-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{background-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{background-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{background-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/utility/utility.main.min.css b/dsfr/static/dsfr/dist/utility/utility.main.min.css index 488cd1e5a..44e71645e 100644 --- a/dsfr/static/dsfr/dist/utility/utility.main.min.css +++ b/dsfr/static/dsfr/dist/utility/utility.main.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-fill.svg);mask-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-line.svg);mask-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../icons/buildings/bank-fill.svg);mask-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../icons/buildings/bank-line.svg);mask-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../icons/buildings/building-fill.svg);mask-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../icons/buildings/building-line.svg);mask-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../icons/buildings/community-fill.svg);mask-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../icons/buildings/community-line.svg);mask-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../icons/buildings/government-fill.svg);mask-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../icons/buildings/government-line.svg);mask-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../icons/buildings/hospital-fill.svg);mask-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../icons/buildings/hospital-line.svg);mask-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../icons/buildings/hotel-fill.svg);mask-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../icons/buildings/hotel-line.svg);mask-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../icons/buildings/store-fill.svg);mask-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../icons/buildings/store-line.svg);mask-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../icons/business/archive-fill.svg);mask-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../icons/business/archive-line.svg);mask-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../icons/business/award-fill.svg);mask-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../icons/business/award-line.svg);mask-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../icons/business/bar-chart-box-fill.svg);mask-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../icons/business/bar-chart-box-line.svg);mask-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../icons/business/bookmark-fill.svg);mask-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../icons/business/bookmark-line.svg);mask-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../icons/business/briefcase-line.svg);mask-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../icons/business/calendar-2-fill.svg);mask-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../icons/business/calendar-2-line.svg);mask-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../icons/business/calendar-event-fill.svg);mask-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../icons/business/calendar-event-line.svg);mask-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../icons/business/cloud-fill.svg);mask-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../icons/business/cloud-line.svg);mask-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../icons/business/copyright-fill.svg);mask-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../icons/business/copyright-line.svg);mask-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../icons/business/customer-service-fill.svg);mask-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../icons/business/customer-service-line.svg);mask-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../icons/business/flag-fill.svg);mask-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../icons/business/flag-line.svg);mask-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../icons/business/global-fill.svg);mask-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../icons/business/global-line.svg);mask-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../icons/business/links-line.svg);mask-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../icons/business/mail-open-fill.svg);mask-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../icons/business/mail-open-line.svg);mask-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../icons/business/medal-fill.svg);mask-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../icons/business/medal-line.svg);mask-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-2-fill.svg);mask-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../icons/business/pie-chart-2-line.svg);mask-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-box-fill.svg);mask-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../icons/business/pie-chart-box-line.svg);mask-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../icons/business/profil-fill.svg);mask-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../icons/business/profil-line.svg);mask-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../icons/business/projector-2-fill.svg);mask-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../icons/business/projector-2-line.svg);mask-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../icons/business/send-plane-fill.svg);mask-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../icons/business/send-plane-line.svg);mask-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../icons/business/slideshow-fill.svg);mask-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../icons/business/slideshow-line.svg);mask-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../icons/business/window-fill.svg);mask-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../icons/business/window-line.svg);mask-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../icons/communication/chat-2-fill.svg);mask-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../icons/communication/chat-2-line.svg);mask-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../icons/communication/chat-3-fill.svg);mask-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../icons/communication/chat-3-line.svg);mask-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../icons/communication/chat-check-fill.svg);mask-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../icons/communication/chat-check-line.svg);mask-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../icons/communication/chat-delete-fill.svg);mask-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../icons/communication/chat-delete-line.svg);mask-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../icons/communication/chat-poll-fill.svg);mask-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../icons/communication/chat-poll-line.svg);mask-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../icons/communication/discuss-fill.svg);mask-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../icons/communication/discuss-line.svg);mask-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../icons/communication/feedback-fill.svg);mask-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../icons/communication/feedback-line.svg);mask-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../icons/communication/message-2-fill.svg);mask-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../icons/communication/message-2-line.svg);mask-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../icons/communication/question-answer-fill.svg);mask-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../icons/communication/question-answer-line.svg);mask-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../icons/communication/questionnaire-fill.svg);mask-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../icons/communication/questionnaire-line.svg);mask-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../icons/communication/video-chat-fill.svg);mask-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../icons/communication/video-chat-line.svg);mask-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../icons/design/ball-pen-fill.svg);mask-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../icons/design/ball-pen-line.svg);mask-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../icons/design/brush-3-fill.svg);mask-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../icons/design/brush-3-line.svg);mask-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../icons/design/brush-fill.svg);mask-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../icons/design/brush-line.svg);mask-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../icons/design/contrast-fill.svg);mask-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../icons/design/contrast-line.svg);mask-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../icons/design/crop-fill.svg);mask-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../icons/design/crop-line.svg);mask-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../icons/design/drag-move-2-fill.svg);mask-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../icons/design/drag-move-2-line.svg);mask-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../icons/design/drop-fill.svg);mask-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../icons/design/drop-line.svg);mask-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../icons/design/edit-box-fill.svg);mask-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../icons/design/edit-box-line.svg);mask-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../icons/design/ink-bottle-fill.svg);mask-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../icons/design/ink-bottle-line.svg);mask-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../icons/design/layout-grid-fill.svg);mask-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../icons/design/layout-grid-line.svg);mask-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../icons/design/mark-pen-fill.svg);mask-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../icons/design/mark-pen-line.svg);mask-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../icons/design/paint-brush-fill.svg);mask-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../icons/design/paint-brush-line.svg);mask-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../icons/design/paint-fill.svg);mask-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../icons/design/paint-line.svg);mask-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../icons/design/palette-fill.svg);mask-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../icons/design/palette-line.svg);mask-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../icons/design/pantone-fill.svg);mask-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../icons/design/pantone-line.svg);mask-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../icons/design/pen-nib-fill.svg);mask-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../icons/design/pen-nib-line.svg);mask-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../icons/design/pencil-fill.svg);mask-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../icons/design/pencil-line.svg);mask-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../icons/design/pencil-ruler-fill.svg);mask-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../icons/design/pencil-ruler-line.svg);mask-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../icons/design/shapes-fill.svg);mask-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../icons/design/shapes-line.svg);mask-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../icons/design/sip-fill.svg);mask-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../icons/design/sip-line.svg);mask-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../icons/design/table-fill.svg);mask-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../icons/design/table-line.svg);mask-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../icons/development/bug-fill.svg);mask-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../icons/development/bug-line.svg);mask-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../icons/development/code-box-fill.svg);mask-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../icons/development/code-box-line.svg);mask-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../icons/development/code-s-slash-line.svg);mask-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../icons/development/cursor-fill.svg);mask-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../icons/development/cursor-line.svg);mask-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../icons/development/git-branch-fill.svg);mask-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../icons/development/git-branch-line.svg);mask-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../icons/development/git-commit-fill.svg);mask-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../icons/development/git-commit-line.svg);mask-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../icons/development/git-merge-fill.svg);mask-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../icons/development/git-merge-line.svg);mask-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../icons/development/git-pull-request-fill.svg);mask-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../icons/development/git-pull-request-line.svg);mask-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../icons/development/git-repository-commits-fill.svg);mask-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../icons/development/git-repository-commits-line.svg);mask-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../icons/development/git-repository-fill.svg);mask-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../icons/development/git-repository-line.svg);mask-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../icons/development/git-repository-private-fill.svg);mask-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../icons/development/git-repository-private-line.svg);mask-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../icons/development/terminal-box-fill.svg);mask-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../icons/development/terminal-box-line.svg);mask-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../icons/development/terminal-line.svg);mask-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../icons/development/terminal-window-fill.svg);mask-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../icons/development/terminal-window-line.svg);mask-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../icons/device/bluetooth-fill.svg);mask-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../icons/device/bluetooth-line.svg);mask-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../icons/device/computer-fill.svg);mask-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../icons/device/computer-line.svg);mask-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../icons/device/dashboard-3-fill.svg);mask-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../icons/device/dashboard-3-line.svg);mask-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../icons/device/database-fill.svg);mask-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../icons/device/database-line.svg);mask-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../icons/device/device-fill.svg);mask-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../icons/device/device-line.svg);mask-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../icons/device/hard-drive-2-fill.svg);mask-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../icons/device/hard-drive-2-line.svg);mask-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../icons/device/mac-fill.svg);mask-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../icons/device/mac-line.svg);mask-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../icons/device/qr-code-fill.svg);mask-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../icons/device/qr-code-line.svg);mask-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../icons/device/save-3-fill.svg);mask-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../icons/device/save-3-line.svg);mask-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../icons/device/server-fill.svg);mask-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../icons/device/server-line.svg);mask-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../icons/device/smartphone-fill.svg);mask-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../icons/device/smartphone-line.svg);mask-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../icons/device/tablet-fill.svg);mask-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../icons/device/tablet-line.svg);mask-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../icons/device/tv-fill.svg);mask-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../icons/device/tv-line.svg);mask-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../icons/device/wifi-fill.svg);mask-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../icons/device/wifi-line.svg);mask-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../icons/document/article-fill.svg);mask-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../icons/document/article-line.svg);mask-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../icons/document/book-2-fill.svg);mask-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../icons/document/book-2-line.svg);mask-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../icons/document/booklet-fill.svg);mask-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../icons/document/booklet-line.svg);mask-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../icons/document/clipboard-fill.svg);mask-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../icons/document/clipboard-line.svg);mask-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../icons/document/draft-fill.svg);mask-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../icons/document/draft-line.svg);mask-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../icons/document/file-add-fill.svg);mask-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../icons/document/file-add-line.svg);mask-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../icons/document/file-text-fill.svg);mask-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../icons/document/file-text-line.svg);mask-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../icons/document/folder-2-fill.svg);mask-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../icons/document/folder-2-line.svg);mask-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../icons/document/newspaper-fill.svg);mask-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../icons/document/newspaper-line.svg);mask-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../icons/document/survey-fill.svg);mask-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../icons/document/survey-line.svg);mask-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../icons/document/todo-fill.svg);mask-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../icons/document/todo-line.svg);mask-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../icons/editor/code-view.svg);mask-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../icons/editor/fr--quote-fill.svg);mask-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../icons/editor/h-1.svg);mask-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../icons/editor/h-2.svg);mask-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../icons/editor/h-3.svg);mask-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../icons/editor/h-4.svg);mask-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../icons/editor/h-5.svg);mask-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../icons/editor/h-6.svg);mask-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../icons/editor/hashtag.svg);mask-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../icons/editor/link.svg);mask-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../icons/editor/question-mark.svg);mask-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../icons/editor/separator.svg);mask-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../icons/editor/space.svg);mask-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../icons/editor/subscript.svg);mask-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../icons/editor/superscript.svg);mask-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../icons/editor/table-2.svg);mask-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../icons/finance/bank-card-fill.svg);mask-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../icons/finance/bank-card-line.svg);mask-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../icons/finance/coin-fill.svg);mask-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../icons/finance/gift-fill.svg);mask-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../icons/finance/gift-line.svg);mask-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-box-fill.svg);mask-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../icons/finance/money-euro-box-line.svg);mask-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-fill.svg);mask-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-line.svg);mask-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../icons/finance/secure-payment-fill.svg);mask-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../icons/finance/secure-payment-line.svg);mask-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../icons/finance/shopping-bag-fill.svg);mask-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../icons/finance/shopping-bag-line.svg);mask-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-line.svg);mask-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../icons/finance/trophy-fill.svg);mask-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../icons/finance/trophy-line.svg);mask-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../icons/health/capsule-fill.svg);mask-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../icons/health/capsule-line.svg);mask-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../icons/health/dislike-fill.svg);mask-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../icons/health/dislike-line.svg);mask-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../icons/health/dossier-fill.svg);mask-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../icons/health/dossier-line.svg);mask-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../icons/health/first-aid-kit-fill.svg);mask-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../icons/health/first-aid-kit-line.svg);mask-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-fill.svg);mask-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-line.svg);mask-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../icons/health/health-book-fill.svg);mask-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../icons/health/health-book-line.svg);mask-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../icons/health/heart-fill.svg);mask-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../icons/health/heart-line.svg);mask-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../icons/health/heart-pulse-fill.svg);mask-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../icons/health/heart-pulse-line.svg);mask-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../icons/health/lungs-fill.svg);mask-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../icons/health/lungs-line.svg);mask-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../icons/health/medicine-bottle-fill.svg);mask-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../icons/health/medicine-bottle-line.svg);mask-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../icons/health/mental-health-fill.svg);mask-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../icons/health/mental-health-line.svg);mask-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../icons/health/microscope-fill.svg);mask-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../icons/health/microscope-line.svg);mask-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../icons/health/psychotherapy-fill.svg);mask-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../icons/health/psychotherapy-line.svg);mask-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../icons/health/pulse-line.svg);mask-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../icons/health/stethoscope-fill.svg);mask-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../icons/health/stethoscope-line.svg);mask-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../icons/health/surgical-mask-fill.svg);mask-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../icons/health/surgical-mask-line.svg);mask-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../icons/health/syringe-fill.svg);mask-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../icons/health/syringe-line.svg);mask-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../icons/health/test-tube-fill.svg);mask-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../icons/health/test-tube-line.svg);mask-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../icons/health/thermometer-fill.svg);mask-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../icons/health/thermometer-line.svg);mask-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../icons/health/virus-fill.svg);mask-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../icons/health/virus-line.svg);mask-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../icons/logo/chrome-fill.svg);mask-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../icons/logo/chrome-line.svg);mask-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../icons/logo/edge-fill.svg);mask-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../icons/logo/edge-line.svg);mask-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../icons/logo/firefox-fill.svg);mask-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../icons/logo/firefox-line.svg);mask-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-line.svg);mask-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../icons/logo/google-fill.svg);mask-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../icons/logo/google-line.svg);mask-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../icons/logo/ie-fill.svg);mask-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../icons/logo/ie-line.svg);mask-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../icons/logo/safari-fill.svg);mask-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../icons/logo/safari-line.svg);mask-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../icons/logo/vuejs-fill.svg);mask-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../icons/logo/vuejs-line.svg);mask-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../icons/logo/whatsapp-fill.svg);mask-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../icons/logo/whatsapp-line.svg);mask-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../icons/map/anchor-fill.svg);mask-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../icons/map/anchor-line.svg);mask-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../icons/map/bike-fill.svg);mask-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../icons/map/bike-line.svg);mask-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../icons/map/bus-fill.svg);mask-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../icons/map/bus-line.svg);mask-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../icons/map/car-fill.svg);mask-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../icons/map/car-line.svg);mask-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../icons/map/caravan-fill.svg);mask-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../icons/map/caravan-line.svg);mask-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../icons/map/charging-pile-2-fill.svg);mask-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../icons/map/charging-pile-2-line.svg);mask-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../icons/map/compass-3-fill.svg);mask-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../icons/map/compass-3-line.svg);mask-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../icons/map/cup-fill.svg);mask-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../icons/map/cup-line.svg);mask-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../icons/map/earth-fill.svg);mask-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../icons/map/earth-line.svg);mask-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../icons/map/france-fill.svg);mask-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../icons/map/france-line.svg);mask-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../icons/map/gas-station-fill.svg);mask-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../icons/map/gas-station-line.svg);mask-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../icons/map/goblet-fill.svg);mask-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../icons/map/goblet-line.svg);mask-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../icons/map/map-pin-user-fill.svg);mask-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../icons/map/map-pin-user-line.svg);mask-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../icons/map/motorbike-fill.svg);mask-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../icons/map/motorbike-line.svg);mask-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../icons/map/passport-fill.svg);mask-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../icons/map/passport-line.svg);mask-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../icons/map/restaurant-fill.svg);mask-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../icons/map/restaurant-line.svg);mask-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../icons/map/sailboat-fill.svg);mask-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../icons/map/sailboat-line.svg);mask-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../icons/map/ship-2-fill.svg);mask-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../icons/map/ship-2-line.svg);mask-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../icons/map/signal-tower-fill.svg);mask-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../icons/map/signal-tower-line.svg);mask-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../icons/map/suitcase-2-fill.svg);mask-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../icons/map/suitcase-2-line.svg);mask-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../icons/map/taxi-fill.svg);mask-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../icons/map/taxi-line.svg);mask-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../icons/map/train-fill.svg);mask-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../icons/map/train-line.svg);mask-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../icons/media/camera-fill.svg);mask-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../icons/media/camera-line.svg);mask-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../icons/media/clapperboard-fill.svg);mask-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../icons/media/clapperboard-line.svg);mask-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../icons/media/film-fill.svg);mask-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../icons/media/film-line.svg);mask-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../icons/media/gallery-fill.svg);mask-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../icons/media/gallery-line.svg);mask-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../icons/media/headphone-fill.svg);mask-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../icons/media/headphone-line.svg);mask-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../icons/media/image-add-fill.svg);mask-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../icons/media/image-add-line.svg);mask-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../icons/media/image-edit-fill.svg);mask-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../icons/media/image-edit-line.svg);mask-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../icons/media/live-fill.svg);mask-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../icons/media/live-line.svg);mask-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../icons/media/mic-fill.svg);mask-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../icons/media/mic-line.svg);mask-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../icons/media/music-2-fill.svg);mask-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../icons/media/music-2-line.svg);mask-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../icons/media/notification-3-fill.svg);mask-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../icons/media/notification-3-line.svg);mask-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../icons/media/stop-circle-fill.svg);mask-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../icons/media/stop-circle-line.svg);mask-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../icons/others/fr--accessibility-fill.svg);mask-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../icons/others/fr--accessibility-line.svg);mask-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../icons/others/fr--ear-off-fill.svg);mask-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../icons/others/fr--ear-off-line.svg);mask-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../icons/others/fr--sign-language-fill.svg);mask-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../icons/others/fr--sign-language-line.svg);mask-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../icons/others/leaf-fill.svg);mask-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../icons/others/leaf-line.svg);mask-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../icons/others/lightbulb-fill.svg);mask-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../icons/others/lightbulb-line.svg);mask-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../icons/others/plant-fill.svg);mask-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../icons/others/plant-line.svg);mask-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../icons/others/recycle-fill.svg);mask-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../icons/others/recycle-line.svg);mask-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../icons/others/scales-3-fill.svg);mask-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../icons/others/scales-3-line.svg);mask-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../icons/others/seedling-fill.svg);mask-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../icons/others/seedling-line.svg);mask-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../icons/others/umbrella-fill.svg);mask-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../icons/others/umbrella-line.svg);mask-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../icons/others/wheelchair-fill.svg);mask-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../icons/others/wheelchair-line.svg);mask-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../icons/system/alarm-warning-fill.svg);mask-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../icons/system/alarm-warning-line.svg);mask-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../icons/system/alert-fill.svg);mask-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../icons/system/alert-line.svg);mask-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-fill.svg);mask-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-s-fill.svg);mask-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-fill.svg);mask-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-line.svg);mask-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-fill.svg);mask-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-s-fill.svg);mask-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-fill.svg);mask-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-s-fill.svg);mask-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-s-fill.svg);mask-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../icons/system/checkbox-circle-fill.svg);mask-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../icons/system/checkbox-fill.svg);mask-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../icons/system/checkbox-line.svg);mask-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../icons/system/close-circle-fill.svg);mask-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../icons/system/close-circle-line.svg);mask-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../icons/system/download-fill.svg);mask-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../icons/system/external-link-fill.svg);mask-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../icons/system/fr--capslock-line.svg);mask-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--equal-circle-fill.svg);mask-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../icons/system/lock-unlock-fill.svg);mask-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../icons/system/lock-unlock-line.svg);mask-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../icons/system/more-fill.svg);mask-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../icons/system/more-line.svg);mask-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../icons/system/notification-badge-fill.svg);mask-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../icons/system/notification-badge-line.svg);mask-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../icons/system/settings-5-fill.svg);mask-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../icons/system/settings-5-line.svg);mask-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../icons/system/shield-fill.svg);mask-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../icons/system/shield-line.svg);mask-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../icons/system/star-fill.svg);mask-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../icons/system/star-line.svg);mask-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../icons/system/star-s-fill.svg);mask-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../icons/system/star-s-line.svg);mask-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../icons/system/thumb-down-fill.svg);mask-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../icons/system/thumb-down-line.svg);mask-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../icons/system/thumb-up-fill.svg);mask-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../icons/system/thumb-up-line.svg);mask-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../icons/system/time-fill.svg);mask-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../icons/system/time-line.svg);mask-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../icons/system/upload-fill.svg);mask-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../icons/system/upload-line.svg);mask-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../icons/user/account-pin-circle-fill.svg);mask-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../icons/user/account-pin-circle-line.svg);mask-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../icons/user/admin-fill.svg);mask-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../icons/user/admin-line.svg);mask-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../icons/user/group-fill.svg);mask-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../icons/user/group-line.svg);mask-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../icons/user/parent-fill.svg);mask-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../icons/user/parent-line.svg);mask-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../icons/user/team-fill.svg);mask-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../icons/user/user-add-fill.svg);mask-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../icons/user/user-add-line.svg);mask-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../icons/user/user-heart-fill.svg);mask-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../icons/user/user-heart-line.svg);mask-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../icons/user/user-search-fill.svg);mask-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../icons/user/user-search-line.svg);mask-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../icons/user/user-setting-fill.svg);mask-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../icons/user/user-setting-line.svg);mask-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../icons/user/user-star-fill.svg);mask-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../icons/user/user-star-line.svg);mask-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../icons/weather/cloudy-2-fill.svg);mask-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../icons/weather/cloudy-2-line.svg);mask-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../icons/weather/fire-fill.svg);mask-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../icons/weather/fire-line.svg);mask-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../icons/weather/flood-fill.svg);mask-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../icons/weather/flood-line.svg);mask-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../icons/weather/fr--avalanches-fill.svg);mask-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../icons/weather/fr--submersion-fill.svg);mask-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../icons/weather/heavy-showers-line.svg);mask-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../icons/weather/moon-fill.svg);mask-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../icons/weather/moon-line.svg);mask-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../icons/weather/snowy-fill.svg);mask-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../icons/weather/snowy-line.svg);mask-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../icons/weather/sparkling-2-fill.svg);mask-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../icons/weather/sparkling-2-line.svg);mask-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../icons/weather/sun-fill.svg);mask-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../icons/weather/sun-line.svg);mask-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../icons/weather/temp-cold-fill.svg);mask-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../icons/weather/temp-cold-line.svg);mask-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../icons/weather/thunderstorms-fill.svg);mask-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../icons/weather/thunderstorms-line.svg);mask-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../icons/weather/tornado-line.svg);mask-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../icons/weather/typhoon-line.svg);mask-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../icons/weather/windy-fill.svg);mask-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../icons/weather/windy-line.svg);mask-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-border-default--grey{border:1px solid var(--border-default-grey)!important}.fr-border-default--blue-france{border:1px solid var(--border-default-blue-france)!important}.fr-border-default--red-marianne{border:1px solid var(--border-default-red-marianne)!important}.fr-border-default--green-tilleul-verveine{border:1px solid var(--border-default-green-tilleul-verveine)!important}.fr-border-default--green-bourgeon{border:1px solid var(--border-default-green-bourgeon)!important}.fr-border-default--green-emeraude{border:1px solid var(--border-default-green-emeraude)!important}.fr-border-default--green-menthe{border:1px solid var(--border-default-green-menthe)!important}.fr-border-default--green-archipel{border:1px solid var(--border-default-green-archipel)!important}.fr-border-default--blue-ecume{border:1px solid var(--border-default-blue-ecume)!important}.fr-border-default--blue-cumulus{border:1px solid var(--border-default-blue-cumulus)!important}.fr-border-default--purple-glycine{border:1px solid var(--border-default-purple-glycine)!important}.fr-border-default--pink-macaron{border:1px solid var(--border-default-pink-macaron)!important}.fr-border-default--pink-tuile{border:1px solid var(--border-default-pink-tuile)!important}.fr-border-default--yellow-tournesol{border:1px solid var(--border-default-yellow-tournesol)!important}.fr-border-default--yellow-moutarde{border:1px solid var(--border-default-yellow-moutarde)!important}.fr-border-default--orange-terre-battue{border:1px solid var(--border-default-orange-terre-battue)!important}.fr-border-default--brown-cafe-creme{border:1px solid var(--border-default-brown-cafe-creme)!important}.fr-border-default--brown-caramel{border:1px solid var(--border-default-brown-caramel)!important}.fr-border-default--brown-opera{border:1px solid var(--border-default-brown-opera)!important}.fr-border-default--beige-gris-galet{border:1px solid var(--border-default-beige-gris-galet)!important}.fr-border-plain--grey{border:1px solid var(--border-plain-grey)!important}.fr-border-plain--blue-france{border:1px solid var(--border-plain-blue-france)!important}.fr-border-plain--red-marianne{border:1px solid var(--border-plain-red-marianne)!important}.fr-border-plain--info{border:1px solid var(--border-plain-info)!important}.fr-border-plain--success{border:1px solid var(--border-plain-success)!important}.fr-border-plain--warning{border:1px solid var(--border-plain-warning)!important}.fr-border-plain--error{border:1px solid var(--border-plain-error)!important}.fr-border-plain--green-tilleul-verveine{border:1px solid var(--border-plain-green-tilleul-verveine)!important}.fr-border-plain--green-bourgeon{border:1px solid var(--border-plain-green-bourgeon)!important}.fr-border-plain--green-emeraude{border:1px solid var(--border-plain-green-emeraude)!important}.fr-border-plain--green-menthe{border:1px solid var(--border-plain-green-menthe)!important}.fr-border-plain--green-archipel{border:1px solid var(--border-plain-green-archipel)!important}.fr-border-plain--blue-ecume{border:1px solid var(--border-plain-blue-ecume)!important}.fr-border-plain--blue-cumulus{border:1px solid var(--border-plain-blue-cumulus)!important}.fr-border-plain--purple-glycine{border:1px solid var(--border-plain-purple-glycine)!important}.fr-border-plain--pink-macaron{border:1px solid var(--border-plain-pink-macaron)!important}.fr-border-plain--pink-tuile{border:1px solid var(--border-plain-pink-tuile)!important}.fr-border-plain--yellow-tournesol{border:1px solid var(--border-plain-yellow-tournesol)!important}.fr-border-plain--yellow-moutarde{border:1px solid var(--border-plain-yellow-moutarde)!important}.fr-border-plain--orange-terre-battue{border:1px solid var(--border-plain-orange-terre-battue)!important}.fr-border-plain--brown-cafe-creme{border:1px solid var(--border-plain-brown-cafe-creme)!important}.fr-border-plain--brown-caramel{border:1px solid var(--border-plain-brown-caramel)!important}.fr-border-plain--brown-opera{border:1px solid var(--border-plain-brown-opera)!important}.fr-border-plain--beige-gris-galet{border:1px solid var(--border-plain-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}.fr-border-width-0-5v{border-width:.125rem!important}.fr-border-width-1v{border-width:.25rem!important}.fr-border-width-2v{border-width:.5rem!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-fill.svg);mask-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-line.svg);mask-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../icons/buildings/bank-fill.svg);mask-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../icons/buildings/bank-line.svg);mask-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../icons/buildings/building-fill.svg);mask-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../icons/buildings/building-line.svg);mask-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../icons/buildings/community-fill.svg);mask-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../icons/buildings/community-line.svg);mask-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../icons/buildings/government-fill.svg);mask-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../icons/buildings/government-line.svg);mask-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../icons/buildings/hospital-fill.svg);mask-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../icons/buildings/hospital-line.svg);mask-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../icons/buildings/hotel-fill.svg);mask-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../icons/buildings/hotel-line.svg);mask-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../icons/buildings/store-fill.svg);mask-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../icons/buildings/store-line.svg);mask-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../icons/business/archive-fill.svg);mask-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../icons/business/archive-line.svg);mask-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../icons/business/award-fill.svg);mask-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../icons/business/award-line.svg);mask-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../icons/business/bar-chart-box-fill.svg);mask-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../icons/business/bar-chart-box-line.svg);mask-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../icons/business/bookmark-fill.svg);mask-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../icons/business/bookmark-line.svg);mask-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../icons/business/briefcase-line.svg);mask-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../icons/business/calendar-2-fill.svg);mask-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../icons/business/calendar-2-line.svg);mask-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../icons/business/calendar-event-fill.svg);mask-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../icons/business/calendar-event-line.svg);mask-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../icons/business/cloud-fill.svg);mask-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../icons/business/cloud-line.svg);mask-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../icons/business/copyright-fill.svg);mask-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../icons/business/copyright-line.svg);mask-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../icons/business/customer-service-fill.svg);mask-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../icons/business/customer-service-line.svg);mask-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../icons/business/flag-fill.svg);mask-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../icons/business/flag-line.svg);mask-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../icons/business/global-fill.svg);mask-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../icons/business/global-line.svg);mask-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../icons/business/links-line.svg);mask-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../icons/business/mail-open-fill.svg);mask-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../icons/business/mail-open-line.svg);mask-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../icons/business/medal-fill.svg);mask-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../icons/business/medal-line.svg);mask-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-2-fill.svg);mask-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../icons/business/pie-chart-2-line.svg);mask-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-box-fill.svg);mask-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../icons/business/pie-chart-box-line.svg);mask-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../icons/business/profil-fill.svg);mask-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../icons/business/profil-line.svg);mask-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../icons/business/projector-2-fill.svg);mask-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../icons/business/projector-2-line.svg);mask-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../icons/business/send-plane-fill.svg);mask-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../icons/business/send-plane-line.svg);mask-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../icons/business/slideshow-fill.svg);mask-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../icons/business/slideshow-line.svg);mask-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../icons/business/window-fill.svg);mask-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../icons/business/window-line.svg);mask-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../icons/communication/chat-2-fill.svg);mask-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../icons/communication/chat-2-line.svg);mask-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../icons/communication/chat-3-fill.svg);mask-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../icons/communication/chat-3-line.svg);mask-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../icons/communication/chat-check-fill.svg);mask-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../icons/communication/chat-check-line.svg);mask-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../icons/communication/chat-delete-fill.svg);mask-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../icons/communication/chat-delete-line.svg);mask-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../icons/communication/chat-poll-fill.svg);mask-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../icons/communication/chat-poll-line.svg);mask-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../icons/communication/discuss-fill.svg);mask-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../icons/communication/discuss-line.svg);mask-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../icons/communication/feedback-fill.svg);mask-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../icons/communication/feedback-line.svg);mask-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../icons/communication/message-2-fill.svg);mask-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../icons/communication/message-2-line.svg);mask-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../icons/communication/question-answer-fill.svg);mask-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../icons/communication/question-answer-line.svg);mask-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../icons/communication/questionnaire-fill.svg);mask-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../icons/communication/questionnaire-line.svg);mask-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../icons/communication/video-chat-fill.svg);mask-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../icons/communication/video-chat-line.svg);mask-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../icons/design/ball-pen-fill.svg);mask-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../icons/design/ball-pen-line.svg);mask-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../icons/design/brush-3-fill.svg);mask-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../icons/design/brush-3-line.svg);mask-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../icons/design/brush-fill.svg);mask-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../icons/design/brush-line.svg);mask-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../icons/design/contrast-fill.svg);mask-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../icons/design/contrast-line.svg);mask-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../icons/design/crop-fill.svg);mask-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../icons/design/crop-line.svg);mask-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../icons/design/drag-move-2-fill.svg);mask-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../icons/design/drag-move-2-line.svg);mask-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../icons/design/drop-fill.svg);mask-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../icons/design/drop-line.svg);mask-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../icons/design/edit-box-fill.svg);mask-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../icons/design/edit-box-line.svg);mask-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../icons/design/ink-bottle-fill.svg);mask-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../icons/design/ink-bottle-line.svg);mask-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../icons/design/layout-grid-fill.svg);mask-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../icons/design/layout-grid-line.svg);mask-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../icons/design/mark-pen-fill.svg);mask-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../icons/design/mark-pen-line.svg);mask-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../icons/design/paint-brush-fill.svg);mask-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../icons/design/paint-brush-line.svg);mask-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../icons/design/paint-fill.svg);mask-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../icons/design/paint-line.svg);mask-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../icons/design/palette-fill.svg);mask-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../icons/design/palette-line.svg);mask-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../icons/design/pantone-fill.svg);mask-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../icons/design/pantone-line.svg);mask-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../icons/design/pen-nib-fill.svg);mask-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../icons/design/pen-nib-line.svg);mask-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../icons/design/pencil-fill.svg);mask-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../icons/design/pencil-line.svg);mask-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../icons/design/pencil-ruler-fill.svg);mask-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../icons/design/pencil-ruler-line.svg);mask-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../icons/design/shapes-fill.svg);mask-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../icons/design/shapes-line.svg);mask-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../icons/design/sip-fill.svg);mask-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../icons/design/sip-line.svg);mask-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../icons/design/table-fill.svg);mask-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../icons/design/table-line.svg);mask-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../icons/development/bug-fill.svg);mask-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../icons/development/bug-line.svg);mask-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../icons/development/code-box-fill.svg);mask-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../icons/development/code-box-line.svg);mask-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../icons/development/code-s-slash-line.svg);mask-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../icons/development/cursor-fill.svg);mask-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../icons/development/cursor-line.svg);mask-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../icons/development/git-branch-fill.svg);mask-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../icons/development/git-branch-line.svg);mask-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../icons/development/git-commit-fill.svg);mask-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../icons/development/git-commit-line.svg);mask-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../icons/development/git-merge-fill.svg);mask-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../icons/development/git-merge-line.svg);mask-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../icons/development/git-pull-request-fill.svg);mask-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../icons/development/git-pull-request-line.svg);mask-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../icons/development/git-repository-commits-fill.svg);mask-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../icons/development/git-repository-commits-line.svg);mask-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../icons/development/git-repository-fill.svg);mask-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../icons/development/git-repository-line.svg);mask-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../icons/development/git-repository-private-fill.svg);mask-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../icons/development/git-repository-private-line.svg);mask-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../icons/development/terminal-box-fill.svg);mask-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../icons/development/terminal-box-line.svg);mask-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../icons/development/terminal-line.svg);mask-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../icons/development/terminal-window-fill.svg);mask-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../icons/development/terminal-window-line.svg);mask-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../icons/device/bluetooth-fill.svg);mask-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../icons/device/bluetooth-line.svg);mask-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../icons/device/computer-fill.svg);mask-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../icons/device/computer-line.svg);mask-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../icons/device/dashboard-3-fill.svg);mask-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../icons/device/dashboard-3-line.svg);mask-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../icons/device/database-fill.svg);mask-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../icons/device/database-line.svg);mask-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../icons/device/device-fill.svg);mask-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../icons/device/device-line.svg);mask-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../icons/device/hard-drive-2-fill.svg);mask-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../icons/device/hard-drive-2-line.svg);mask-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../icons/device/mac-fill.svg);mask-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../icons/device/mac-line.svg);mask-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../icons/device/qr-code-fill.svg);mask-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../icons/device/qr-code-line.svg);mask-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../icons/device/save-3-fill.svg);mask-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../icons/device/save-3-line.svg);mask-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../icons/device/server-fill.svg);mask-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../icons/device/server-line.svg);mask-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../icons/device/smartphone-fill.svg);mask-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../icons/device/smartphone-line.svg);mask-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../icons/device/tablet-fill.svg);mask-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../icons/device/tablet-line.svg);mask-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../icons/device/tv-fill.svg);mask-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../icons/device/tv-line.svg);mask-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../icons/device/wifi-fill.svg);mask-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../icons/device/wifi-line.svg);mask-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../icons/document/article-fill.svg);mask-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../icons/document/article-line.svg);mask-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../icons/document/book-2-fill.svg);mask-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../icons/document/book-2-line.svg);mask-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../icons/document/booklet-fill.svg);mask-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../icons/document/booklet-line.svg);mask-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../icons/document/clipboard-fill.svg);mask-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../icons/document/clipboard-line.svg);mask-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../icons/document/draft-fill.svg);mask-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../icons/document/draft-line.svg);mask-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../icons/document/file-add-fill.svg);mask-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../icons/document/file-add-line.svg);mask-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../icons/document/file-text-fill.svg);mask-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../icons/document/file-text-line.svg);mask-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../icons/document/folder-2-fill.svg);mask-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../icons/document/folder-2-line.svg);mask-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../icons/document/newspaper-fill.svg);mask-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../icons/document/newspaper-line.svg);mask-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../icons/document/survey-fill.svg);mask-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../icons/document/survey-line.svg);mask-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../icons/document/todo-fill.svg);mask-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../icons/document/todo-line.svg);mask-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../icons/editor/code-view.svg);mask-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../icons/editor/fr--quote-fill.svg);mask-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../icons/editor/h-1.svg);mask-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../icons/editor/h-2.svg);mask-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../icons/editor/h-3.svg);mask-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../icons/editor/h-4.svg);mask-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../icons/editor/h-5.svg);mask-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../icons/editor/h-6.svg);mask-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../icons/editor/hashtag.svg);mask-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../icons/editor/link.svg);mask-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../icons/editor/question-mark.svg);mask-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../icons/editor/separator.svg);mask-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../icons/editor/space.svg);mask-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../icons/editor/subscript.svg);mask-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../icons/editor/superscript.svg);mask-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../icons/editor/table-2.svg);mask-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../icons/finance/bank-card-fill.svg);mask-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../icons/finance/bank-card-line.svg);mask-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../icons/finance/coin-fill.svg);mask-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../icons/finance/gift-fill.svg);mask-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../icons/finance/gift-line.svg);mask-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-box-fill.svg);mask-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../icons/finance/money-euro-box-line.svg);mask-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-fill.svg);mask-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-line.svg);mask-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../icons/finance/secure-payment-fill.svg);mask-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../icons/finance/secure-payment-line.svg);mask-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../icons/finance/shopping-bag-fill.svg);mask-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../icons/finance/shopping-bag-line.svg);mask-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-line.svg);mask-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../icons/finance/trophy-fill.svg);mask-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../icons/finance/trophy-line.svg);mask-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../icons/health/capsule-fill.svg);mask-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../icons/health/capsule-line.svg);mask-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../icons/health/dislike-fill.svg);mask-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../icons/health/dislike-line.svg);mask-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../icons/health/dossier-fill.svg);mask-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../icons/health/dossier-line.svg);mask-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../icons/health/first-aid-kit-fill.svg);mask-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../icons/health/first-aid-kit-line.svg);mask-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-fill.svg);mask-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-line.svg);mask-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../icons/health/health-book-fill.svg);mask-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../icons/health/health-book-line.svg);mask-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../icons/health/heart-fill.svg);mask-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../icons/health/heart-line.svg);mask-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../icons/health/heart-pulse-fill.svg);mask-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../icons/health/heart-pulse-line.svg);mask-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../icons/health/lungs-fill.svg);mask-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../icons/health/lungs-line.svg);mask-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../icons/health/medicine-bottle-fill.svg);mask-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../icons/health/medicine-bottle-line.svg);mask-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../icons/health/mental-health-fill.svg);mask-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../icons/health/mental-health-line.svg);mask-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../icons/health/microscope-fill.svg);mask-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../icons/health/microscope-line.svg);mask-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../icons/health/psychotherapy-fill.svg);mask-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../icons/health/psychotherapy-line.svg);mask-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../icons/health/pulse-line.svg);mask-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../icons/health/stethoscope-fill.svg);mask-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../icons/health/stethoscope-line.svg);mask-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../icons/health/surgical-mask-fill.svg);mask-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../icons/health/surgical-mask-line.svg);mask-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../icons/health/syringe-fill.svg);mask-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../icons/health/syringe-line.svg);mask-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../icons/health/test-tube-fill.svg);mask-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../icons/health/test-tube-line.svg);mask-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../icons/health/thermometer-fill.svg);mask-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../icons/health/thermometer-line.svg);mask-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../icons/health/virus-fill.svg);mask-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../icons/health/virus-line.svg);mask-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../icons/logo/chrome-fill.svg);mask-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../icons/logo/chrome-line.svg);mask-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../icons/logo/edge-fill.svg);mask-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../icons/logo/edge-line.svg);mask-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../icons/logo/firefox-fill.svg);mask-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../icons/logo/firefox-line.svg);mask-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-line.svg);mask-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../icons/logo/google-fill.svg);mask-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../icons/logo/google-line.svg);mask-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../icons/logo/ie-fill.svg);mask-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../icons/logo/ie-line.svg);mask-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../icons/logo/safari-fill.svg);mask-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../icons/logo/safari-line.svg);mask-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../icons/logo/vuejs-fill.svg);mask-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../icons/logo/vuejs-line.svg);mask-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../icons/logo/whatsapp-fill.svg);mask-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../icons/logo/whatsapp-line.svg);mask-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../icons/map/anchor-fill.svg);mask-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../icons/map/anchor-line.svg);mask-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../icons/map/bike-fill.svg);mask-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../icons/map/bike-line.svg);mask-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../icons/map/bus-fill.svg);mask-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../icons/map/bus-line.svg);mask-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../icons/map/car-fill.svg);mask-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../icons/map/car-line.svg);mask-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../icons/map/caravan-fill.svg);mask-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../icons/map/caravan-line.svg);mask-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../icons/map/charging-pile-2-fill.svg);mask-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../icons/map/charging-pile-2-line.svg);mask-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../icons/map/compass-3-fill.svg);mask-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../icons/map/compass-3-line.svg);mask-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../icons/map/cup-fill.svg);mask-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../icons/map/cup-line.svg);mask-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../icons/map/earth-fill.svg);mask-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../icons/map/earth-line.svg);mask-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../icons/map/france-fill.svg);mask-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../icons/map/france-line.svg);mask-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../icons/map/gas-station-fill.svg);mask-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../icons/map/gas-station-line.svg);mask-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../icons/map/goblet-fill.svg);mask-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../icons/map/goblet-line.svg);mask-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../icons/map/map-pin-user-fill.svg);mask-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../icons/map/map-pin-user-line.svg);mask-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../icons/map/motorbike-fill.svg);mask-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../icons/map/motorbike-line.svg);mask-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../icons/map/passport-fill.svg);mask-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../icons/map/passport-line.svg);mask-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../icons/map/restaurant-fill.svg);mask-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../icons/map/restaurant-line.svg);mask-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../icons/map/sailboat-fill.svg);mask-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../icons/map/sailboat-line.svg);mask-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../icons/map/ship-2-fill.svg);mask-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../icons/map/ship-2-line.svg);mask-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../icons/map/signal-tower-fill.svg);mask-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../icons/map/signal-tower-line.svg);mask-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../icons/map/suitcase-2-fill.svg);mask-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../icons/map/suitcase-2-line.svg);mask-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../icons/map/taxi-fill.svg);mask-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../icons/map/taxi-line.svg);mask-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../icons/map/train-fill.svg);mask-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../icons/map/train-line.svg);mask-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../icons/media/camera-fill.svg);mask-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../icons/media/camera-line.svg);mask-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../icons/media/clapperboard-fill.svg);mask-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../icons/media/clapperboard-line.svg);mask-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../icons/media/film-fill.svg);mask-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../icons/media/film-line.svg);mask-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../icons/media/gallery-fill.svg);mask-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../icons/media/gallery-line.svg);mask-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../icons/media/headphone-fill.svg);mask-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../icons/media/headphone-line.svg);mask-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../icons/media/image-add-fill.svg);mask-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../icons/media/image-add-line.svg);mask-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../icons/media/image-edit-fill.svg);mask-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../icons/media/image-edit-line.svg);mask-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../icons/media/live-fill.svg);mask-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../icons/media/live-line.svg);mask-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../icons/media/mic-fill.svg);mask-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../icons/media/mic-line.svg);mask-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../icons/media/music-2-fill.svg);mask-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../icons/media/music-2-line.svg);mask-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../icons/media/notification-3-fill.svg);mask-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../icons/media/notification-3-line.svg);mask-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../icons/media/stop-circle-fill.svg);mask-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../icons/media/stop-circle-line.svg);mask-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../icons/others/fr--accessibility-fill.svg);mask-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../icons/others/fr--accessibility-line.svg);mask-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../icons/others/fr--ear-off-fill.svg);mask-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../icons/others/fr--ear-off-line.svg);mask-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../icons/others/fr--sign-language-fill.svg);mask-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../icons/others/fr--sign-language-line.svg);mask-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../icons/others/leaf-fill.svg);mask-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../icons/others/leaf-line.svg);mask-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../icons/others/lightbulb-fill.svg);mask-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../icons/others/lightbulb-line.svg);mask-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../icons/others/plant-fill.svg);mask-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../icons/others/plant-line.svg);mask-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../icons/others/recycle-fill.svg);mask-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../icons/others/recycle-line.svg);mask-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../icons/others/scales-3-fill.svg);mask-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../icons/others/scales-3-line.svg);mask-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../icons/others/seedling-fill.svg);mask-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../icons/others/seedling-line.svg);mask-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../icons/others/umbrella-fill.svg);mask-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../icons/others/umbrella-line.svg);mask-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../icons/others/wheelchair-fill.svg);mask-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../icons/others/wheelchair-line.svg);mask-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../icons/system/alarm-warning-fill.svg);mask-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../icons/system/alarm-warning-line.svg);mask-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../icons/system/alert-fill.svg);mask-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../icons/system/alert-line.svg);mask-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-fill.svg);mask-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-s-fill.svg);mask-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-fill.svg);mask-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-line.svg);mask-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-fill.svg);mask-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-s-fill.svg);mask-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-fill.svg);mask-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-s-fill.svg);mask-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-s-fill.svg);mask-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../icons/system/checkbox-circle-fill.svg);mask-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../icons/system/checkbox-fill.svg);mask-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../icons/system/checkbox-line.svg);mask-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../icons/system/close-circle-fill.svg);mask-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../icons/system/close-circle-line.svg);mask-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../icons/system/download-fill.svg);mask-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../icons/system/external-link-fill.svg);mask-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../icons/system/fr--capslock-line.svg);mask-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--equal-circle-fill.svg);mask-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../icons/system/lock-unlock-fill.svg);mask-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../icons/system/lock-unlock-line.svg);mask-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../icons/system/more-fill.svg);mask-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../icons/system/more-line.svg);mask-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../icons/system/notification-badge-fill.svg);mask-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../icons/system/notification-badge-line.svg);mask-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../icons/system/settings-5-fill.svg);mask-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../icons/system/settings-5-line.svg);mask-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../icons/system/shield-fill.svg);mask-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../icons/system/shield-line.svg);mask-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../icons/system/star-fill.svg);mask-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../icons/system/star-line.svg);mask-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../icons/system/star-s-fill.svg);mask-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../icons/system/star-s-line.svg);mask-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../icons/system/thumb-down-fill.svg);mask-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../icons/system/thumb-down-line.svg);mask-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../icons/system/thumb-up-fill.svg);mask-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../icons/system/thumb-up-line.svg);mask-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../icons/system/time-fill.svg);mask-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../icons/system/time-line.svg);mask-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../icons/system/upload-fill.svg);mask-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../icons/system/upload-line.svg);mask-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../icons/user/account-pin-circle-fill.svg);mask-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../icons/user/account-pin-circle-line.svg);mask-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../icons/user/admin-fill.svg);mask-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../icons/user/admin-line.svg);mask-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../icons/user/group-fill.svg);mask-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../icons/user/group-line.svg);mask-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../icons/user/parent-fill.svg);mask-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../icons/user/parent-line.svg);mask-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../icons/user/team-fill.svg);mask-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../icons/user/user-add-fill.svg);mask-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../icons/user/user-add-line.svg);mask-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../icons/user/user-heart-fill.svg);mask-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../icons/user/user-heart-line.svg);mask-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../icons/user/user-search-fill.svg);mask-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../icons/user/user-search-line.svg);mask-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../icons/user/user-setting-fill.svg);mask-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../icons/user/user-setting-line.svg);mask-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../icons/user/user-star-fill.svg);mask-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../icons/user/user-star-line.svg);mask-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../icons/weather/cloudy-2-fill.svg);mask-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../icons/weather/cloudy-2-line.svg);mask-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../icons/weather/fire-fill.svg);mask-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../icons/weather/fire-line.svg);mask-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../icons/weather/flood-fill.svg);mask-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../icons/weather/flood-line.svg);mask-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../icons/weather/fr--avalanches-fill.svg);mask-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../icons/weather/fr--submersion-fill.svg);mask-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../icons/weather/heavy-showers-line.svg);mask-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../icons/weather/moon-fill.svg);mask-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../icons/weather/moon-line.svg);mask-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../icons/weather/snowy-fill.svg);mask-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../icons/weather/snowy-line.svg);mask-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../icons/weather/sparkling-2-fill.svg);mask-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../icons/weather/sparkling-2-line.svg);mask-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../icons/weather/sun-fill.svg);mask-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../icons/weather/sun-line.svg);mask-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../icons/weather/temp-cold-fill.svg);mask-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../icons/weather/temp-cold-line.svg);mask-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../icons/weather/thunderstorms-fill.svg);mask-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../icons/weather/thunderstorms-line.svg);mask-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../icons/weather/tornado-line.svg);mask-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../icons/weather/typhoon-line.svg);mask-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../icons/weather/windy-fill.svg);mask-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../icons/weather/windy-line.svg);mask-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ /*! media sm */ diff --git a/dsfr/static/dsfr/dist/utility/utility.min.css b/dsfr/static/dsfr/dist/utility/utility.min.css index 0a0659d34..cf6523aa3 100644 --- a/dsfr/static/dsfr/dist/utility/utility.min.css +++ b/dsfr/static/dsfr/dist/utility/utility.min.css @@ -1,6 +1,6 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-fill.svg);mask-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-line.svg);mask-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../icons/buildings/bank-fill.svg);mask-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../icons/buildings/bank-line.svg);mask-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../icons/buildings/building-fill.svg);mask-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../icons/buildings/building-line.svg);mask-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../icons/buildings/community-fill.svg);mask-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../icons/buildings/community-line.svg);mask-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../icons/buildings/government-fill.svg);mask-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../icons/buildings/government-line.svg);mask-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../icons/buildings/hospital-fill.svg);mask-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../icons/buildings/hospital-line.svg);mask-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../icons/buildings/hotel-fill.svg);mask-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../icons/buildings/hotel-line.svg);mask-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../icons/buildings/store-fill.svg);mask-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../icons/buildings/store-line.svg);mask-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../icons/business/archive-fill.svg);mask-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../icons/business/archive-line.svg);mask-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../icons/business/award-fill.svg);mask-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../icons/business/award-line.svg);mask-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../icons/business/bar-chart-box-fill.svg);mask-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../icons/business/bar-chart-box-line.svg);mask-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../icons/business/bookmark-fill.svg);mask-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../icons/business/bookmark-line.svg);mask-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../icons/business/briefcase-line.svg);mask-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../icons/business/calendar-2-fill.svg);mask-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../icons/business/calendar-2-line.svg);mask-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../icons/business/calendar-event-fill.svg);mask-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../icons/business/calendar-event-line.svg);mask-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../icons/business/cloud-fill.svg);mask-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../icons/business/cloud-line.svg);mask-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../icons/business/copyright-fill.svg);mask-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../icons/business/copyright-line.svg);mask-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../icons/business/customer-service-fill.svg);mask-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../icons/business/customer-service-line.svg);mask-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../icons/business/flag-fill.svg);mask-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../icons/business/flag-line.svg);mask-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../icons/business/global-fill.svg);mask-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../icons/business/global-line.svg);mask-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../icons/business/links-line.svg);mask-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../icons/business/mail-open-fill.svg);mask-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../icons/business/mail-open-line.svg);mask-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../icons/business/medal-fill.svg);mask-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../icons/business/medal-line.svg);mask-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-2-fill.svg);mask-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../icons/business/pie-chart-2-line.svg);mask-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-box-fill.svg);mask-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../icons/business/pie-chart-box-line.svg);mask-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../icons/business/profil-fill.svg);mask-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../icons/business/profil-line.svg);mask-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../icons/business/projector-2-fill.svg);mask-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../icons/business/projector-2-line.svg);mask-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../icons/business/send-plane-fill.svg);mask-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../icons/business/send-plane-line.svg);mask-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../icons/business/slideshow-fill.svg);mask-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../icons/business/slideshow-line.svg);mask-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../icons/business/window-fill.svg);mask-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../icons/business/window-line.svg);mask-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../icons/communication/chat-2-fill.svg);mask-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../icons/communication/chat-2-line.svg);mask-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../icons/communication/chat-3-fill.svg);mask-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../icons/communication/chat-3-line.svg);mask-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../icons/communication/chat-check-fill.svg);mask-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../icons/communication/chat-check-line.svg);mask-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../icons/communication/chat-delete-fill.svg);mask-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../icons/communication/chat-delete-line.svg);mask-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../icons/communication/chat-poll-fill.svg);mask-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../icons/communication/chat-poll-line.svg);mask-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../icons/communication/discuss-fill.svg);mask-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../icons/communication/discuss-line.svg);mask-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../icons/communication/feedback-fill.svg);mask-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../icons/communication/feedback-line.svg);mask-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../icons/communication/message-2-fill.svg);mask-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../icons/communication/message-2-line.svg);mask-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../icons/communication/question-answer-fill.svg);mask-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../icons/communication/question-answer-line.svg);mask-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../icons/communication/questionnaire-fill.svg);mask-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../icons/communication/questionnaire-line.svg);mask-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../icons/communication/video-chat-fill.svg);mask-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../icons/communication/video-chat-line.svg);mask-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../icons/design/ball-pen-fill.svg);mask-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../icons/design/ball-pen-line.svg);mask-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../icons/design/brush-3-fill.svg);mask-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../icons/design/brush-3-line.svg);mask-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../icons/design/brush-fill.svg);mask-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../icons/design/brush-line.svg);mask-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../icons/design/contrast-fill.svg);mask-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../icons/design/contrast-line.svg);mask-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../icons/design/crop-fill.svg);mask-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../icons/design/crop-line.svg);mask-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../icons/design/drag-move-2-fill.svg);mask-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../icons/design/drag-move-2-line.svg);mask-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../icons/design/drop-fill.svg);mask-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../icons/design/drop-line.svg);mask-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../icons/design/edit-box-fill.svg);mask-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../icons/design/edit-box-line.svg);mask-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../icons/design/ink-bottle-fill.svg);mask-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../icons/design/ink-bottle-line.svg);mask-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../icons/design/layout-grid-fill.svg);mask-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../icons/design/layout-grid-line.svg);mask-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../icons/design/mark-pen-fill.svg);mask-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../icons/design/mark-pen-line.svg);mask-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../icons/design/paint-brush-fill.svg);mask-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../icons/design/paint-brush-line.svg);mask-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../icons/design/paint-fill.svg);mask-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../icons/design/paint-line.svg);mask-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../icons/design/palette-fill.svg);mask-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../icons/design/palette-line.svg);mask-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../icons/design/pantone-fill.svg);mask-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../icons/design/pantone-line.svg);mask-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../icons/design/pen-nib-fill.svg);mask-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../icons/design/pen-nib-line.svg);mask-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../icons/design/pencil-fill.svg);mask-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../icons/design/pencil-line.svg);mask-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../icons/design/pencil-ruler-fill.svg);mask-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../icons/design/pencil-ruler-line.svg);mask-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../icons/design/shapes-fill.svg);mask-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../icons/design/shapes-line.svg);mask-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../icons/design/sip-fill.svg);mask-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../icons/design/sip-line.svg);mask-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../icons/design/table-fill.svg);mask-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../icons/design/table-line.svg);mask-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../icons/development/bug-fill.svg);mask-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../icons/development/bug-line.svg);mask-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../icons/development/code-box-fill.svg);mask-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../icons/development/code-box-line.svg);mask-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../icons/development/code-s-slash-line.svg);mask-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../icons/development/cursor-fill.svg);mask-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../icons/development/cursor-line.svg);mask-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../icons/development/git-branch-fill.svg);mask-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../icons/development/git-branch-line.svg);mask-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../icons/development/git-commit-fill.svg);mask-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../icons/development/git-commit-line.svg);mask-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../icons/development/git-merge-fill.svg);mask-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../icons/development/git-merge-line.svg);mask-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../icons/development/git-pull-request-fill.svg);mask-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../icons/development/git-pull-request-line.svg);mask-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../icons/development/git-repository-commits-fill.svg);mask-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../icons/development/git-repository-commits-line.svg);mask-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../icons/development/git-repository-fill.svg);mask-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../icons/development/git-repository-line.svg);mask-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../icons/development/git-repository-private-fill.svg);mask-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../icons/development/git-repository-private-line.svg);mask-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../icons/development/terminal-box-fill.svg);mask-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../icons/development/terminal-box-line.svg);mask-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../icons/development/terminal-line.svg);mask-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../icons/development/terminal-window-fill.svg);mask-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../icons/development/terminal-window-line.svg);mask-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../icons/device/bluetooth-fill.svg);mask-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../icons/device/bluetooth-line.svg);mask-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../icons/device/computer-fill.svg);mask-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../icons/device/computer-line.svg);mask-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../icons/device/dashboard-3-fill.svg);mask-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../icons/device/dashboard-3-line.svg);mask-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../icons/device/database-fill.svg);mask-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../icons/device/database-line.svg);mask-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../icons/device/device-fill.svg);mask-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../icons/device/device-line.svg);mask-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../icons/device/hard-drive-2-fill.svg);mask-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../icons/device/hard-drive-2-line.svg);mask-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../icons/device/mac-fill.svg);mask-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../icons/device/mac-line.svg);mask-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../icons/device/qr-code-fill.svg);mask-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../icons/device/qr-code-line.svg);mask-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../icons/device/save-3-fill.svg);mask-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../icons/device/save-3-line.svg);mask-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../icons/device/server-fill.svg);mask-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../icons/device/server-line.svg);mask-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../icons/device/smartphone-fill.svg);mask-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../icons/device/smartphone-line.svg);mask-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../icons/device/tablet-fill.svg);mask-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../icons/device/tablet-line.svg);mask-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../icons/device/tv-fill.svg);mask-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../icons/device/tv-line.svg);mask-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../icons/device/wifi-fill.svg);mask-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../icons/device/wifi-line.svg);mask-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../icons/document/article-fill.svg);mask-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../icons/document/article-line.svg);mask-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../icons/document/book-2-fill.svg);mask-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../icons/document/book-2-line.svg);mask-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../icons/document/booklet-fill.svg);mask-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../icons/document/booklet-line.svg);mask-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../icons/document/clipboard-fill.svg);mask-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../icons/document/clipboard-line.svg);mask-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../icons/document/draft-fill.svg);mask-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../icons/document/draft-line.svg);mask-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../icons/document/file-add-fill.svg);mask-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../icons/document/file-add-line.svg);mask-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../icons/document/file-text-fill.svg);mask-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../icons/document/file-text-line.svg);mask-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../icons/document/folder-2-fill.svg);mask-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../icons/document/folder-2-line.svg);mask-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../icons/document/newspaper-fill.svg);mask-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../icons/document/newspaper-line.svg);mask-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../icons/document/survey-fill.svg);mask-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../icons/document/survey-line.svg);mask-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../icons/document/todo-fill.svg);mask-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../icons/document/todo-line.svg);mask-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../icons/editor/code-view.svg);mask-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../icons/editor/fr--quote-fill.svg);mask-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../icons/editor/h-1.svg);mask-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../icons/editor/h-2.svg);mask-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../icons/editor/h-3.svg);mask-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../icons/editor/h-4.svg);mask-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../icons/editor/h-5.svg);mask-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../icons/editor/h-6.svg);mask-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../icons/editor/hashtag.svg);mask-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../icons/editor/link.svg);mask-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../icons/editor/question-mark.svg);mask-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../icons/editor/separator.svg);mask-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../icons/editor/space.svg);mask-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../icons/editor/subscript.svg);mask-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../icons/editor/superscript.svg);mask-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../icons/editor/table-2.svg);mask-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../icons/finance/bank-card-fill.svg);mask-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../icons/finance/bank-card-line.svg);mask-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../icons/finance/coin-fill.svg);mask-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../icons/finance/gift-fill.svg);mask-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../icons/finance/gift-line.svg);mask-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-box-fill.svg);mask-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../icons/finance/money-euro-box-line.svg);mask-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-fill.svg);mask-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-line.svg);mask-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../icons/finance/secure-payment-fill.svg);mask-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../icons/finance/secure-payment-line.svg);mask-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../icons/finance/shopping-bag-fill.svg);mask-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../icons/finance/shopping-bag-line.svg);mask-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-line.svg);mask-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../icons/finance/trophy-fill.svg);mask-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../icons/finance/trophy-line.svg);mask-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../icons/health/capsule-fill.svg);mask-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../icons/health/capsule-line.svg);mask-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../icons/health/dislike-fill.svg);mask-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../icons/health/dislike-line.svg);mask-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../icons/health/dossier-fill.svg);mask-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../icons/health/dossier-line.svg);mask-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../icons/health/first-aid-kit-fill.svg);mask-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../icons/health/first-aid-kit-line.svg);mask-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-fill.svg);mask-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-line.svg);mask-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../icons/health/health-book-fill.svg);mask-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../icons/health/health-book-line.svg);mask-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../icons/health/heart-fill.svg);mask-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../icons/health/heart-line.svg);mask-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../icons/health/heart-pulse-fill.svg);mask-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../icons/health/heart-pulse-line.svg);mask-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../icons/health/lungs-fill.svg);mask-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../icons/health/lungs-line.svg);mask-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../icons/health/medicine-bottle-fill.svg);mask-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../icons/health/medicine-bottle-line.svg);mask-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../icons/health/mental-health-fill.svg);mask-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../icons/health/mental-health-line.svg);mask-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../icons/health/microscope-fill.svg);mask-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../icons/health/microscope-line.svg);mask-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../icons/health/psychotherapy-fill.svg);mask-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../icons/health/psychotherapy-line.svg);mask-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../icons/health/pulse-line.svg);mask-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../icons/health/stethoscope-fill.svg);mask-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../icons/health/stethoscope-line.svg);mask-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../icons/health/surgical-mask-fill.svg);mask-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../icons/health/surgical-mask-line.svg);mask-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../icons/health/syringe-fill.svg);mask-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../icons/health/syringe-line.svg);mask-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../icons/health/test-tube-fill.svg);mask-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../icons/health/test-tube-line.svg);mask-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../icons/health/thermometer-fill.svg);mask-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../icons/health/thermometer-line.svg);mask-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../icons/health/virus-fill.svg);mask-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../icons/health/virus-line.svg);mask-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../icons/logo/chrome-fill.svg);mask-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../icons/logo/chrome-line.svg);mask-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../icons/logo/edge-fill.svg);mask-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../icons/logo/edge-line.svg);mask-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../icons/logo/firefox-fill.svg);mask-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../icons/logo/firefox-line.svg);mask-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-line.svg);mask-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../icons/logo/google-fill.svg);mask-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../icons/logo/google-line.svg);mask-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../icons/logo/ie-fill.svg);mask-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../icons/logo/ie-line.svg);mask-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../icons/logo/safari-fill.svg);mask-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../icons/logo/safari-line.svg);mask-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../icons/logo/vuejs-fill.svg);mask-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../icons/logo/vuejs-line.svg);mask-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../icons/logo/whatsapp-fill.svg);mask-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../icons/logo/whatsapp-line.svg);mask-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../icons/map/anchor-fill.svg);mask-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../icons/map/anchor-line.svg);mask-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../icons/map/bike-fill.svg);mask-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../icons/map/bike-line.svg);mask-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../icons/map/bus-fill.svg);mask-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../icons/map/bus-line.svg);mask-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../icons/map/car-fill.svg);mask-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../icons/map/car-line.svg);mask-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../icons/map/caravan-fill.svg);mask-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../icons/map/caravan-line.svg);mask-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../icons/map/charging-pile-2-fill.svg);mask-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../icons/map/charging-pile-2-line.svg);mask-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../icons/map/compass-3-fill.svg);mask-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../icons/map/compass-3-line.svg);mask-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../icons/map/cup-fill.svg);mask-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../icons/map/cup-line.svg);mask-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../icons/map/earth-fill.svg);mask-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../icons/map/earth-line.svg);mask-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../icons/map/france-fill.svg);mask-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../icons/map/france-line.svg);mask-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../icons/map/gas-station-fill.svg);mask-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../icons/map/gas-station-line.svg);mask-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../icons/map/goblet-fill.svg);mask-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../icons/map/goblet-line.svg);mask-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../icons/map/map-pin-user-fill.svg);mask-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../icons/map/map-pin-user-line.svg);mask-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../icons/map/motorbike-fill.svg);mask-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../icons/map/motorbike-line.svg);mask-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../icons/map/passport-fill.svg);mask-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../icons/map/passport-line.svg);mask-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../icons/map/restaurant-fill.svg);mask-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../icons/map/restaurant-line.svg);mask-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../icons/map/sailboat-fill.svg);mask-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../icons/map/sailboat-line.svg);mask-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../icons/map/ship-2-fill.svg);mask-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../icons/map/ship-2-line.svg);mask-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../icons/map/signal-tower-fill.svg);mask-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../icons/map/signal-tower-line.svg);mask-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../icons/map/suitcase-2-fill.svg);mask-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../icons/map/suitcase-2-line.svg);mask-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../icons/map/taxi-fill.svg);mask-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../icons/map/taxi-line.svg);mask-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../icons/map/train-fill.svg);mask-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../icons/map/train-line.svg);mask-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../icons/media/camera-fill.svg);mask-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../icons/media/camera-line.svg);mask-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../icons/media/clapperboard-fill.svg);mask-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../icons/media/clapperboard-line.svg);mask-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../icons/media/film-fill.svg);mask-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../icons/media/film-line.svg);mask-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../icons/media/gallery-fill.svg);mask-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../icons/media/gallery-line.svg);mask-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../icons/media/headphone-fill.svg);mask-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../icons/media/headphone-line.svg);mask-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../icons/media/image-add-fill.svg);mask-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../icons/media/image-add-line.svg);mask-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../icons/media/image-edit-fill.svg);mask-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../icons/media/image-edit-line.svg);mask-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../icons/media/live-fill.svg);mask-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../icons/media/live-line.svg);mask-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../icons/media/mic-fill.svg);mask-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../icons/media/mic-line.svg);mask-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../icons/media/music-2-fill.svg);mask-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../icons/media/music-2-line.svg);mask-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../icons/media/notification-3-fill.svg);mask-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../icons/media/notification-3-line.svg);mask-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../icons/media/stop-circle-fill.svg);mask-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../icons/media/stop-circle-line.svg);mask-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../icons/others/fr--accessibility-fill.svg);mask-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../icons/others/fr--accessibility-line.svg);mask-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../icons/others/fr--ear-off-fill.svg);mask-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../icons/others/fr--ear-off-line.svg);mask-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../icons/others/fr--sign-language-fill.svg);mask-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../icons/others/fr--sign-language-line.svg);mask-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../icons/others/leaf-fill.svg);mask-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../icons/others/leaf-line.svg);mask-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../icons/others/lightbulb-fill.svg);mask-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../icons/others/lightbulb-line.svg);mask-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../icons/others/plant-fill.svg);mask-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../icons/others/plant-line.svg);mask-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../icons/others/recycle-fill.svg);mask-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../icons/others/recycle-line.svg);mask-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../icons/others/scales-3-fill.svg);mask-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../icons/others/scales-3-line.svg);mask-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../icons/others/seedling-fill.svg);mask-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../icons/others/seedling-line.svg);mask-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../icons/others/umbrella-fill.svg);mask-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../icons/others/umbrella-line.svg);mask-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../icons/others/wheelchair-fill.svg);mask-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../icons/others/wheelchair-line.svg);mask-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../icons/system/alarm-warning-fill.svg);mask-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../icons/system/alarm-warning-line.svg);mask-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../icons/system/alert-fill.svg);mask-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../icons/system/alert-line.svg);mask-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-fill.svg);mask-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-s-fill.svg);mask-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-fill.svg);mask-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-line.svg);mask-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-fill.svg);mask-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-s-fill.svg);mask-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-fill.svg);mask-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-s-fill.svg);mask-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-s-fill.svg);mask-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../icons/system/checkbox-circle-fill.svg);mask-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../icons/system/checkbox-fill.svg);mask-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../icons/system/checkbox-line.svg);mask-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../icons/system/close-circle-fill.svg);mask-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../icons/system/close-circle-line.svg);mask-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../icons/system/download-fill.svg);mask-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../icons/system/external-link-fill.svg);mask-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../icons/system/fr--capslock-line.svg);mask-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--equal-circle-fill.svg);mask-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../icons/system/lock-unlock-fill.svg);mask-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../icons/system/lock-unlock-line.svg);mask-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../icons/system/more-fill.svg);mask-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../icons/system/more-line.svg);mask-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../icons/system/notification-badge-fill.svg);mask-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../icons/system/notification-badge-line.svg);mask-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../icons/system/settings-5-fill.svg);mask-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../icons/system/settings-5-line.svg);mask-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../icons/system/shield-fill.svg);mask-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../icons/system/shield-line.svg);mask-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../icons/system/star-fill.svg);mask-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../icons/system/star-line.svg);mask-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../icons/system/star-s-fill.svg);mask-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../icons/system/star-s-line.svg);mask-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../icons/system/thumb-down-fill.svg);mask-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../icons/system/thumb-down-line.svg);mask-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../icons/system/thumb-up-fill.svg);mask-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../icons/system/thumb-up-line.svg);mask-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../icons/system/time-fill.svg);mask-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../icons/system/time-line.svg);mask-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../icons/system/upload-fill.svg);mask-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../icons/system/upload-line.svg);mask-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../icons/user/account-pin-circle-fill.svg);mask-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../icons/user/account-pin-circle-line.svg);mask-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../icons/user/admin-fill.svg);mask-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../icons/user/admin-line.svg);mask-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../icons/user/group-fill.svg);mask-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../icons/user/group-line.svg);mask-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../icons/user/parent-fill.svg);mask-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../icons/user/parent-line.svg);mask-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../icons/user/team-fill.svg);mask-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../icons/user/user-add-fill.svg);mask-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../icons/user/user-add-line.svg);mask-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../icons/user/user-heart-fill.svg);mask-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../icons/user/user-heart-line.svg);mask-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../icons/user/user-search-fill.svg);mask-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../icons/user/user-search-line.svg);mask-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../icons/user/user-setting-fill.svg);mask-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../icons/user/user-setting-line.svg);mask-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../icons/user/user-star-fill.svg);mask-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../icons/user/user-star-line.svg);mask-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../icons/weather/cloudy-2-fill.svg);mask-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../icons/weather/cloudy-2-line.svg);mask-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../icons/weather/fire-fill.svg);mask-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../icons/weather/fire-line.svg);mask-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../icons/weather/flood-fill.svg);mask-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../icons/weather/flood-line.svg);mask-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../icons/weather/fr--avalanches-fill.svg);mask-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../icons/weather/fr--submersion-fill.svg);mask-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../icons/weather/heavy-showers-line.svg);mask-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../icons/weather/moon-fill.svg);mask-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../icons/weather/moon-line.svg);mask-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../icons/weather/snowy-fill.svg);mask-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../icons/weather/snowy-line.svg);mask-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../icons/weather/sparkling-2-fill.svg);mask-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../icons/weather/sparkling-2-line.svg);mask-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../icons/weather/sun-fill.svg);mask-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../icons/weather/sun-line.svg);mask-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../icons/weather/temp-cold-fill.svg);mask-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../icons/weather/temp-cold-line.svg);mask-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../icons/weather/thunderstorms-fill.svg);mask-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../icons/weather/thunderstorms-line.svg);mask-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../icons/weather/tornado-line.svg);mask-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../icons/weather/typhoon-line.svg);mask-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../icons/weather/windy-fill.svg);mask-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../icons/weather/windy-line.svg);mask-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}@media (min-width:36em){ + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */.fr-background-default--grey{--idle:transparent;--hover:var(--background-default-grey-hover)!important;--active:var(--background-default-grey-active)!important;background-color:var(--background-default-grey)!important}.fr-background-alt--grey{--idle:transparent;--hover:var(--background-alt-grey-hover)!important;--active:var(--background-alt-grey-active)!important;background-color:var(--background-alt-grey)!important}.fr-background-alt--blue-france{--idle:transparent;--hover:var(--background-alt-blue-france-hover)!important;--active:var(--background-alt-blue-france-active)!important;background-color:var(--background-alt-blue-france)!important}.fr-background-alt--red-marianne{--idle:transparent;--hover:var(--background-alt-red-marianne-hover)!important;--active:var(--background-alt-red-marianne-active)!important;background-color:var(--background-alt-red-marianne)!important}.fr-background-alt--green-tilleul-verveine{--idle:transparent;--hover:var(--background-alt-green-tilleul-verveine-hover)!important;--active:var(--background-alt-green-tilleul-verveine-active)!important;background-color:var(--background-alt-green-tilleul-verveine)!important}.fr-background-alt--green-bourgeon{--idle:transparent;--hover:var(--background-alt-green-bourgeon-hover)!important;--active:var(--background-alt-green-bourgeon-active)!important;background-color:var(--background-alt-green-bourgeon)!important}.fr-background-alt--green-emeraude{--idle:transparent;--hover:var(--background-alt-green-emeraude-hover)!important;--active:var(--background-alt-green-emeraude-active)!important;background-color:var(--background-alt-green-emeraude)!important}.fr-background-alt--green-menthe{--idle:transparent;--hover:var(--background-alt-green-menthe-hover)!important;--active:var(--background-alt-green-menthe-active)!important;background-color:var(--background-alt-green-menthe)!important}.fr-background-alt--green-archipel{--idle:transparent;--hover:var(--background-alt-green-archipel-hover)!important;--active:var(--background-alt-green-archipel-active)!important;background-color:var(--background-alt-green-archipel)!important}.fr-background-alt--blue-ecume{--idle:transparent;--hover:var(--background-alt-blue-ecume-hover)!important;--active:var(--background-alt-blue-ecume-active)!important;background-color:var(--background-alt-blue-ecume)!important}.fr-background-alt--blue-cumulus{--idle:transparent;--hover:var(--background-alt-blue-cumulus-hover)!important;--active:var(--background-alt-blue-cumulus-active)!important;background-color:var(--background-alt-blue-cumulus)!important}.fr-background-alt--purple-glycine{--idle:transparent;--hover:var(--background-alt-purple-glycine-hover)!important;--active:var(--background-alt-purple-glycine-active)!important;background-color:var(--background-alt-purple-glycine)!important}.fr-background-alt--pink-macaron{--idle:transparent;--hover:var(--background-alt-pink-macaron-hover)!important;--active:var(--background-alt-pink-macaron-active)!important;background-color:var(--background-alt-pink-macaron)!important}.fr-background-alt--pink-tuile{--idle:transparent;--hover:var(--background-alt-pink-tuile-hover)!important;--active:var(--background-alt-pink-tuile-active)!important;background-color:var(--background-alt-pink-tuile)!important}.fr-background-alt--yellow-tournesol{--idle:transparent;--hover:var(--background-alt-yellow-tournesol-hover)!important;--active:var(--background-alt-yellow-tournesol-active)!important;background-color:var(--background-alt-yellow-tournesol)!important}.fr-background-alt--yellow-moutarde{--idle:transparent;--hover:var(--background-alt-yellow-moutarde-hover)!important;--active:var(--background-alt-yellow-moutarde-active)!important;background-color:var(--background-alt-yellow-moutarde)!important}.fr-background-alt--orange-terre-battue{--idle:transparent;--hover:var(--background-alt-orange-terre-battue-hover)!important;--active:var(--background-alt-orange-terre-battue-active)!important;background-color:var(--background-alt-orange-terre-battue)!important}.fr-background-alt--brown-cafe-creme{--idle:transparent;--hover:var(--background-alt-brown-cafe-creme-hover)!important;--active:var(--background-alt-brown-cafe-creme-active)!important;background-color:var(--background-alt-brown-cafe-creme)!important}.fr-background-alt--brown-caramel{--idle:transparent;--hover:var(--background-alt-brown-caramel-hover)!important;--active:var(--background-alt-brown-caramel-active)!important;background-color:var(--background-alt-brown-caramel)!important}.fr-background-alt--brown-opera{--idle:transparent;--hover:var(--background-alt-brown-opera-hover)!important;--active:var(--background-alt-brown-opera-active)!important;background-color:var(--background-alt-brown-opera)!important}.fr-background-alt--beige-gris-galet{--idle:transparent;--hover:var(--background-alt-beige-gris-galet-hover)!important;--active:var(--background-alt-beige-gris-galet-active)!important;background-color:var(--background-alt-beige-gris-galet)!important}.fr-background-contrast--grey{--idle:transparent;--hover:var(--background-contrast-grey-hover)!important;--active:var(--background-contrast-grey-active)!important;background-color:var(--background-contrast-grey)!important}.fr-background-contrast--blue-france{--idle:transparent;--hover:var(--background-contrast-blue-france-hover)!important;--active:var(--background-contrast-blue-france-active)!important;background-color:var(--background-contrast-blue-france)!important}.fr-background-contrast--red-marianne{--idle:transparent;--hover:var(--background-contrast-red-marianne-hover)!important;--active:var(--background-contrast-red-marianne-active)!important;background-color:var(--background-contrast-red-marianne)!important}.fr-background-contrast--green-tilleul-verveine{--idle:transparent;--hover:var(--background-contrast-green-tilleul-verveine-hover)!important;--active:var(--background-contrast-green-tilleul-verveine-active)!important;background-color:var(--background-contrast-green-tilleul-verveine)!important}.fr-background-contrast--green-bourgeon{--idle:transparent;--hover:var(--background-contrast-green-bourgeon-hover)!important;--active:var(--background-contrast-green-bourgeon-active)!important;background-color:var(--background-contrast-green-bourgeon)!important}.fr-background-contrast--green-emeraude{--idle:transparent;--hover:var(--background-contrast-green-emeraude-hover)!important;--active:var(--background-contrast-green-emeraude-active)!important;background-color:var(--background-contrast-green-emeraude)!important}.fr-background-contrast--green-menthe{--idle:transparent;--hover:var(--background-contrast-green-menthe-hover)!important;--active:var(--background-contrast-green-menthe-active)!important;background-color:var(--background-contrast-green-menthe)!important}.fr-background-contrast--green-archipel{--idle:transparent;--hover:var(--background-contrast-green-archipel-hover)!important;--active:var(--background-contrast-green-archipel-active)!important;background-color:var(--background-contrast-green-archipel)!important}.fr-background-contrast--blue-ecume{--idle:transparent;--hover:var(--background-contrast-blue-ecume-hover)!important;--active:var(--background-contrast-blue-ecume-active)!important;background-color:var(--background-contrast-blue-ecume)!important}.fr-background-contrast--blue-cumulus{--idle:transparent;--hover:var(--background-contrast-blue-cumulus-hover)!important;--active:var(--background-contrast-blue-cumulus-active)!important;background-color:var(--background-contrast-blue-cumulus)!important}.fr-background-contrast--purple-glycine{--idle:transparent;--hover:var(--background-contrast-purple-glycine-hover)!important;--active:var(--background-contrast-purple-glycine-active)!important;background-color:var(--background-contrast-purple-glycine)!important}.fr-background-contrast--pink-macaron{--idle:transparent;--hover:var(--background-contrast-pink-macaron-hover)!important;--active:var(--background-contrast-pink-macaron-active)!important;background-color:var(--background-contrast-pink-macaron)!important}.fr-background-contrast--pink-tuile{--idle:transparent;--hover:var(--background-contrast-pink-tuile-hover)!important;--active:var(--background-contrast-pink-tuile-active)!important;background-color:var(--background-contrast-pink-tuile)!important}.fr-background-contrast--yellow-tournesol{--idle:transparent;--hover:var(--background-contrast-yellow-tournesol-hover)!important;--active:var(--background-contrast-yellow-tournesol-active)!important;background-color:var(--background-contrast-yellow-tournesol)!important}.fr-background-contrast--yellow-moutarde{--idle:transparent;--hover:var(--background-contrast-yellow-moutarde-hover)!important;--active:var(--background-contrast-yellow-moutarde-active)!important;background-color:var(--background-contrast-yellow-moutarde)!important}.fr-background-contrast--orange-terre-battue{--idle:transparent;--hover:var(--background-contrast-orange-terre-battue-hover)!important;--active:var(--background-contrast-orange-terre-battue-active)!important;background-color:var(--background-contrast-orange-terre-battue)!important}.fr-background-contrast--brown-cafe-creme{--idle:transparent;--hover:var(--background-contrast-brown-cafe-creme-hover)!important;--active:var(--background-contrast-brown-cafe-creme-active)!important;background-color:var(--background-contrast-brown-cafe-creme)!important}.fr-background-contrast--brown-caramel{--idle:transparent;--hover:var(--background-contrast-brown-caramel-hover)!important;--active:var(--background-contrast-brown-caramel-active)!important;background-color:var(--background-contrast-brown-caramel)!important}.fr-background-contrast--brown-opera{--idle:transparent;--hover:var(--background-contrast-brown-opera-hover)!important;--active:var(--background-contrast-brown-opera-active)!important;background-color:var(--background-contrast-brown-opera)!important}.fr-background-contrast--beige-gris-galet{--idle:transparent;--hover:var(--background-contrast-beige-gris-galet-hover)!important;--active:var(--background-contrast-beige-gris-galet-active)!important;background-color:var(--background-contrast-beige-gris-galet)!important}.fr-background-contrast--info{--idle:transparent;--hover:var(--background-contrast-info-hover)!important;--active:var(--background-contrast-info-active)!important;background-color:var(--background-contrast-info)!important}.fr-background-contrast--success{--idle:transparent;--hover:var(--background-contrast-success-hover)!important;--active:var(--background-contrast-success-active)!important;background-color:var(--background-contrast-success)!important}.fr-background-contrast--warning{--idle:transparent;--hover:var(--background-contrast-warning-hover)!important;--active:var(--background-contrast-warning-active)!important;background-color:var(--background-contrast-warning)!important}.fr-background-contrast--error{--idle:transparent;--hover:var(--background-contrast-error-hover)!important;--active:var(--background-contrast-error-active)!important;background-color:var(--background-contrast-error)!important}.fr-background-flat--grey{background-color:var(--background-flat-grey)!important}.fr-background-flat--blue-france{background-color:var(--background-flat-blue-france)!important}.fr-background-flat--red-marianne{background-color:var(--background-flat-red-marianne)!important}.fr-background-flat--green-tilleul-verveine{background-color:var(--background-flat-green-tilleul-verveine)!important}.fr-background-flat--green-bourgeon{background-color:var(--background-flat-green-bourgeon)!important}.fr-background-flat--green-emeraude{background-color:var(--background-flat-green-emeraude)!important}.fr-background-flat--green-menthe{background-color:var(--background-flat-green-menthe)!important}.fr-background-flat--green-archipel{background-color:var(--background-flat-green-archipel)!important}.fr-background-flat--blue-ecume{background-color:var(--background-flat-blue-ecume)!important}.fr-background-flat--blue-cumulus{background-color:var(--background-flat-blue-cumulus)!important}.fr-background-flat--purple-glycine{background-color:var(--background-flat-purple-glycine)!important}.fr-background-flat--pink-macaron{background-color:var(--background-flat-pink-macaron)!important}.fr-background-flat--pink-tuile{background-color:var(--background-flat-pink-tuile)!important}.fr-background-flat--yellow-tournesol{background-color:var(--background-flat-yellow-tournesol)!important}.fr-background-flat--yellow-moutarde{background-color:var(--background-flat-yellow-moutarde)!important}.fr-background-flat--orange-terre-battue{background-color:var(--background-flat-orange-terre-battue)!important}.fr-background-flat--brown-cafe-creme{background-color:var(--background-flat-brown-cafe-creme)!important}.fr-background-flat--brown-caramel{background-color:var(--background-flat-brown-caramel)!important}.fr-background-flat--brown-opera{background-color:var(--background-flat-brown-opera)!important}.fr-background-flat--beige-gris-galet{background-color:var(--background-flat-beige-gris-galet)!important}.fr-background-flat--info{background-color:var(--background-flat-info)!important}.fr-background-flat--success{background-color:var(--background-flat-success)!important}.fr-background-flat--warning{background-color:var(--background-flat-warning)!important}.fr-background-flat--error{background-color:var(--background-flat-error)!important}.fr-background-action-high--grey{--idle:transparent;--hover:var(--background-action-high-grey-hover)!important;--active:var(--background-action-high-grey-active)!important;background-color:var(--background-action-high-grey)!important}.fr-background-action-high--blue-france{--idle:transparent;--hover:var(--background-action-high-blue-france-hover)!important;--active:var(--background-action-high-blue-france-active)!important;background-color:var(--background-action-high-blue-france)!important}.fr-background-action-high--red-marianne{--idle:transparent;--hover:var(--background-action-high-red-marianne-hover)!important;--active:var(--background-action-high-red-marianne-active)!important;background-color:var(--background-action-high-red-marianne)!important}.fr-background-action-high--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-high-green-tilleul-verveine-hover)!important;--active:var(--background-action-high-green-tilleul-verveine-active)!important;background-color:var(--background-action-high-green-tilleul-verveine)!important}.fr-background-action-high--green-bourgeon{--idle:transparent;--hover:var(--background-action-high-green-bourgeon-hover)!important;--active:var(--background-action-high-green-bourgeon-active)!important;background-color:var(--background-action-high-green-bourgeon)!important}.fr-background-action-high--green-emeraude{--idle:transparent;--hover:var(--background-action-high-green-emeraude-hover)!important;--active:var(--background-action-high-green-emeraude-active)!important;background-color:var(--background-action-high-green-emeraude)!important}.fr-background-action-high--green-menthe{--idle:transparent;--hover:var(--background-action-high-green-menthe-hover)!important;--active:var(--background-action-high-green-menthe-active)!important;background-color:var(--background-action-high-green-menthe)!important}.fr-background-action-high--green-archipel{--idle:transparent;--hover:var(--background-action-high-green-archipel-hover)!important;--active:var(--background-action-high-green-archipel-active)!important;background-color:var(--background-action-high-green-archipel)!important}.fr-background-action-high--blue-ecume{--idle:transparent;--hover:var(--background-action-high-blue-ecume-hover)!important;--active:var(--background-action-high-blue-ecume-active)!important;background-color:var(--background-action-high-blue-ecume)!important}.fr-background-action-high--blue-cumulus{--idle:transparent;--hover:var(--background-action-high-blue-cumulus-hover)!important;--active:var(--background-action-high-blue-cumulus-active)!important;background-color:var(--background-action-high-blue-cumulus)!important}.fr-background-action-high--purple-glycine{--idle:transparent;--hover:var(--background-action-high-purple-glycine-hover)!important;--active:var(--background-action-high-purple-glycine-active)!important;background-color:var(--background-action-high-purple-glycine)!important}.fr-background-action-high--pink-macaron{--idle:transparent;--hover:var(--background-action-high-pink-macaron-hover)!important;--active:var(--background-action-high-pink-macaron-active)!important;background-color:var(--background-action-high-pink-macaron)!important}.fr-background-action-high--pink-tuile{--idle:transparent;--hover:var(--background-action-high-pink-tuile-hover)!important;--active:var(--background-action-high-pink-tuile-active)!important;background-color:var(--background-action-high-pink-tuile)!important}.fr-background-action-high--yellow-tournesol{--idle:transparent;--hover:var(--background-action-high-yellow-tournesol-hover)!important;--active:var(--background-action-high-yellow-tournesol-active)!important;background-color:var(--background-action-high-yellow-tournesol)!important}.fr-background-action-high--yellow-moutarde{--idle:transparent;--hover:var(--background-action-high-yellow-moutarde-hover)!important;--active:var(--background-action-high-yellow-moutarde-active)!important;background-color:var(--background-action-high-yellow-moutarde)!important}.fr-background-action-high--orange-terre-battue{--idle:transparent;--hover:var(--background-action-high-orange-terre-battue-hover)!important;--active:var(--background-action-high-orange-terre-battue-active)!important;background-color:var(--background-action-high-orange-terre-battue)!important}.fr-background-action-high--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-high-brown-cafe-creme-hover)!important;--active:var(--background-action-high-brown-cafe-creme-active)!important;background-color:var(--background-action-high-brown-cafe-creme)!important}.fr-background-action-high--brown-caramel{--idle:transparent;--hover:var(--background-action-high-brown-caramel-hover)!important;--active:var(--background-action-high-brown-caramel-active)!important;background-color:var(--background-action-high-brown-caramel)!important}.fr-background-action-high--brown-opera{--idle:transparent;--hover:var(--background-action-high-brown-opera-hover)!important;--active:var(--background-action-high-brown-opera-active)!important;background-color:var(--background-action-high-brown-opera)!important}.fr-background-action-high--beige-gris-galet{--idle:transparent;--hover:var(--background-action-high-beige-gris-galet-hover)!important;--active:var(--background-action-high-beige-gris-galet-active)!important;background-color:var(--background-action-high-beige-gris-galet)!important}.fr-background-action-high--info{--idle:transparent;--hover:var(--background-action-high-info-hover)!important;--active:var(--background-action-high-info-active)!important;background-color:var(--background-action-high-info)!important}.fr-background-action-high--success{--idle:transparent;--hover:var(--background-action-high-success-hover)!important;--active:var(--background-action-high-success-active)!important;background-color:var(--background-action-high-success)!important}.fr-background-action-high--warning{--idle:transparent;--hover:var(--background-action-high-warning-hover)!important;--active:var(--background-action-high-warning-active)!important;background-color:var(--background-action-high-warning)!important}.fr-background-action-high--error{--idle:transparent;--hover:var(--background-action-high-error-hover)!important;--active:var(--background-action-high-error-active)!important;background-color:var(--background-action-high-error)!important}.fr-background-action-low--blue-france{--idle:transparent;--hover:var(--background-action-low-blue-france-hover)!important;--active:var(--background-action-low-blue-france-active)!important;background-color:var(--background-action-low-blue-france)!important}.fr-background-action-low--red-marianne{--idle:transparent;--hover:var(--background-action-low-red-marianne-hover)!important;--active:var(--background-action-low-red-marianne-active)!important;background-color:var(--background-action-low-red-marianne)!important}.fr-background-action-low--green-tilleul-verveine{--idle:transparent;--hover:var(--background-action-low-green-tilleul-verveine-hover)!important;--active:var(--background-action-low-green-tilleul-verveine-active)!important;background-color:var(--background-action-low-green-tilleul-verveine)!important}.fr-background-action-low--green-bourgeon{--idle:transparent;--hover:var(--background-action-low-green-bourgeon-hover)!important;--active:var(--background-action-low-green-bourgeon-active)!important;background-color:var(--background-action-low-green-bourgeon)!important}.fr-background-action-low--green-emeraude{--idle:transparent;--hover:var(--background-action-low-green-emeraude-hover)!important;--active:var(--background-action-low-green-emeraude-active)!important;background-color:var(--background-action-low-green-emeraude)!important}.fr-background-action-low--green-menthe{--idle:transparent;--hover:var(--background-action-low-green-menthe-hover)!important;--active:var(--background-action-low-green-menthe-active)!important;background-color:var(--background-action-low-green-menthe)!important}.fr-background-action-low--green-archipel{--idle:transparent;--hover:var(--background-action-low-green-archipel-hover)!important;--active:var(--background-action-low-green-archipel-active)!important;background-color:var(--background-action-low-green-archipel)!important}.fr-background-action-low--blue-ecume{--idle:transparent;--hover:var(--background-action-low-blue-ecume-hover)!important;--active:var(--background-action-low-blue-ecume-active)!important;background-color:var(--background-action-low-blue-ecume)!important}.fr-background-action-low--blue-cumulus{--idle:transparent;--hover:var(--background-action-low-blue-cumulus-hover)!important;--active:var(--background-action-low-blue-cumulus-active)!important;background-color:var(--background-action-low-blue-cumulus)!important}.fr-background-action-low--purple-glycine{--idle:transparent;--hover:var(--background-action-low-purple-glycine-hover)!important;--active:var(--background-action-low-purple-glycine-active)!important;background-color:var(--background-action-low-purple-glycine)!important}.fr-background-action-low--pink-macaron{--idle:transparent;--hover:var(--background-action-low-pink-macaron-hover)!important;--active:var(--background-action-low-pink-macaron-active)!important;background-color:var(--background-action-low-pink-macaron)!important}.fr-background-action-low--pink-tuile{--idle:transparent;--hover:var(--background-action-low-pink-tuile-hover)!important;--active:var(--background-action-low-pink-tuile-active)!important;background-color:var(--background-action-low-pink-tuile)!important}.fr-background-action-low--yellow-tournesol{--idle:transparent;--hover:var(--background-action-low-yellow-tournesol-hover)!important;--active:var(--background-action-low-yellow-tournesol-active)!important;background-color:var(--background-action-low-yellow-tournesol)!important}.fr-background-action-low--yellow-moutarde{--idle:transparent;--hover:var(--background-action-low-yellow-moutarde-hover)!important;--active:var(--background-action-low-yellow-moutarde-active)!important;background-color:var(--background-action-low-yellow-moutarde)!important}.fr-background-action-low--orange-terre-battue{--idle:transparent;--hover:var(--background-action-low-orange-terre-battue-hover)!important;--active:var(--background-action-low-orange-terre-battue-active)!important;background-color:var(--background-action-low-orange-terre-battue)!important}.fr-background-action-low--brown-cafe-creme{--idle:transparent;--hover:var(--background-action-low-brown-cafe-creme-hover)!important;--active:var(--background-action-low-brown-cafe-creme-active)!important;background-color:var(--background-action-low-brown-cafe-creme)!important}.fr-background-action-low--brown-caramel{--idle:transparent;--hover:var(--background-action-low-brown-caramel-hover)!important;--active:var(--background-action-low-brown-caramel-active)!important;background-color:var(--background-action-low-brown-caramel)!important}.fr-background-action-low--brown-opera{--idle:transparent;--hover:var(--background-action-low-brown-opera-hover)!important;--active:var(--background-action-low-brown-opera-active)!important;background-color:var(--background-action-low-brown-opera)!important}.fr-background-action-low--beige-gris-galet{--idle:transparent;--hover:var(--background-action-low-beige-gris-galet-hover)!important;--active:var(--background-action-low-beige-gris-galet-active)!important;background-color:var(--background-action-low-beige-gris-galet)!important}.fr-text-default--grey{color:var(--text-default-grey)!important}.fr-text-default--info{color:var(--text-default-info)!important}.fr-text-default--success{color:var(--text-default-success)!important}.fr-text-default--warning{color:var(--text-default-warning)!important}.fr-text-default--error{color:var(--text-default-error)!important}.fr-text-title--grey{color:var(--text-title-grey)!important}.fr-text-title--blue-france{color:var(--text-title-blue-france)!important}.fr-text-title--red-marianne{color:var(--text-title-red-marianne)!important}.fr-text-label--grey{color:var(--text-label-grey)!important}.fr-text-label--blue-france{color:var(--text-label-blue-france)!important}.fr-text-label--red-marianne{color:var(--text-label-red-marianne)!important}.fr-text-label--green-tilleul-verveine{color:var(--text-label-green-tilleul-verveine)!important}.fr-text-label--green-bourgeon{color:var(--text-label-green-bourgeon)!important}.fr-text-label--green-emeraude{color:var(--text-label-green-emeraude)!important}.fr-text-label--green-menthe{color:var(--text-label-green-menthe)!important}.fr-text-label--green-archipel{color:var(--text-label-green-archipel)!important}.fr-text-label--blue-ecume{color:var(--text-label-blue-ecume)!important}.fr-text-label--blue-cumulus{color:var(--text-label-blue-cumulus)!important}.fr-text-label--purple-glycine{color:var(--text-label-purple-glycine)!important}.fr-text-label--pink-macaron{color:var(--text-label-pink-macaron)!important}.fr-text-label--pink-tuile{color:var(--text-label-pink-tuile)!important}.fr-text-label--yellow-tournesol{color:var(--text-label-yellow-tournesol)!important}.fr-text-label--yellow-moutarde{color:var(--text-label-yellow-moutarde)!important}.fr-text-label--orange-terre-battue{color:var(--text-label-orange-terre-battue)!important}.fr-text-label--brown-cafe-creme{color:var(--text-label-brown-cafe-creme)!important}.fr-text-label--brown-caramel{color:var(--text-label-brown-caramel)!important}.fr-text-label--brown-opera{color:var(--text-label-brown-opera)!important}.fr-text-label--beige-gris-galet{color:var(--text-label-beige-gris-galet)!important}.fr-text-mention--grey{color:var(--text-mention-grey)!important}.fr-text-inverted--grey{color:var(--text-inverted-grey)!important}.fr-text-inverted--blue-france{color:var(--text-inverted-blue-france)!important}.fr-text-inverted--red-marianne{color:var(--text-inverted-red-marianne)!important}.fr-text-inverted--info{color:var(--text-inverted-info)!important}.fr-text-inverted--success{color:var(--text-inverted-success)!important}.fr-text-inverted--warning{color:var(--text-inverted-warning)!important}.fr-text-inverted--error{color:var(--text-inverted-error)!important}.fr-text-inverted--green-tilleul-verveine{color:var(--text-inverted-green-tilleul-verveine)!important}.fr-text-inverted--green-bourgeon{color:var(--text-inverted-green-bourgeon)!important}.fr-text-inverted--green-emeraude{color:var(--text-inverted-green-emeraude)!important}.fr-text-inverted--green-menthe{color:var(--text-inverted-green-menthe)!important}.fr-text-inverted--green-archipel{color:var(--text-inverted-green-archipel)!important}.fr-text-inverted--blue-ecume{color:var(--text-inverted-blue-ecume)!important}.fr-text-inverted--blue-cumulus{color:var(--text-inverted-blue-cumulus)!important}.fr-text-inverted--purple-glycine{color:var(--text-inverted-purple-glycine)!important}.fr-text-inverted--pink-macaron{color:var(--text-inverted-pink-macaron)!important}.fr-text-inverted--pink-tuile{color:var(--text-inverted-pink-tuile)!important}.fr-text-inverted--yellow-tournesol{color:var(--text-inverted-yellow-tournesol)!important}.fr-text-inverted--yellow-moutarde{color:var(--text-inverted-yellow-moutarde)!important}.fr-text-inverted--orange-terre-battue{color:var(--text-inverted-orange-terre-battue)!important}.fr-text-inverted--brown-cafe-creme{color:var(--text-inverted-brown-cafe-creme)!important}.fr-text-inverted--brown-caramel{color:var(--text-inverted-brown-caramel)!important}.fr-text-inverted--brown-opera{color:var(--text-inverted-brown-opera)!important}.fr-text-inverted--beige-gris-galet{color:var(--text-inverted-beige-gris-galet)!important}.fr-text-action-high--grey{color:var(--text-action-high-grey)!important}.fr-text-action-high--blue-france{color:var(--text-action-high-blue-france)!important}.fr-text-action-high--red-marianne{color:var(--text-action-high-red-marianne)!important}.fr-text-action-high--green-tilleul-verveine{color:var(--text-action-high-green-tilleul-verveine)!important}.fr-text-action-high--green-bourgeon{color:var(--text-action-high-green-bourgeon)!important}.fr-text-action-high--green-emeraude{color:var(--text-action-high-green-emeraude)!important}.fr-text-action-high--green-menthe{color:var(--text-action-high-green-menthe)!important}.fr-text-action-high--green-archipel{color:var(--text-action-high-green-archipel)!important}.fr-text-action-high--blue-ecume{color:var(--text-action-high-blue-ecume)!important}.fr-text-action-high--blue-cumulus{color:var(--text-action-high-blue-cumulus)!important}.fr-text-action-high--purple-glycine{color:var(--text-action-high-purple-glycine)!important}.fr-text-action-high--pink-macaron{color:var(--text-action-high-pink-macaron)!important}.fr-text-action-high--pink-tuile{color:var(--text-action-high-pink-tuile)!important}.fr-text-action-high--yellow-tournesol{color:var(--text-action-high-yellow-tournesol)!important}.fr-text-action-high--yellow-moutarde{color:var(--text-action-high-yellow-moutarde)!important}.fr-text-action-high--orange-terre-battue{color:var(--text-action-high-orange-terre-battue)!important}.fr-text-action-high--brown-cafe-creme{color:var(--text-action-high-brown-cafe-creme)!important}.fr-text-action-high--brown-caramel{color:var(--text-action-high-brown-caramel)!important}.fr-text-action-high--brown-opera{color:var(--text-action-high-brown-opera)!important}.fr-text-action-high--beige-gris-galet{color:var(--text-action-high-beige-gris-galet)!important}.fr-border-default--grey{border:1px solid var(--border-default-grey)!important}.fr-border-default--blue-france{border:1px solid var(--border-default-blue-france)!important}.fr-border-default--red-marianne{border:1px solid var(--border-default-red-marianne)!important}.fr-border-default--green-tilleul-verveine{border:1px solid var(--border-default-green-tilleul-verveine)!important}.fr-border-default--green-bourgeon{border:1px solid var(--border-default-green-bourgeon)!important}.fr-border-default--green-emeraude{border:1px solid var(--border-default-green-emeraude)!important}.fr-border-default--green-menthe{border:1px solid var(--border-default-green-menthe)!important}.fr-border-default--green-archipel{border:1px solid var(--border-default-green-archipel)!important}.fr-border-default--blue-ecume{border:1px solid var(--border-default-blue-ecume)!important}.fr-border-default--blue-cumulus{border:1px solid var(--border-default-blue-cumulus)!important}.fr-border-default--purple-glycine{border:1px solid var(--border-default-purple-glycine)!important}.fr-border-default--pink-macaron{border:1px solid var(--border-default-pink-macaron)!important}.fr-border-default--pink-tuile{border:1px solid var(--border-default-pink-tuile)!important}.fr-border-default--yellow-tournesol{border:1px solid var(--border-default-yellow-tournesol)!important}.fr-border-default--yellow-moutarde{border:1px solid var(--border-default-yellow-moutarde)!important}.fr-border-default--orange-terre-battue{border:1px solid var(--border-default-orange-terre-battue)!important}.fr-border-default--brown-cafe-creme{border:1px solid var(--border-default-brown-cafe-creme)!important}.fr-border-default--brown-caramel{border:1px solid var(--border-default-brown-caramel)!important}.fr-border-default--brown-opera{border:1px solid var(--border-default-brown-opera)!important}.fr-border-default--beige-gris-galet{border:1px solid var(--border-default-beige-gris-galet)!important}.fr-border-plain--grey{border:1px solid var(--border-plain-grey)!important}.fr-border-plain--blue-france{border:1px solid var(--border-plain-blue-france)!important}.fr-border-plain--red-marianne{border:1px solid var(--border-plain-red-marianne)!important}.fr-border-plain--info{border:1px solid var(--border-plain-info)!important}.fr-border-plain--success{border:1px solid var(--border-plain-success)!important}.fr-border-plain--warning{border:1px solid var(--border-plain-warning)!important}.fr-border-plain--error{border:1px solid var(--border-plain-error)!important}.fr-border-plain--green-tilleul-verveine{border:1px solid var(--border-plain-green-tilleul-verveine)!important}.fr-border-plain--green-bourgeon{border:1px solid var(--border-plain-green-bourgeon)!important}.fr-border-plain--green-emeraude{border:1px solid var(--border-plain-green-emeraude)!important}.fr-border-plain--green-menthe{border:1px solid var(--border-plain-green-menthe)!important}.fr-border-plain--green-archipel{border:1px solid var(--border-plain-green-archipel)!important}.fr-border-plain--blue-ecume{border:1px solid var(--border-plain-blue-ecume)!important}.fr-border-plain--blue-cumulus{border:1px solid var(--border-plain-blue-cumulus)!important}.fr-border-plain--purple-glycine{border:1px solid var(--border-plain-purple-glycine)!important}.fr-border-plain--pink-macaron{border:1px solid var(--border-plain-pink-macaron)!important}.fr-border-plain--pink-tuile{border:1px solid var(--border-plain-pink-tuile)!important}.fr-border-plain--yellow-tournesol{border:1px solid var(--border-plain-yellow-tournesol)!important}.fr-border-plain--yellow-moutarde{border:1px solid var(--border-plain-yellow-moutarde)!important}.fr-border-plain--orange-terre-battue{border:1px solid var(--border-plain-orange-terre-battue)!important}.fr-border-plain--brown-cafe-creme{border:1px solid var(--border-plain-brown-cafe-creme)!important}.fr-border-plain--brown-caramel{border:1px solid var(--border-plain-brown-caramel)!important}.fr-border-plain--brown-opera{border:1px solid var(--border-plain-brown-opera)!important}.fr-border-plain--beige-gris-galet{border:1px solid var(--border-plain-beige-gris-galet)!important}.fr-artwork-major--blue-france{fill:var(--artwork-major-blue-france)!important}.fr-artwork-major--red-marianne{fill:var(--artwork-major-red-marianne)!important}.fr-artwork-major--green-tilleul-verveine{fill:var(--artwork-major-green-tilleul-verveine)!important}.fr-artwork-major--green-bourgeon{fill:var(--artwork-major-green-bourgeon)!important}.fr-artwork-major--green-emeraude{fill:var(--artwork-major-green-emeraude)!important}.fr-artwork-major--green-menthe{fill:var(--artwork-major-green-menthe)!important}.fr-artwork-major--green-archipel{fill:var(--artwork-major-green-archipel)!important}.fr-artwork-major--blue-ecume{fill:var(--artwork-major-blue-ecume)!important}.fr-artwork-major--blue-cumulus{fill:var(--artwork-major-blue-cumulus)!important}.fr-artwork-major--purple-glycine{fill:var(--artwork-major-purple-glycine)!important}.fr-artwork-major--pink-macaron{fill:var(--artwork-major-pink-macaron)!important}.fr-artwork-major--pink-tuile{fill:var(--artwork-major-pink-tuile)!important}.fr-artwork-major--yellow-tournesol{fill:var(--artwork-major-yellow-tournesol)!important}.fr-artwork-major--yellow-moutarde{fill:var(--artwork-major-yellow-moutarde)!important}.fr-artwork-major--orange-terre-battue{fill:var(--artwork-major-orange-terre-battue)!important}.fr-artwork-major--brown-cafe-creme{fill:var(--artwork-major-brown-cafe-creme)!important}.fr-artwork-major--brown-caramel{fill:var(--artwork-major-brown-caramel)!important}.fr-artwork-major--brown-opera{fill:var(--artwork-major-brown-opera)!important}.fr-artwork-major--beige-gris-galet{fill:var(--artwork-major-beige-gris-galet)!important}.fr-artwork-minor--blue-france{fill:var(--artwork-minor-blue-france)!important}.fr-artwork-minor--red-marianne{fill:var(--artwork-minor-red-marianne)!important}.fr-artwork-minor--green-tilleul-verveine{fill:var(--artwork-minor-green-tilleul-verveine)!important}.fr-artwork-minor--green-bourgeon{fill:var(--artwork-minor-green-bourgeon)!important}.fr-artwork-minor--green-emeraude{fill:var(--artwork-minor-green-emeraude)!important}.fr-artwork-minor--green-menthe{fill:var(--artwork-minor-green-menthe)!important}.fr-artwork-minor--green-archipel{fill:var(--artwork-minor-green-archipel)!important}.fr-artwork-minor--blue-ecume{fill:var(--artwork-minor-blue-ecume)!important}.fr-artwork-minor--blue-cumulus{fill:var(--artwork-minor-blue-cumulus)!important}.fr-artwork-minor--purple-glycine{fill:var(--artwork-minor-purple-glycine)!important}.fr-artwork-minor--pink-macaron{fill:var(--artwork-minor-pink-macaron)!important}.fr-artwork-minor--pink-tuile{fill:var(--artwork-minor-pink-tuile)!important}.fr-artwork-minor--yellow-tournesol{fill:var(--artwork-minor-yellow-tournesol)!important}.fr-artwork-minor--yellow-moutarde{fill:var(--artwork-minor-yellow-moutarde)!important}.fr-artwork-minor--orange-terre-battue{fill:var(--artwork-minor-orange-terre-battue)!important}.fr-artwork-minor--brown-cafe-creme{fill:var(--artwork-minor-brown-cafe-creme)!important}.fr-artwork-minor--brown-caramel{fill:var(--artwork-minor-brown-caramel)!important}.fr-artwork-minor--brown-opera{fill:var(--artwork-minor-brown-opera)!important}.fr-artwork-minor--beige-gris-galet{fill:var(--artwork-minor-beige-gris-galet)!important}.fr-artwork-decorative--grey{fill:var(--artwork-decorative-grey)!important}.fr-artwork-decorative--blue-france{fill:var(--artwork-decorative-blue-france)!important}.fr-artwork-decorative--red-marianne{fill:var(--artwork-decorative-red-marianne)!important}.fr-artwork-decorative--green-tilleul-verveine{fill:var(--artwork-decorative-green-tilleul-verveine)!important}.fr-artwork-decorative--green-bourgeon{fill:var(--artwork-decorative-green-bourgeon)!important}.fr-artwork-decorative--green-emeraude{fill:var(--artwork-decorative-green-emeraude)!important}.fr-artwork-decorative--green-menthe{fill:var(--artwork-decorative-green-menthe)!important}.fr-artwork-decorative--green-archipel{fill:var(--artwork-decorative-green-archipel)!important}.fr-artwork-decorative--blue-ecume{fill:var(--artwork-decorative-blue-ecume)!important}.fr-artwork-decorative--blue-cumulus{fill:var(--artwork-decorative-blue-cumulus)!important}.fr-artwork-decorative--purple-glycine{fill:var(--artwork-decorative-purple-glycine)!important}.fr-artwork-decorative--pink-macaron{fill:var(--artwork-decorative-pink-macaron)!important}.fr-artwork-decorative--pink-tuile{fill:var(--artwork-decorative-pink-tuile)!important}.fr-artwork-decorative--yellow-tournesol{fill:var(--artwork-decorative-yellow-tournesol)!important}.fr-artwork-decorative--yellow-moutarde{fill:var(--artwork-decorative-yellow-moutarde)!important}.fr-artwork-decorative--orange-terre-battue{fill:var(--artwork-decorative-orange-terre-battue)!important}.fr-artwork-decorative--brown-cafe-creme{fill:var(--artwork-decorative-brown-cafe-creme)!important}.fr-artwork-decorative--brown-caramel{fill:var(--artwork-decorative-brown-caramel)!important}.fr-artwork-decorative--brown-opera{fill:var(--artwork-decorative-brown-opera)!important}.fr-artwork-decorative--beige-gris-galet{fill:var(--artwork-decorative-beige-gris-galet)!important}.fr-artwork-background--grey{fill:var(--artwork-background-grey)!important}.fr-artwork-background--blue-france{fill:var(--artwork-background-blue-france)!important}.fr-artwork-background--red-marianne{fill:var(--artwork-background-red-marianne)!important}.fr-artwork-background--green-tilleul-verveine{fill:var(--artwork-background-green-tilleul-verveine)!important}.fr-artwork-background--green-bourgeon{fill:var(--artwork-background-green-bourgeon)!important}.fr-artwork-background--green-emeraude{fill:var(--artwork-background-green-emeraude)!important}.fr-artwork-background--green-menthe{fill:var(--artwork-background-green-menthe)!important}.fr-artwork-background--green-archipel{fill:var(--artwork-background-green-archipel)!important}.fr-artwork-background--blue-ecume{fill:var(--artwork-background-blue-ecume)!important}.fr-artwork-background--blue-cumulus{fill:var(--artwork-background-blue-cumulus)!important}.fr-artwork-background--purple-glycine{fill:var(--artwork-background-purple-glycine)!important}.fr-artwork-background--pink-macaron{fill:var(--artwork-background-pink-macaron)!important}.fr-artwork-background--pink-tuile{fill:var(--artwork-background-pink-tuile)!important}.fr-artwork-background--yellow-tournesol{fill:var(--artwork-background-yellow-tournesol)!important}.fr-artwork-background--yellow-moutarde{fill:var(--artwork-background-yellow-moutarde)!important}.fr-artwork-background--orange-terre-battue{fill:var(--artwork-background-orange-terre-battue)!important}.fr-artwork-background--brown-cafe-creme{fill:var(--artwork-background-brown-cafe-creme)!important}.fr-artwork-background--brown-caramel{fill:var(--artwork-background-brown-caramel)!important}.fr-artwork-background--brown-opera{fill:var(--artwork-background-brown-opera)!important}.fr-artwork-background--beige-gris-galet{fill:var(--artwork-background-beige-gris-galet)!important}.fr-artwork-motif--grey{fill:var(--artwork-motif-grey)!important}.fr-artwork-motif--blue-france{fill:var(--artwork-motif-blue-france)!important}.fr-artwork-motif--red-marianne{fill:var(--artwork-motif-red-marianne)!important}.fr-artwork-motif--green-tilleul-verveine{fill:var(--artwork-motif-green-tilleul-verveine)!important}.fr-artwork-motif--green-bourgeon{fill:var(--artwork-motif-green-bourgeon)!important}.fr-artwork-motif--green-emeraude{fill:var(--artwork-motif-green-emeraude)!important}.fr-artwork-motif--green-menthe{fill:var(--artwork-motif-green-menthe)!important}.fr-artwork-motif--green-archipel{fill:var(--artwork-motif-green-archipel)!important}.fr-artwork-motif--blue-ecume{fill:var(--artwork-motif-blue-ecume)!important}.fr-artwork-motif--blue-cumulus{fill:var(--artwork-motif-blue-cumulus)!important}.fr-artwork-motif--purple-glycine{fill:var(--artwork-motif-purple-glycine)!important}.fr-artwork-motif--pink-macaron{fill:var(--artwork-motif-pink-macaron)!important}.fr-artwork-motif--pink-tuile{fill:var(--artwork-motif-pink-tuile)!important}.fr-artwork-motif--yellow-tournesol{fill:var(--artwork-motif-yellow-tournesol)!important}.fr-artwork-motif--yellow-moutarde{fill:var(--artwork-motif-yellow-moutarde)!important}.fr-artwork-motif--orange-terre-battue{fill:var(--artwork-motif-orange-terre-battue)!important}.fr-artwork-motif--brown-cafe-creme{fill:var(--artwork-motif-brown-cafe-creme)!important}.fr-artwork-motif--brown-caramel{fill:var(--artwork-motif-brown-caramel)!important}.fr-artwork-motif--brown-opera{fill:var(--artwork-motif-brown-opera)!important}.fr-artwork-motif--beige-gris-galet{fill:var(--artwork-motif-beige-gris-galet)!important}.fr-border-width-0-5v{border-width:.125rem!important}.fr-border-width-1v{border-width:.25rem!important}.fr-border-width-2v{border-width:.5rem!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-fill.svg);mask-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{-webkit-mask-image:url(../icons/buildings/ancient-gate-line.svg);mask-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-fill.svg);mask-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{-webkit-mask-image:url(../icons/buildings/ancient-pavilion-line.svg);mask-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{-webkit-mask-image:url(../icons/buildings/bank-fill.svg);mask-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{-webkit-mask-image:url(../icons/buildings/bank-line.svg);mask-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{-webkit-mask-image:url(../icons/buildings/building-fill.svg);mask-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{-webkit-mask-image:url(../icons/buildings/building-line.svg);mask-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{-webkit-mask-image:url(../icons/buildings/community-fill.svg);mask-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{-webkit-mask-image:url(../icons/buildings/community-line.svg);mask-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{-webkit-mask-image:url(../icons/buildings/government-fill.svg);mask-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{-webkit-mask-image:url(../icons/buildings/government-line.svg);mask-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{-webkit-mask-image:url(../icons/buildings/hospital-fill.svg);mask-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{-webkit-mask-image:url(../icons/buildings/hospital-line.svg);mask-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{-webkit-mask-image:url(../icons/buildings/hotel-fill.svg);mask-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{-webkit-mask-image:url(../icons/buildings/hotel-line.svg);mask-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{-webkit-mask-image:url(../icons/buildings/store-fill.svg);mask-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{-webkit-mask-image:url(../icons/buildings/store-line.svg);mask-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:after,.fr-fi-home-4-fill:before{-webkit-mask-image:url(../icons/buildings/home-4-fill.svg);mask-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:after,.fr-fi-home-4-line:before{-webkit-mask-image:url(../icons/buildings/home-4-line.svg);mask-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{-webkit-mask-image:url(../icons/business/archive-fill.svg);mask-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{-webkit-mask-image:url(../icons/business/archive-line.svg);mask-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{-webkit-mask-image:url(../icons/business/award-fill.svg);mask-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{-webkit-mask-image:url(../icons/business/award-line.svg);mask-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{-webkit-mask-image:url(../icons/business/bar-chart-box-fill.svg);mask-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{-webkit-mask-image:url(../icons/business/bar-chart-box-line.svg);mask-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{-webkit-mask-image:url(../icons/business/bookmark-fill.svg);mask-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{-webkit-mask-image:url(../icons/business/bookmark-line.svg);mask-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{-webkit-mask-image:url(../icons/business/briefcase-fill.svg);mask-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{-webkit-mask-image:url(../icons/business/briefcase-line.svg);mask-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{-webkit-mask-image:url(../icons/business/calendar-2-fill.svg);mask-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{-webkit-mask-image:url(../icons/business/calendar-2-line.svg);mask-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{-webkit-mask-image:url(../icons/business/calendar-event-fill.svg);mask-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{-webkit-mask-image:url(../icons/business/calendar-event-line.svg);mask-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{-webkit-mask-image:url(../icons/business/cloud-fill.svg);mask-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{-webkit-mask-image:url(../icons/business/cloud-line.svg);mask-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{-webkit-mask-image:url(../icons/business/copyright-fill.svg);mask-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{-webkit-mask-image:url(../icons/business/copyright-line.svg);mask-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{-webkit-mask-image:url(../icons/business/customer-service-fill.svg);mask-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{-webkit-mask-image:url(../icons/business/customer-service-line.svg);mask-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{-webkit-mask-image:url(../icons/business/flag-fill.svg);mask-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{-webkit-mask-image:url(../icons/business/flag-line.svg);mask-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{-webkit-mask-image:url(../icons/business/global-fill.svg);mask-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{-webkit-mask-image:url(../icons/business/global-line.svg);mask-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{-webkit-mask-image:url(../icons/business/links-line.svg);mask-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{-webkit-mask-image:url(../icons/business/mail-open-fill.svg);mask-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{-webkit-mask-image:url(../icons/business/mail-open-line.svg);mask-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{-webkit-mask-image:url(../icons/business/medal-fill.svg);mask-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{-webkit-mask-image:url(../icons/business/medal-line.svg);mask-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-2-fill.svg);mask-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{-webkit-mask-image:url(../icons/business/pie-chart-2-line.svg);mask-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{-webkit-mask-image:url(../icons/business/pie-chart-box-fill.svg);mask-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{-webkit-mask-image:url(../icons/business/pie-chart-box-line.svg);mask-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{-webkit-mask-image:url(../icons/business/profil-fill.svg);mask-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{-webkit-mask-image:url(../icons/business/profil-line.svg);mask-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{-webkit-mask-image:url(../icons/business/projector-2-fill.svg);mask-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{-webkit-mask-image:url(../icons/business/projector-2-line.svg);mask-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{-webkit-mask-image:url(../icons/business/send-plane-fill.svg);mask-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{-webkit-mask-image:url(../icons/business/send-plane-line.svg);mask-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{-webkit-mask-image:url(../icons/business/slideshow-fill.svg);mask-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{-webkit-mask-image:url(../icons/business/slideshow-line.svg);mask-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{-webkit-mask-image:url(../icons/business/window-fill.svg);mask-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{-webkit-mask-image:url(../icons/business/window-line.svg);mask-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:after,.fr-fi-attachment-fill:before{-webkit-mask-image:url(../icons/business/attachment-fill.svg);mask-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:after,.fr-fi-attachment-line:before{-webkit-mask-image:url(../icons/business/attachment-line.svg);mask-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:after,.fr-fi-calendar-fill:before{-webkit-mask-image:url(../icons/business/calendar-fill.svg);mask-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:after,.fr-fi-calendar-line:before{-webkit-mask-image:url(../icons/business/calendar-line.svg);mask-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:after,.fr-fi-line-chart-fill:before{-webkit-mask-image:url(../icons/business/line-chart-fill.svg);mask-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:after,.fr-fi-line-chart-line:before{-webkit-mask-image:url(../icons/business/line-chart-line.svg);mask-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:after,.fr-fi-links-fill:before{-webkit-mask-image:url(../icons/business/links-fill.svg);mask-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:after,.fr-fi-mail-fill:before{-webkit-mask-image:url(../icons/business/mail-fill.svg);mask-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:after,.fr-fi-mail-line:before{-webkit-mask-image:url(../icons/business/mail-line.svg);mask-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:after,.fr-fi-printer-fill:before{-webkit-mask-image:url(../icons/business/printer-fill.svg);mask-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:after,.fr-fi-printer-line:before{-webkit-mask-image:url(../icons/business/printer-line.svg);mask-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{-webkit-mask-image:url(../icons/communication/chat-2-fill.svg);mask-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{-webkit-mask-image:url(../icons/communication/chat-2-line.svg);mask-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{-webkit-mask-image:url(../icons/communication/chat-3-fill.svg);mask-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{-webkit-mask-image:url(../icons/communication/chat-3-line.svg);mask-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{-webkit-mask-image:url(../icons/communication/chat-check-fill.svg);mask-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{-webkit-mask-image:url(../icons/communication/chat-check-line.svg);mask-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{-webkit-mask-image:url(../icons/communication/chat-delete-fill.svg);mask-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{-webkit-mask-image:url(../icons/communication/chat-delete-line.svg);mask-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{-webkit-mask-image:url(../icons/communication/chat-poll-fill.svg);mask-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{-webkit-mask-image:url(../icons/communication/chat-poll-line.svg);mask-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{-webkit-mask-image:url(../icons/communication/discuss-fill.svg);mask-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{-webkit-mask-image:url(../icons/communication/discuss-line.svg);mask-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{-webkit-mask-image:url(../icons/communication/feedback-fill.svg);mask-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{-webkit-mask-image:url(../icons/communication/feedback-line.svg);mask-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{-webkit-mask-image:url(../icons/communication/message-2-fill.svg);mask-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{-webkit-mask-image:url(../icons/communication/message-2-line.svg);mask-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{-webkit-mask-image:url(../icons/communication/question-answer-fill.svg);mask-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{-webkit-mask-image:url(../icons/communication/question-answer-line.svg);mask-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{-webkit-mask-image:url(../icons/communication/questionnaire-fill.svg);mask-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{-webkit-mask-image:url(../icons/communication/questionnaire-line.svg);mask-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{-webkit-mask-image:url(../icons/communication/video-chat-fill.svg);mask-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{-webkit-mask-image:url(../icons/communication/video-chat-line.svg);mask-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{-webkit-mask-image:url(../icons/design/ball-pen-fill.svg);mask-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{-webkit-mask-image:url(../icons/design/ball-pen-line.svg);mask-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{-webkit-mask-image:url(../icons/design/brush-3-fill.svg);mask-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{-webkit-mask-image:url(../icons/design/brush-3-line.svg);mask-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{-webkit-mask-image:url(../icons/design/brush-fill.svg);mask-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{-webkit-mask-image:url(../icons/design/brush-line.svg);mask-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{-webkit-mask-image:url(../icons/design/contrast-fill.svg);mask-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{-webkit-mask-image:url(../icons/design/contrast-line.svg);mask-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{-webkit-mask-image:url(../icons/design/crop-fill.svg);mask-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{-webkit-mask-image:url(../icons/design/crop-line.svg);mask-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{-webkit-mask-image:url(../icons/design/drag-move-2-fill.svg);mask-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{-webkit-mask-image:url(../icons/design/drag-move-2-line.svg);mask-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{-webkit-mask-image:url(../icons/design/drop-fill.svg);mask-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{-webkit-mask-image:url(../icons/design/drop-line.svg);mask-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{-webkit-mask-image:url(../icons/design/edit-box-fill.svg);mask-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{-webkit-mask-image:url(../icons/design/edit-box-line.svg);mask-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{-webkit-mask-image:url(../icons/design/ink-bottle-fill.svg);mask-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{-webkit-mask-image:url(../icons/design/ink-bottle-line.svg);mask-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{-webkit-mask-image:url(../icons/design/layout-grid-fill.svg);mask-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{-webkit-mask-image:url(../icons/design/layout-grid-line.svg);mask-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{-webkit-mask-image:url(../icons/design/mark-pen-fill.svg);mask-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{-webkit-mask-image:url(../icons/design/mark-pen-line.svg);mask-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{-webkit-mask-image:url(../icons/design/paint-brush-fill.svg);mask-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{-webkit-mask-image:url(../icons/design/paint-brush-line.svg);mask-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{-webkit-mask-image:url(../icons/design/paint-fill.svg);mask-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{-webkit-mask-image:url(../icons/design/paint-line.svg);mask-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{-webkit-mask-image:url(../icons/design/palette-fill.svg);mask-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{-webkit-mask-image:url(../icons/design/palette-line.svg);mask-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{-webkit-mask-image:url(../icons/design/pantone-fill.svg);mask-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{-webkit-mask-image:url(../icons/design/pantone-line.svg);mask-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{-webkit-mask-image:url(../icons/design/pen-nib-fill.svg);mask-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{-webkit-mask-image:url(../icons/design/pen-nib-line.svg);mask-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{-webkit-mask-image:url(../icons/design/pencil-fill.svg);mask-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{-webkit-mask-image:url(../icons/design/pencil-line.svg);mask-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{-webkit-mask-image:url(../icons/design/pencil-ruler-fill.svg);mask-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{-webkit-mask-image:url(../icons/design/pencil-ruler-line.svg);mask-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{-webkit-mask-image:url(../icons/design/shapes-fill.svg);mask-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{-webkit-mask-image:url(../icons/design/shapes-line.svg);mask-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{-webkit-mask-image:url(../icons/design/sip-fill.svg);mask-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{-webkit-mask-image:url(../icons/design/sip-line.svg);mask-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{-webkit-mask-image:url(../icons/design/table-fill.svg);mask-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{-webkit-mask-image:url(../icons/design/table-line.svg);mask-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:after,.fr-fi-edit-fill:before{-webkit-mask-image:url(../icons/design/edit-fill.svg);mask-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:after,.fr-fi-edit-line:before{-webkit-mask-image:url(../icons/design/edit-line.svg);mask-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{-webkit-mask-image:url(../icons/development/bug-fill.svg);mask-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{-webkit-mask-image:url(../icons/development/bug-line.svg);mask-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{-webkit-mask-image:url(../icons/development/code-box-fill.svg);mask-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{-webkit-mask-image:url(../icons/development/code-box-line.svg);mask-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{-webkit-mask-image:url(../icons/development/code-s-slash-line.svg);mask-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{-webkit-mask-image:url(../icons/development/cursor-fill.svg);mask-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{-webkit-mask-image:url(../icons/development/cursor-line.svg);mask-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{-webkit-mask-image:url(../icons/development/git-branch-fill.svg);mask-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{-webkit-mask-image:url(../icons/development/git-branch-line.svg);mask-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{-webkit-mask-image:url(../icons/development/git-commit-fill.svg);mask-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{-webkit-mask-image:url(../icons/development/git-commit-line.svg);mask-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{-webkit-mask-image:url(../icons/development/git-merge-fill.svg);mask-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{-webkit-mask-image:url(../icons/development/git-merge-line.svg);mask-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{-webkit-mask-image:url(../icons/development/git-pull-request-fill.svg);mask-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{-webkit-mask-image:url(../icons/development/git-pull-request-line.svg);mask-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{-webkit-mask-image:url(../icons/development/git-repository-commits-fill.svg);mask-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{-webkit-mask-image:url(../icons/development/git-repository-commits-line.svg);mask-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{-webkit-mask-image:url(../icons/development/git-repository-fill.svg);mask-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{-webkit-mask-image:url(../icons/development/git-repository-line.svg);mask-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{-webkit-mask-image:url(../icons/development/git-repository-private-fill.svg);mask-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{-webkit-mask-image:url(../icons/development/git-repository-private-line.svg);mask-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{-webkit-mask-image:url(../icons/development/terminal-box-fill.svg);mask-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{-webkit-mask-image:url(../icons/development/terminal-box-line.svg);mask-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{-webkit-mask-image:url(../icons/development/terminal-line.svg);mask-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{-webkit-mask-image:url(../icons/development/terminal-window-fill.svg);mask-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{-webkit-mask-image:url(../icons/development/terminal-window-line.svg);mask-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{-webkit-mask-image:url(../icons/device/bluetooth-fill.svg);mask-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{-webkit-mask-image:url(../icons/device/bluetooth-line.svg);mask-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{-webkit-mask-image:url(../icons/device/computer-fill.svg);mask-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{-webkit-mask-image:url(../icons/device/computer-line.svg);mask-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{-webkit-mask-image:url(../icons/device/dashboard-3-fill.svg);mask-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{-webkit-mask-image:url(../icons/device/dashboard-3-line.svg);mask-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{-webkit-mask-image:url(../icons/device/database-fill.svg);mask-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{-webkit-mask-image:url(../icons/device/database-line.svg);mask-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{-webkit-mask-image:url(../icons/device/device-fill.svg);mask-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{-webkit-mask-image:url(../icons/device/device-line.svg);mask-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{-webkit-mask-image:url(../icons/device/hard-drive-2-fill.svg);mask-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{-webkit-mask-image:url(../icons/device/hard-drive-2-line.svg);mask-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{-webkit-mask-image:url(../icons/device/mac-fill.svg);mask-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{-webkit-mask-image:url(../icons/device/mac-line.svg);mask-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{-webkit-mask-image:url(../icons/device/qr-code-fill.svg);mask-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{-webkit-mask-image:url(../icons/device/qr-code-line.svg);mask-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{-webkit-mask-image:url(../icons/device/save-3-fill.svg);mask-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{-webkit-mask-image:url(../icons/device/save-3-line.svg);mask-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{-webkit-mask-image:url(../icons/device/server-fill.svg);mask-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{-webkit-mask-image:url(../icons/device/server-line.svg);mask-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{-webkit-mask-image:url(../icons/device/smartphone-fill.svg);mask-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{-webkit-mask-image:url(../icons/device/smartphone-line.svg);mask-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{-webkit-mask-image:url(../icons/device/tablet-fill.svg);mask-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{-webkit-mask-image:url(../icons/device/tablet-line.svg);mask-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{-webkit-mask-image:url(../icons/device/tv-fill.svg);mask-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{-webkit-mask-image:url(../icons/device/tv-line.svg);mask-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{-webkit-mask-image:url(../icons/device/wifi-fill.svg);mask-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{-webkit-mask-image:url(../icons/device/wifi-line.svg);mask-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:after,.fr-fi-phone-fill:before{-webkit-mask-image:url(../icons/device/phone-fill.svg);mask-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:after,.fr-fi-phone-line:before{-webkit-mask-image:url(../icons/device/phone-line.svg);mask-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:after,.fr-fi-rss-fill:before{-webkit-mask-image:url(../icons/device/rss-fill.svg);mask-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:after,.fr-fi-rss-line:before{-webkit-mask-image:url(../icons/device/rss-line.svg);mask-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:after,.fr-fi-save-fill:before{-webkit-mask-image:url(../icons/device/save-fill.svg);mask-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:after,.fr-fi-save-line:before{-webkit-mask-image:url(../icons/device/save-line.svg);mask-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{-webkit-mask-image:url(../icons/document/article-fill.svg);mask-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{-webkit-mask-image:url(../icons/document/article-line.svg);mask-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{-webkit-mask-image:url(../icons/document/book-2-fill.svg);mask-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{-webkit-mask-image:url(../icons/document/book-2-line.svg);mask-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{-webkit-mask-image:url(../icons/document/booklet-fill.svg);mask-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{-webkit-mask-image:url(../icons/document/booklet-line.svg);mask-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{-webkit-mask-image:url(../icons/document/clipboard-fill.svg);mask-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{-webkit-mask-image:url(../icons/document/clipboard-line.svg);mask-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{-webkit-mask-image:url(../icons/document/draft-fill.svg);mask-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{-webkit-mask-image:url(../icons/document/draft-line.svg);mask-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{-webkit-mask-image:url(../icons/document/file-add-fill.svg);mask-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{-webkit-mask-image:url(../icons/document/file-add-line.svg);mask-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{-webkit-mask-image:url(../icons/document/file-text-fill.svg);mask-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{-webkit-mask-image:url(../icons/document/file-text-line.svg);mask-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{-webkit-mask-image:url(../icons/document/folder-2-fill.svg);mask-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{-webkit-mask-image:url(../icons/document/folder-2-line.svg);mask-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{-webkit-mask-image:url(../icons/document/newspaper-fill.svg);mask-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{-webkit-mask-image:url(../icons/document/newspaper-line.svg);mask-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{-webkit-mask-image:url(../icons/document/survey-fill.svg);mask-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{-webkit-mask-image:url(../icons/document/survey-line.svg);mask-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{-webkit-mask-image:url(../icons/document/todo-fill.svg);mask-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{-webkit-mask-image:url(../icons/document/todo-line.svg);mask-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:after,.fr-fi-file-download-fill:before{-webkit-mask-image:url(../icons/document/file-download-fill.svg);mask-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:after,.fr-fi-file-download-line:before{-webkit-mask-image:url(../icons/document/file-download-line.svg);mask-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:after,.fr-fi-file-fill:before{-webkit-mask-image:url(../icons/document/file-fill.svg);mask-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:after,.fr-fi-file-line:before{-webkit-mask-image:url(../icons/document/file-line.svg);mask-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:after,.fr-fi-file-pdf-fill:before{-webkit-mask-image:url(../icons/document/file-pdf-fill.svg);mask-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:after,.fr-fi-file-pdf-line:before{-webkit-mask-image:url(../icons/document/file-pdf-line.svg);mask-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{-webkit-mask-image:url(../icons/editor/code-view.svg);mask-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{-webkit-mask-image:url(../icons/editor/fr--quote-fill.svg);mask-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{-webkit-mask-image:url(../icons/editor/fr--quote-line.svg);mask-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{-webkit-mask-image:url(../icons/editor/h-1.svg);mask-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{-webkit-mask-image:url(../icons/editor/h-2.svg);mask-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{-webkit-mask-image:url(../icons/editor/h-3.svg);mask-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{-webkit-mask-image:url(../icons/editor/h-4.svg);mask-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{-webkit-mask-image:url(../icons/editor/h-5.svg);mask-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{-webkit-mask-image:url(../icons/editor/h-6.svg);mask-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{-webkit-mask-image:url(../icons/editor/hashtag.svg);mask-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{-webkit-mask-image:url(../icons/editor/link.svg);mask-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{-webkit-mask-image:url(../icons/editor/question-mark.svg);mask-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{-webkit-mask-image:url(../icons/editor/separator.svg);mask-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{-webkit-mask-image:url(../icons/editor/space.svg);mask-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{-webkit-mask-image:url(../icons/editor/subscript.svg);mask-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{-webkit-mask-image:url(../icons/editor/superscript.svg);mask-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{-webkit-mask-image:url(../icons/editor/table-2.svg);mask-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{-webkit-mask-image:url(../icons/editor/translate-2.svg);mask-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:after,.fr-fi-font-size:before{-webkit-mask-image:url(../icons/editor/font-size.svg);mask-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:after,.fr-fi-bold:before{-webkit-mask-image:url(../icons/editor/fr--bold.svg);mask-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:after,.fr-fi-highlight:before{-webkit-mask-image:url(../icons/editor/fr--highlight.svg);mask-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:after,.fr-fi-italic:before{-webkit-mask-image:url(../icons/editor/italic.svg);mask-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:after,.fr-fi-link-unlink:before{-webkit-mask-image:url(../icons/editor/link-unlink.svg);mask-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:after,.fr-fi-list-ordered:before{-webkit-mask-image:url(../icons/editor/list-ordered.svg);mask-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:after,.fr-fi-list-unordered:before{-webkit-mask-image:url(../icons/editor/list-unordered.svg);mask-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{-webkit-mask-image:url(../icons/finance/bank-card-fill.svg);mask-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{-webkit-mask-image:url(../icons/finance/bank-card-line.svg);mask-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{-webkit-mask-image:url(../icons/finance/coin-fill.svg);mask-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{-webkit-mask-image:url(../icons/finance/gift-fill.svg);mask-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{-webkit-mask-image:url(../icons/finance/gift-line.svg);mask-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-box-fill.svg);mask-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{-webkit-mask-image:url(../icons/finance/money-euro-box-line.svg);mask-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-fill.svg);mask-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{-webkit-mask-image:url(../icons/finance/money-euro-circle-line.svg);mask-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{-webkit-mask-image:url(../icons/finance/secure-payment-fill.svg);mask-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{-webkit-mask-image:url(../icons/finance/secure-payment-line.svg);mask-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{-webkit-mask-image:url(../icons/finance/shopping-bag-fill.svg);mask-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{-webkit-mask-image:url(../icons/finance/shopping-bag-line.svg);mask-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-fill.svg);mask-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{-webkit-mask-image:url(../icons/finance/shopping-cart-2-line.svg);mask-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{-webkit-mask-image:url(../icons/finance/trophy-fill.svg);mask-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{-webkit-mask-image:url(../icons/finance/trophy-line.svg);mask-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{-webkit-mask-image:url(../icons/health/capsule-fill.svg);mask-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{-webkit-mask-image:url(../icons/health/capsule-line.svg);mask-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{-webkit-mask-image:url(../icons/health/dislike-fill.svg);mask-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{-webkit-mask-image:url(../icons/health/dislike-line.svg);mask-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{-webkit-mask-image:url(../icons/health/dossier-fill.svg);mask-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{-webkit-mask-image:url(../icons/health/dossier-line.svg);mask-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{-webkit-mask-image:url(../icons/health/first-aid-kit-fill.svg);mask-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{-webkit-mask-image:url(../icons/health/first-aid-kit-line.svg);mask-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-fill.svg);mask-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{-webkit-mask-image:url(../icons/health/hand-sanitizer-line.svg);mask-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{-webkit-mask-image:url(../icons/health/health-book-fill.svg);mask-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{-webkit-mask-image:url(../icons/health/health-book-line.svg);mask-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{-webkit-mask-image:url(../icons/health/heart-fill.svg);mask-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{-webkit-mask-image:url(../icons/health/heart-line.svg);mask-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{-webkit-mask-image:url(../icons/health/heart-pulse-fill.svg);mask-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{-webkit-mask-image:url(../icons/health/heart-pulse-line.svg);mask-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{-webkit-mask-image:url(../icons/health/lungs-fill.svg);mask-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{-webkit-mask-image:url(../icons/health/lungs-line.svg);mask-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{-webkit-mask-image:url(../icons/health/medicine-bottle-fill.svg);mask-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{-webkit-mask-image:url(../icons/health/medicine-bottle-line.svg);mask-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{-webkit-mask-image:url(../icons/health/mental-health-fill.svg);mask-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{-webkit-mask-image:url(../icons/health/mental-health-line.svg);mask-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{-webkit-mask-image:url(../icons/health/microscope-fill.svg);mask-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{-webkit-mask-image:url(../icons/health/microscope-line.svg);mask-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{-webkit-mask-image:url(../icons/health/psychotherapy-fill.svg);mask-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{-webkit-mask-image:url(../icons/health/psychotherapy-line.svg);mask-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{-webkit-mask-image:url(../icons/health/pulse-line.svg);mask-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{-webkit-mask-image:url(../icons/health/stethoscope-fill.svg);mask-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{-webkit-mask-image:url(../icons/health/stethoscope-line.svg);mask-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{-webkit-mask-image:url(../icons/health/surgical-mask-fill.svg);mask-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{-webkit-mask-image:url(../icons/health/surgical-mask-line.svg);mask-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{-webkit-mask-image:url(../icons/health/syringe-fill.svg);mask-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{-webkit-mask-image:url(../icons/health/syringe-line.svg);mask-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{-webkit-mask-image:url(../icons/health/test-tube-fill.svg);mask-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{-webkit-mask-image:url(../icons/health/test-tube-line.svg);mask-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{-webkit-mask-image:url(../icons/health/thermometer-fill.svg);mask-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{-webkit-mask-image:url(../icons/health/thermometer-line.svg);mask-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{-webkit-mask-image:url(../icons/health/virus-fill.svg);mask-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{-webkit-mask-image:url(../icons/health/virus-line.svg);mask-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{-webkit-mask-image:url(../icons/logo/chrome-fill.svg);mask-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{-webkit-mask-image:url(../icons/logo/chrome-line.svg);mask-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{-webkit-mask-image:url(../icons/logo/edge-fill.svg);mask-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{-webkit-mask-image:url(../icons/logo/edge-line.svg);mask-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{-webkit-mask-image:url(../icons/logo/firefox-fill.svg);mask-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{-webkit-mask-image:url(../icons/logo/firefox-line.svg);mask-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-fill.svg);mask-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{-webkit-mask-image:url(../icons/logo/fr--tiktok-line.svg);mask-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{-webkit-mask-image:url(../icons/logo/google-fill.svg);mask-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{-webkit-mask-image:url(../icons/logo/google-line.svg);mask-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{-webkit-mask-image:url(../icons/logo/ie-fill.svg);mask-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{-webkit-mask-image:url(../icons/logo/ie-line.svg);mask-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{-webkit-mask-image:url(../icons/logo/mastodon-fill.svg);mask-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{-webkit-mask-image:url(../icons/logo/mastodon-line.svg);mask-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{-webkit-mask-image:url(../icons/logo/safari-fill.svg);mask-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{-webkit-mask-image:url(../icons/logo/safari-line.svg);mask-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{-webkit-mask-image:url(../icons/logo/threads-fill.svg);mask-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{-webkit-mask-image:url(../icons/logo/threads-line.svg);mask-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{-webkit-mask-image:url(../icons/logo/twitter-x-fill.svg);mask-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{-webkit-mask-image:url(../icons/logo/twitter-x-line.svg);mask-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{-webkit-mask-image:url(../icons/logo/vuejs-fill.svg);mask-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{-webkit-mask-image:url(../icons/logo/vuejs-line.svg);mask-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{-webkit-mask-image:url(../icons/logo/whatsapp-fill.svg);mask-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{-webkit-mask-image:url(../icons/logo/whatsapp-line.svg);mask-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:after,.fr-fi-facebook-circle-fill:before{-webkit-mask-image:url(../icons/logo/facebook-circle-fill.svg);mask-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:after,.fr-fi-facebook-circle-line:before{-webkit-mask-image:url(../icons/logo/facebook-circle-line.svg);mask-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:after,.fr-fi-dailymotion-fill:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-fill.svg);mask-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:after,.fr-fi-dailymotion-line:before{-webkit-mask-image:url(../icons/logo/fr--dailymotion-line.svg);mask-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:after,.fr-fi-github-fill:before{-webkit-mask-image:url(../icons/logo/github-fill.svg);mask-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:after,.fr-fi-github-line:before{-webkit-mask-image:url(../icons/logo/github-line.svg);mask-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:after,.fr-fi-instagram-fill:before{-webkit-mask-image:url(../icons/logo/instagram-fill.svg);mask-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:after,.fr-fi-instagram-line:before{-webkit-mask-image:url(../icons/logo/instagram-line.svg);mask-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:after,.fr-fi-linkedin-box-fill:before{-webkit-mask-image:url(../icons/logo/linkedin-box-fill.svg);mask-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:after,.fr-fi-linkedin-box-line:before{-webkit-mask-image:url(../icons/logo/linkedin-box-line.svg);mask-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:after,.fr-fi-npmjs-fill:before{-webkit-mask-image:url(../icons/logo/npmjs-fill.svg);mask-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:after,.fr-fi-npmjs-line:before{-webkit-mask-image:url(../icons/logo/npmjs-line.svg);mask-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:after,.fr-fi-remixicon-fill:before{-webkit-mask-image:url(../icons/logo/remixicon-fill.svg);mask-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:after,.fr-fi-remixicon-line:before{-webkit-mask-image:url(../icons/logo/remixicon-line.svg);mask-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:after,.fr-fi-slack-fill:before{-webkit-mask-image:url(../icons/logo/slack-fill.svg);mask-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:after,.fr-fi-slack-line:before{-webkit-mask-image:url(../icons/logo/slack-line.svg);mask-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:after,.fr-fi-snapchat-fill:before{-webkit-mask-image:url(../icons/logo/snapchat-fill.svg);mask-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:after,.fr-fi-snapchat-line:before{-webkit-mask-image:url(../icons/logo/snapchat-line.svg);mask-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:after,.fr-fi-telegram-fill:before{-webkit-mask-image:url(../icons/logo/telegram-fill.svg);mask-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:after,.fr-fi-telegram-line:before{-webkit-mask-image:url(../icons/logo/telegram-line.svg);mask-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:after,.fr-fi-twitch-fill:before{-webkit-mask-image:url(../icons/logo/twitch-fill.svg);mask-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:after,.fr-fi-twitch-line:before{-webkit-mask-image:url(../icons/logo/twitch-line.svg);mask-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:after,.fr-fi-twitter-fill:before{-webkit-mask-image:url(../icons/logo/twitter-fill.svg);mask-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:after,.fr-fi-twitter-line:before{-webkit-mask-image:url(../icons/logo/twitter-line.svg);mask-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:after,.fr-fi-vimeo-fill:before{-webkit-mask-image:url(../icons/logo/vimeo-fill.svg);mask-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:after,.fr-fi-vimeo-line:before{-webkit-mask-image:url(../icons/logo/vimeo-line.svg);mask-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:after,.fr-fi-youtube-fill:before{-webkit-mask-image:url(../icons/logo/youtube-fill.svg);mask-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:after,.fr-fi-youtube-line:before{-webkit-mask-image:url(../icons/logo/youtube-line.svg);mask-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{-webkit-mask-image:url(../icons/map/anchor-fill.svg);mask-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{-webkit-mask-image:url(../icons/map/anchor-line.svg);mask-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{-webkit-mask-image:url(../icons/map/bike-fill.svg);mask-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{-webkit-mask-image:url(../icons/map/bike-line.svg);mask-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{-webkit-mask-image:url(../icons/map/bus-fill.svg);mask-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{-webkit-mask-image:url(../icons/map/bus-line.svg);mask-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{-webkit-mask-image:url(../icons/map/car-fill.svg);mask-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{-webkit-mask-image:url(../icons/map/car-line.svg);mask-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{-webkit-mask-image:url(../icons/map/caravan-fill.svg);mask-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{-webkit-mask-image:url(../icons/map/caravan-line.svg);mask-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{-webkit-mask-image:url(../icons/map/charging-pile-2-fill.svg);mask-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{-webkit-mask-image:url(../icons/map/charging-pile-2-line.svg);mask-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{-webkit-mask-image:url(../icons/map/compass-3-fill.svg);mask-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{-webkit-mask-image:url(../icons/map/compass-3-line.svg);mask-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{-webkit-mask-image:url(../icons/map/cup-fill.svg);mask-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{-webkit-mask-image:url(../icons/map/cup-line.svg);mask-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{-webkit-mask-image:url(../icons/map/earth-fill.svg);mask-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{-webkit-mask-image:url(../icons/map/earth-line.svg);mask-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{-webkit-mask-image:url(../icons/map/france-fill.svg);mask-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{-webkit-mask-image:url(../icons/map/france-line.svg);mask-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{-webkit-mask-image:url(../icons/map/gas-station-fill.svg);mask-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{-webkit-mask-image:url(../icons/map/gas-station-line.svg);mask-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{-webkit-mask-image:url(../icons/map/goblet-fill.svg);mask-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{-webkit-mask-image:url(../icons/map/goblet-line.svg);mask-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{-webkit-mask-image:url(../icons/map/map-pin-user-fill.svg);mask-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{-webkit-mask-image:url(../icons/map/map-pin-user-line.svg);mask-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{-webkit-mask-image:url(../icons/map/motorbike-fill.svg);mask-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{-webkit-mask-image:url(../icons/map/motorbike-line.svg);mask-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{-webkit-mask-image:url(../icons/map/passport-fill.svg);mask-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{-webkit-mask-image:url(../icons/map/passport-line.svg);mask-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{-webkit-mask-image:url(../icons/map/restaurant-fill.svg);mask-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{-webkit-mask-image:url(../icons/map/restaurant-line.svg);mask-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{-webkit-mask-image:url(../icons/map/sailboat-fill.svg);mask-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{-webkit-mask-image:url(../icons/map/sailboat-line.svg);mask-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{-webkit-mask-image:url(../icons/map/ship-2-fill.svg);mask-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{-webkit-mask-image:url(../icons/map/ship-2-line.svg);mask-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{-webkit-mask-image:url(../icons/map/signal-tower-fill.svg);mask-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{-webkit-mask-image:url(../icons/map/signal-tower-line.svg);mask-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{-webkit-mask-image:url(../icons/map/suitcase-2-fill.svg);mask-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{-webkit-mask-image:url(../icons/map/suitcase-2-line.svg);mask-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{-webkit-mask-image:url(../icons/map/taxi-fill.svg);mask-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{-webkit-mask-image:url(../icons/map/taxi-line.svg);mask-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{-webkit-mask-image:url(../icons/map/train-fill.svg);mask-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{-webkit-mask-image:url(../icons/map/train-line.svg);mask-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:after,.fr-fi-map-pin-2-fill:before{-webkit-mask-image:url(../icons/map/map-pin-2-fill.svg);mask-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:after,.fr-fi-map-pin-2-line:before{-webkit-mask-image:url(../icons/map/map-pin-2-line.svg);mask-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:after,.fr-fi-road-map-fill:before{-webkit-mask-image:url(../icons/map/road-map-fill.svg);mask-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:after,.fr-fi-road-map-line:before{-webkit-mask-image:url(../icons/map/road-map-line.svg);mask-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{-webkit-mask-image:url(../icons/media/align-left.svg);mask-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{-webkit-mask-image:url(../icons/media/camera-fill.svg);mask-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{-webkit-mask-image:url(../icons/media/camera-line.svg);mask-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{-webkit-mask-image:url(../icons/media/clapperboard-fill.svg);mask-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{-webkit-mask-image:url(../icons/media/clapperboard-line.svg);mask-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{-webkit-mask-image:url(../icons/media/film-fill.svg);mask-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{-webkit-mask-image:url(../icons/media/film-line.svg);mask-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{-webkit-mask-image:url(../icons/media/fullscreen-line.svg);mask-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{-webkit-mask-image:url(../icons/media/gallery-fill.svg);mask-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{-webkit-mask-image:url(../icons/media/gallery-line.svg);mask-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{-webkit-mask-image:url(../icons/media/headphone-fill.svg);mask-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{-webkit-mask-image:url(../icons/media/headphone-line.svg);mask-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{-webkit-mask-image:url(../icons/media/image-add-fill.svg);mask-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{-webkit-mask-image:url(../icons/media/image-add-line.svg);mask-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{-webkit-mask-image:url(../icons/media/image-edit-fill.svg);mask-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{-webkit-mask-image:url(../icons/media/image-edit-line.svg);mask-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{-webkit-mask-image:url(../icons/media/live-fill.svg);mask-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{-webkit-mask-image:url(../icons/media/live-line.svg);mask-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{-webkit-mask-image:url(../icons/media/mic-fill.svg);mask-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{-webkit-mask-image:url(../icons/media/mic-line.svg);mask-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{-webkit-mask-image:url(../icons/media/music-2-fill.svg);mask-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{-webkit-mask-image:url(../icons/media/music-2-line.svg);mask-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{-webkit-mask-image:url(../icons/media/notification-3-fill.svg);mask-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{-webkit-mask-image:url(../icons/media/notification-3-line.svg);mask-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{-webkit-mask-image:url(../icons/media/stop-circle-fill.svg);mask-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{-webkit-mask-image:url(../icons/media/stop-circle-line.svg);mask-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:after,.fr-fi-equalizer-fill:before{-webkit-mask-image:url(../icons/media/equalizer-fill.svg);mask-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:after,.fr-fi-equalizer-line:before{-webkit-mask-image:url(../icons/media/equalizer-line.svg);mask-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:after,.fr-fi-image-fill:before{-webkit-mask-image:url(../icons/media/image-fill.svg);mask-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:after,.fr-fi-image-line:before{-webkit-mask-image:url(../icons/media/image-line.svg);mask-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:after,.fr-fi-pause-circle-fill:before{-webkit-mask-image:url(../icons/media/pause-circle-fill.svg);mask-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:after,.fr-fi-pause-circle-line:before{-webkit-mask-image:url(../icons/media/pause-circle-line.svg);mask-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:after,.fr-fi-volume-down-fill:before{-webkit-mask-image:url(../icons/media/volume-down-fill.svg);mask-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:after,.fr-fi-volume-down-line:before{-webkit-mask-image:url(../icons/media/volume-down-line.svg);mask-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:after,.fr-fi-volume-mute-fill:before{-webkit-mask-image:url(../icons/media/volume-mute-fill.svg);mask-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:after,.fr-fi-volume-mute-line:before{-webkit-mask-image:url(../icons/media/volume-mute-line.svg);mask-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:after,.fr-fi-volume-up-fill:before{-webkit-mask-image:url(../icons/media/volume-up-fill.svg);mask-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:after,.fr-fi-volume-up-line:before{-webkit-mask-image:url(../icons/media/volume-up-line.svg);mask-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{-webkit-mask-image:url(../icons/media/play-circle-line.svg);mask-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{-webkit-mask-image:url(../icons/media/play-circle-fill.svg);mask-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{-webkit-mask-image:url(../icons/others/fr--accessibility-fill.svg);mask-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{-webkit-mask-image:url(../icons/others/fr--accessibility-line.svg);mask-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{-webkit-mask-image:url(../icons/others/fr--ear-off-fill.svg);mask-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{-webkit-mask-image:url(../icons/others/fr--ear-off-line.svg);mask-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-fill.svg);mask-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{-webkit-mask-image:url(../icons/others/fr--mental-disabilities-line.svg);mask-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{-webkit-mask-image:url(../icons/others/fr--sign-language-fill.svg);mask-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{-webkit-mask-image:url(../icons/others/fr--sign-language-line.svg);mask-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{-webkit-mask-image:url(../icons/others/leaf-fill.svg);mask-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{-webkit-mask-image:url(../icons/others/leaf-line.svg);mask-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{-webkit-mask-image:url(../icons/others/lightbulb-fill.svg);mask-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{-webkit-mask-image:url(../icons/others/lightbulb-line.svg);mask-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{-webkit-mask-image:url(../icons/others/plant-fill.svg);mask-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{-webkit-mask-image:url(../icons/others/plant-line.svg);mask-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{-webkit-mask-image:url(../icons/others/recycle-fill.svg);mask-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{-webkit-mask-image:url(../icons/others/recycle-line.svg);mask-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{-webkit-mask-image:url(../icons/others/scales-3-fill.svg);mask-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{-webkit-mask-image:url(../icons/others/scales-3-line.svg);mask-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{-webkit-mask-image:url(../icons/others/seedling-fill.svg);mask-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{-webkit-mask-image:url(../icons/others/seedling-line.svg);mask-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{-webkit-mask-image:url(../icons/others/umbrella-fill.svg);mask-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{-webkit-mask-image:url(../icons/others/umbrella-line.svg);mask-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{-webkit-mask-image:url(../icons/others/wheelchair-fill.svg);mask-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{-webkit-mask-image:url(../icons/others/wheelchair-line.svg);mask-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{-webkit-mask-image:url(../icons/system/alarm-warning-fill.svg);mask-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{-webkit-mask-image:url(../icons/system/alarm-warning-line.svg);mask-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{-webkit-mask-image:url(../icons/system/alert-fill.svg);mask-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{-webkit-mask-image:url(../icons/system/alert-line.svg);mask-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-fill.svg);mask-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-down-s-fill.svg);mask-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-fill.svg);mask-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{-webkit-mask-image:url(../icons/system/arrow-go-forward-line.svg);mask-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-fill.svg);mask-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-left-s-fill.svg);mask-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-fill.svg);mask-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-right-s-fill.svg);mask-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{-webkit-mask-image:url(../icons/system/arrow-up-down-line.svg);mask-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-s-fill.svg);mask-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{-webkit-mask-image:url(../icons/system/checkbox-circle-fill.svg);mask-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{-webkit-mask-image:url(../icons/system/checkbox-fill.svg);mask-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{-webkit-mask-image:url(../icons/system/checkbox-line.svg);mask-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{-webkit-mask-image:url(../icons/system/close-circle-fill.svg);mask-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{-webkit-mask-image:url(../icons/system/close-circle-line.svg);mask-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{-webkit-mask-image:url(../icons/system/download-fill.svg);mask-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{-webkit-mask-image:url(../icons/system/external-link-fill.svg);mask-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-2-fill.svg);mask-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--alert-warning-fill.svg);mask-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg);mask-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{-webkit-mask-image:url(../icons/system/fr--capslock-line.svg);mask-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{-webkit-mask-image:url(../icons/system/fr--equal-circle-fill.svg);mask-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{-webkit-mask-image:url(../icons/system/lock-unlock-fill.svg);mask-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{-webkit-mask-image:url(../icons/system/lock-unlock-line.svg);mask-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{-webkit-mask-image:url(../icons/system/more-fill.svg);mask-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{-webkit-mask-image:url(../icons/system/more-line.svg);mask-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{-webkit-mask-image:url(../icons/system/notification-badge-fill.svg);mask-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{-webkit-mask-image:url(../icons/system/notification-badge-line.svg);mask-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{-webkit-mask-image:url(../icons/system/settings-5-fill.svg);mask-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{-webkit-mask-image:url(../icons/system/settings-5-line.svg);mask-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{-webkit-mask-image:url(../icons/system/shield-fill.svg);mask-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{-webkit-mask-image:url(../icons/system/shield-line.svg);mask-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{-webkit-mask-image:url(../icons/system/star-fill.svg);mask-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{-webkit-mask-image:url(../icons/system/star-line.svg);mask-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{-webkit-mask-image:url(../icons/system/star-s-fill.svg);mask-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{-webkit-mask-image:url(../icons/system/star-s-line.svg);mask-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{-webkit-mask-image:url(../icons/system/thumb-down-fill.svg);mask-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{-webkit-mask-image:url(../icons/system/thumb-down-line.svg);mask-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{-webkit-mask-image:url(../icons/system/thumb-up-fill.svg);mask-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{-webkit-mask-image:url(../icons/system/thumb-up-line.svg);mask-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{-webkit-mask-image:url(../icons/system/time-fill.svg);mask-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{-webkit-mask-image:url(../icons/system/time-line.svg);mask-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{-webkit-mask-image:url(../icons/system/upload-fill.svg);mask-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{-webkit-mask-image:url(../icons/system/upload-line.svg);mask-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:after,.fr-fi-add-circle-fill:before{-webkit-mask-image:url(../icons/system/add-circle-fill.svg);mask-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:after,.fr-fi-add-circle-line:before{-webkit-mask-image:url(../icons/system/add-circle-line.svg);mask-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:after,.fr-fi-add-line:before{-webkit-mask-image:url(../icons/system/add-line.svg);mask-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:after,.fr-fi-arrow-down-line:before{-webkit-mask-image:url(../icons/system/arrow-down-line.svg);mask-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:after,.fr-fi-arrow-down-s-line:before{-webkit-mask-image:url(../icons/system/arrow-down-s-line.svg);mask-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:after,.fr-fi-arrow-go-back-fill:before{-webkit-mask-image:url(../icons/system/arrow-go-back-fill.svg);mask-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:after,.fr-fi-arrow-go-back-line:before{-webkit-mask-image:url(../icons/system/arrow-go-back-line.svg);mask-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:after,.fr-fi-arrow-left-line:before{-webkit-mask-image:url(../icons/system/arrow-left-line.svg);mask-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:after,.fr-fi-arrow-left-s-line:before{-webkit-mask-image:url(../icons/system/arrow-left-s-line.svg);mask-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:after,.fr-fi-arrow-right-line:before{-webkit-mask-image:url(../icons/system/arrow-right-line.svg);mask-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:after,.fr-fi-arrow-right-s-line:before{-webkit-mask-image:url(../icons/system/arrow-right-s-line.svg);mask-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:after,.fr-fi-arrow-right-up-line:before{-webkit-mask-image:url(../icons/system/arrow-right-up-line.svg);mask-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:after,.fr-fi-arrow-up-fill:before{-webkit-mask-image:url(../icons/system/arrow-up-fill.svg);mask-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:after,.fr-fi-arrow-up-line:before{-webkit-mask-image:url(../icons/system/arrow-up-line.svg);mask-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:after,.fr-fi-arrow-up-s-line:before{-webkit-mask-image:url(../icons/system/arrow-up-s-line.svg);mask-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:after,.fr-fi-check-line:before{-webkit-mask-image:url(../icons/system/check-line.svg);mask-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:after,.fr-fi-checkbox-circle-line:before{-webkit-mask-image:url(../icons/system/checkbox-circle-line.svg);mask-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:after,.fr-fi-close-line:before{-webkit-mask-image:url(../icons/system/close-line.svg);mask-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:after,.fr-fi-download-line:before{-webkit-mask-image:url(../icons/system/download-line.svg);mask-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:after,.fr-fi-error-warning-fill:before{-webkit-mask-image:url(../icons/system/error-warning-fill.svg);mask-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:after,.fr-fi-error-warning-line:before{-webkit-mask-image:url(../icons/system/error-warning-line.svg);mask-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:after,.fr-fi-external-link-line:before{-webkit-mask-image:url(../icons/system/external-link-line.svg);mask-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:after,.fr-fi-eye-fill:before{-webkit-mask-image:url(../icons/system/eye-fill.svg);mask-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:after,.fr-fi-eye-line:before{-webkit-mask-image:url(../icons/system/eye-line.svg);mask-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:after,.fr-fi-eye-off-fill:before{-webkit-mask-image:url(../icons/system/eye-off-fill.svg);mask-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:after,.fr-fi-eye-off-line:before{-webkit-mask-image:url(../icons/system/eye-off-line.svg);mask-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:after,.fr-fi-filter-fill:before{-webkit-mask-image:url(../icons/system/filter-fill.svg);mask-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:after,.fr-fi-filter-line:before{-webkit-mask-image:url(../icons/system/filter-line.svg);mask-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:after,.fr-fi-arrow-left-s-first-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg);mask-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:after,.fr-fi-arrow-left-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:after,.fr-fi-arrow-right-s-last-line:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg);mask-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:after,.fr-fi-arrow-right-s-line-double:before{-webkit-mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg);mask-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:after,.fr-fi-error-fill:before{-webkit-mask-image:url(../icons/system/fr--error-fill.svg);mask-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:after,.fr-fi-error-line:before{-webkit-mask-image:url(../icons/system/fr--error-line.svg);mask-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:after,.fr-fi-info-fill:before{-webkit-mask-image:url(../icons/system/fr--info-fill.svg);mask-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:after,.fr-fi-info-line:before{-webkit-mask-image:url(../icons/system/fr--info-line.svg);mask-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:after,.fr-fi-success-fill:before{-webkit-mask-image:url(../icons/system/fr--success-fill.svg);mask-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:after,.fr-fi-success-line:before{-webkit-mask-image:url(../icons/system/fr--success-line.svg);mask-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:after,.fr-fi-theme-fill:before{-webkit-mask-image:url(../icons/system/fr--theme-fill.svg);mask-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:after,.fr-fi-warning-fill:before{-webkit-mask-image:url(../icons/system/fr--warning-fill.svg);mask-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:after,.fr-fi-warning-line:before{-webkit-mask-image:url(../icons/system/fr--warning-line.svg);mask-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:after,.fr-fi-information-fill:before{-webkit-mask-image:url(../icons/system/information-fill.svg);mask-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:after,.fr-fi-information-line:before{-webkit-mask-image:url(../icons/system/information-line.svg);mask-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:after,.fr-fi-lock-fill:before{-webkit-mask-image:url(../icons/system/lock-fill.svg);mask-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:after,.fr-fi-lock-line:before{-webkit-mask-image:url(../icons/system/lock-line.svg);mask-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:after,.fr-fi-logout-box-r-fill:before{-webkit-mask-image:url(../icons/system/logout-box-r-fill.svg);mask-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:after,.fr-fi-logout-box-r-line:before{-webkit-mask-image:url(../icons/system/logout-box-r-line.svg);mask-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:after,.fr-fi-menu-2-fill:before{-webkit-mask-image:url(../icons/system/menu-2-fill.svg);mask-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:after,.fr-fi-menu-fill:before{-webkit-mask-image:url(../icons/system/menu-fill.svg);mask-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:after,.fr-fi-question-fill:before{-webkit-mask-image:url(../icons/system/question-fill.svg);mask-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:after,.fr-fi-question-line:before{-webkit-mask-image:url(../icons/system/question-line.svg);mask-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:after,.fr-fi-refresh-fill:before{-webkit-mask-image:url(../icons/system/refresh-fill.svg);mask-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:after,.fr-fi-refresh-line:before{-webkit-mask-image:url(../icons/system/refresh-line.svg);mask-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:after,.fr-fi-search-fill:before{-webkit-mask-image:url(../icons/system/search-fill.svg);mask-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:after,.fr-fi-search-line:before{-webkit-mask-image:url(../icons/system/search-line.svg);mask-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:after,.fr-fi-subtract-line:before{-webkit-mask-image:url(../icons/system/subtract-line.svg);mask-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:after,.fr-fi-timer-fill:before{-webkit-mask-image:url(../icons/system/timer-fill.svg);mask-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:after,.fr-fi-timer-line:before{-webkit-mask-image:url(../icons/system/timer-line.svg);mask-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:after,.fr-fi-upload-2-fill:before{-webkit-mask-image:url(../icons/system/upload-2-fill.svg);mask-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:after,.fr-fi-upload-2-line:before{-webkit-mask-image:url(../icons/system/upload-2-line.svg);mask-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:after,.fr-fi-zoom-in-fill:before{-webkit-mask-image:url(../icons/system/zoom-in-fill.svg);mask-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:after,.fr-fi-zoom-in-line:before{-webkit-mask-image:url(../icons/system/zoom-in-line.svg);mask-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:after,.fr-fi-zoom-out-fill:before{-webkit-mask-image:url(../icons/system/zoom-out-fill.svg);mask-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:after,.fr-fi-zoom-out-line:before{-webkit-mask-image:url(../icons/system/zoom-out-line.svg);mask-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{-webkit-mask-image:url(../icons/system/delete-bin-line.svg);mask-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{-webkit-mask-image:url(../icons/system/delete-bin-fill.svg);mask-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{-webkit-mask-image:url(../icons/user/account-pin-circle-fill.svg);mask-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{-webkit-mask-image:url(../icons/user/account-pin-circle-line.svg);mask-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{-webkit-mask-image:url(../icons/user/admin-fill.svg);mask-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{-webkit-mask-image:url(../icons/user/admin-line.svg);mask-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{-webkit-mask-image:url(../icons/user/group-fill.svg);mask-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{-webkit-mask-image:url(../icons/user/group-line.svg);mask-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{-webkit-mask-image:url(../icons/user/parent-fill.svg);mask-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{-webkit-mask-image:url(../icons/user/parent-line.svg);mask-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{-webkit-mask-image:url(../icons/user/team-fill.svg);mask-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{-webkit-mask-image:url(../icons/user/team-line.svg);mask-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{-webkit-mask-image:url(../icons/user/user-add-fill.svg);mask-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{-webkit-mask-image:url(../icons/user/user-add-line.svg);mask-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{-webkit-mask-image:url(../icons/user/user-heart-fill.svg);mask-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{-webkit-mask-image:url(../icons/user/user-heart-line.svg);mask-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{-webkit-mask-image:url(../icons/user/user-search-fill.svg);mask-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{-webkit-mask-image:url(../icons/user/user-search-line.svg);mask-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{-webkit-mask-image:url(../icons/user/user-setting-fill.svg);mask-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{-webkit-mask-image:url(../icons/user/user-setting-line.svg);mask-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{-webkit-mask-image:url(../icons/user/user-star-fill.svg);mask-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{-webkit-mask-image:url(../icons/user/user-star-line.svg);mask-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:after,.fr-fi-user-fill:before{-webkit-mask-image:url(../icons/user/user-fill.svg);mask-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:after,.fr-fi-user-line:before{-webkit-mask-image:url(../icons/user/user-line.svg);mask-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{-webkit-mask-image:url(../icons/user/account-circle-line.svg);mask-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{-webkit-mask-image:url(../icons/user/account-circle-fill.svg);mask-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{-webkit-mask-image:url(../icons/weather/cloudy-2-fill.svg);mask-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{-webkit-mask-image:url(../icons/weather/cloudy-2-line.svg);mask-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{-webkit-mask-image:url(../icons/weather/fire-fill.svg);mask-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{-webkit-mask-image:url(../icons/weather/fire-line.svg);mask-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{-webkit-mask-image:url(../icons/weather/flood-fill.svg);mask-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{-webkit-mask-image:url(../icons/weather/flood-line.svg);mask-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{-webkit-mask-image:url(../icons/weather/fr--avalanches-fill.svg);mask-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{-webkit-mask-image:url(../icons/weather/fr--submersion-fill.svg);mask-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{-webkit-mask-image:url(../icons/weather/heavy-showers-fill.svg);mask-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{-webkit-mask-image:url(../icons/weather/heavy-showers-line.svg);mask-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{-webkit-mask-image:url(../icons/weather/moon-fill.svg);mask-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{-webkit-mask-image:url(../icons/weather/moon-line.svg);mask-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{-webkit-mask-image:url(../icons/weather/snowy-fill.svg);mask-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{-webkit-mask-image:url(../icons/weather/snowy-line.svg);mask-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{-webkit-mask-image:url(../icons/weather/sparkling-2-fill.svg);mask-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{-webkit-mask-image:url(../icons/weather/sparkling-2-line.svg);mask-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{-webkit-mask-image:url(../icons/weather/sun-fill.svg);mask-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{-webkit-mask-image:url(../icons/weather/sun-line.svg);mask-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{-webkit-mask-image:url(../icons/weather/temp-cold-fill.svg);mask-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{-webkit-mask-image:url(../icons/weather/temp-cold-line.svg);mask-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{-webkit-mask-image:url(../icons/weather/thunderstorms-fill.svg);mask-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{-webkit-mask-image:url(../icons/weather/thunderstorms-line.svg);mask-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{-webkit-mask-image:url(../icons/weather/tornado-fill.svg);mask-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{-webkit-mask-image:url(../icons/weather/tornado-line.svg);mask-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{-webkit-mask-image:url(../icons/weather/typhoon-fill.svg);mask-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{-webkit-mask-image:url(../icons/weather/typhoon-line.svg);mask-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{-webkit-mask-image:url(../icons/weather/windy-fill.svg);mask-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{-webkit-mask-image:url(../icons/weather/windy-line.svg);mask-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:after,.fr-fi-flashlight-fill:before{-webkit-mask-image:url(../icons/weather/flashlight-fill.svg);mask-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:after,.fr-fi-flashlight-line:before{-webkit-mask-image:url(../icons/weather/flashlight-line.svg);mask-image:url(../icons/weather/flashlight-line.svg)}@media (min-width:36em){ /*! media sm */ /*! media sm */ /*! media sm */ @@ -152,4 +152,4 @@ /*! media xl */ /*! media xl */ /*! media xl */ - /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{background-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{background-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{background-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{background-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{background-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{background-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{background-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{background-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{background-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{background-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{background-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{background-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{background-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{background-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{background-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{background-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{background-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{background-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{background-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{background-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{background-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{background-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{background-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{background-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{background-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{background-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{background-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{background-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{background-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{background-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{background-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{background-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{background-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{background-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{background-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{background-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{background-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{background-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{background-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{background-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{background-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{background-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{background-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{background-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{background-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{background-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{background-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{background-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{background-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{background-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{background-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{background-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{background-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{background-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{background-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{background-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{background-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{background-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{background-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{background-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{background-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{background-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{background-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{background-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{background-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{background-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{background-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{background-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{background-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{background-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{background-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{background-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{background-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{background-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{background-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{background-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{background-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{background-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{background-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{background-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{background-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{background-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{background-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{background-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{background-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{background-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{background-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{background-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{background-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{background-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{background-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{background-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{background-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{background-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{background-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{background-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{background-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{background-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{background-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{background-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{background-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{background-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{background-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{background-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{background-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{background-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{background-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{background-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{background-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{background-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{background-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{background-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{background-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{background-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{background-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{background-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{background-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{background-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{background-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{background-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{background-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{background-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{background-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{background-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{background-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{background-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{background-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{background-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{background-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{background-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{background-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{background-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{background-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{background-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{background-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{background-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{background-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{background-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{background-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{background-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{background-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{background-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{background-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{background-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{background-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{background-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{background-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{background-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{background-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{background-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{background-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{background-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{background-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{background-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{background-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{background-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{background-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{background-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{background-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{background-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{background-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{background-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{background-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{background-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{background-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{background-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{background-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{background-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{background-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{background-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{background-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{background-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{background-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{background-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{background-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{background-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{background-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{background-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{background-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{background-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{background-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{background-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{background-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{background-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{background-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{background-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{background-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{background-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{background-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{background-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{background-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{background-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{background-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{background-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{background-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{background-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{background-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{background-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{background-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{background-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{background-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{background-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{background-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{background-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{background-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{background-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{background-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{background-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{background-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{background-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{background-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{background-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{background-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{background-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{background-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{background-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{background-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{background-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{background-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{background-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{background-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{background-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{background-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{background-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{background-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{background-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{background-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{background-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{background-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{background-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{background-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{background-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{background-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{background-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{background-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{background-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{background-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{background-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{background-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{background-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{background-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{background-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{background-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{background-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{background-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{background-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{background-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{background-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{background-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{background-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{background-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{background-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{background-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{background-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{background-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{background-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{background-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{background-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{background-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{background-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{background-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{background-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{background-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{background-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{background-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{background-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{background-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{background-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{background-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{background-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{background-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{background-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{background-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{background-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{background-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{background-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{background-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{background-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{background-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{background-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{background-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{background-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{background-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{background-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{background-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{background-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{background-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{background-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{background-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{background-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{background-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{background-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{background-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{background-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{background-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{background-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{background-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{background-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{background-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{background-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{background-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{background-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{background-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{background-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{background-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{background-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{background-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{background-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{background-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{background-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{background-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{background-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{background-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{background-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{background-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{background-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{background-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{background-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{background-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{background-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{background-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{background-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{background-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{background-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{background-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{background-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{background-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{background-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{background-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{background-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{background-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{background-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{background-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{background-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{background-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{background-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{background-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{background-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{background-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{background-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{background-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{background-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{background-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{background-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{background-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{background-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{background-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{background-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{background-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{background-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{background-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{background-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{background-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{background-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{background-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{background-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{background-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{background-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{background-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{background-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{background-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{background-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{background-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{background-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{background-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{background-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{background-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{background-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{background-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{background-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{background-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{background-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{background-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{background-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{background-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{background-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{background-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{background-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{background-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{background-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{background-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{background-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{background-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{background-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{background-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{background-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{background-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{background-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{background-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{background-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{background-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{background-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{background-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{background-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{background-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{background-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{background-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{background-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{background-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{background-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{background-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{background-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{background-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{background-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{background-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{background-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{background-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{background-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{background-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{background-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{background-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{background-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{background-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{background-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{background-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{background-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{background-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{background-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{background-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{background-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{background-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{background-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{background-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{background-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{background-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{background-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{background-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{background-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{background-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{background-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{background-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{background-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{background-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{background-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{background-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{background-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{background-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{background-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{background-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{background-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{background-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{background-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{background-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{background-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{background-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{background-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{background-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{background-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{background-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{background-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{background-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{background-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{background-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{background-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{background-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{background-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{background-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{background-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{background-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{background-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{background-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{background-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{background-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{background-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{background-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{background-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{background-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{background-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{background-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{background-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{background-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{background-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{background-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{background-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{background-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{background-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{background-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{background-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}}@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file + /*! media xl */}@media screen and (min-width:0\0) and (min-resolution:72dpi){.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}.fr-icon-ancient-gate-fill:after,.fr-icon-ancient-gate-fill:before{background-image:url(../icons/buildings/ancient-gate-fill.svg)}.fr-icon-ancient-gate-line:after,.fr-icon-ancient-gate-line:before{background-image:url(../icons/buildings/ancient-gate-line.svg)}.fr-icon-ancient-pavilion-fill:after,.fr-icon-ancient-pavilion-fill:before{background-image:url(../icons/buildings/ancient-pavilion-fill.svg)}.fr-icon-ancient-pavilion-line:after,.fr-icon-ancient-pavilion-line:before{background-image:url(../icons/buildings/ancient-pavilion-line.svg)}.fr-icon-bank-fill:after,.fr-icon-bank-fill:before{background-image:url(../icons/buildings/bank-fill.svg)}.fr-icon-bank-line:after,.fr-icon-bank-line:before{background-image:url(../icons/buildings/bank-line.svg)}.fr-icon-building-fill:after,.fr-icon-building-fill:before{background-image:url(../icons/buildings/building-fill.svg)}.fr-icon-building-line:after,.fr-icon-building-line:before{background-image:url(../icons/buildings/building-line.svg)}.fr-icon-community-fill:after,.fr-icon-community-fill:before{background-image:url(../icons/buildings/community-fill.svg)}.fr-icon-community-line:after,.fr-icon-community-line:before{background-image:url(../icons/buildings/community-line.svg)}.fr-icon-government-fill:after,.fr-icon-government-fill:before{background-image:url(../icons/buildings/government-fill.svg)}.fr-icon-government-line:after,.fr-icon-government-line:before{background-image:url(../icons/buildings/government-line.svg)}.fr-icon-home-4-fill:after,.fr-icon-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-icon-home-4-line:after,.fr-icon-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-hospital-fill:after,.fr-icon-hospital-fill:before{background-image:url(../icons/buildings/hospital-fill.svg)}.fr-icon-hospital-line:after,.fr-icon-hospital-line:before{background-image:url(../icons/buildings/hospital-line.svg)}.fr-icon-hotel-fill:after,.fr-icon-hotel-fill:before{background-image:url(../icons/buildings/hotel-fill.svg)}.fr-icon-hotel-line:after,.fr-icon-hotel-line:before{background-image:url(../icons/buildings/hotel-line.svg)}.fr-icon-store-fill:after,.fr-icon-store-fill:before{background-image:url(../icons/buildings/store-fill.svg)}.fr-icon-store-line:after,.fr-icon-store-line:before{background-image:url(../icons/buildings/store-line.svg)}.fr-fi-home-4-fill:before{background-image:url(../icons/buildings/home-4-fill.svg)}.fr-fi-home-4-line:before{background-image:url(../icons/buildings/home-4-line.svg)}.fr-icon-archive-fill:after,.fr-icon-archive-fill:before{background-image:url(../icons/business/archive-fill.svg)}.fr-icon-archive-line:after,.fr-icon-archive-line:before{background-image:url(../icons/business/archive-line.svg)}.fr-icon-attachment-fill:after,.fr-icon-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-icon-attachment-line:after,.fr-icon-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-icon-award-fill:after,.fr-icon-award-fill:before{background-image:url(../icons/business/award-fill.svg)}.fr-icon-award-line:after,.fr-icon-award-line:before{background-image:url(../icons/business/award-line.svg)}.fr-icon-bar-chart-box-fill:after,.fr-icon-bar-chart-box-fill:before{background-image:url(../icons/business/bar-chart-box-fill.svg)}.fr-icon-bar-chart-box-line:after,.fr-icon-bar-chart-box-line:before{background-image:url(../icons/business/bar-chart-box-line.svg)}.fr-icon-bookmark-fill:after,.fr-icon-bookmark-fill:before{background-image:url(../icons/business/bookmark-fill.svg)}.fr-icon-bookmark-line:after,.fr-icon-bookmark-line:before{background-image:url(../icons/business/bookmark-line.svg)}.fr-icon-briefcase-fill:after,.fr-icon-briefcase-fill:before{background-image:url(../icons/business/briefcase-fill.svg)}.fr-icon-briefcase-line:after,.fr-icon-briefcase-line:before{background-image:url(../icons/business/briefcase-line.svg)}.fr-icon-calendar-2-fill:after,.fr-icon-calendar-2-fill:before{background-image:url(../icons/business/calendar-2-fill.svg)}.fr-icon-calendar-2-line:after,.fr-icon-calendar-2-line:before{background-image:url(../icons/business/calendar-2-line.svg)}.fr-icon-calendar-event-fill:after,.fr-icon-calendar-event-fill:before{background-image:url(../icons/business/calendar-event-fill.svg)}.fr-icon-calendar-event-line:after,.fr-icon-calendar-event-line:before{background-image:url(../icons/business/calendar-event-line.svg)}.fr-icon-calendar-fill:after,.fr-icon-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-icon-calendar-line:after,.fr-icon-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-icon-cloud-fill:after,.fr-icon-cloud-fill:before{background-image:url(../icons/business/cloud-fill.svg)}.fr-icon-cloud-line:after,.fr-icon-cloud-line:before{background-image:url(../icons/business/cloud-line.svg)}.fr-icon-copyright-fill:after,.fr-icon-copyright-fill:before{background-image:url(../icons/business/copyright-fill.svg)}.fr-icon-copyright-line:after,.fr-icon-copyright-line:before{background-image:url(../icons/business/copyright-line.svg)}.fr-icon-customer-service-fill:after,.fr-icon-customer-service-fill:before{background-image:url(../icons/business/customer-service-fill.svg)}.fr-icon-customer-service-line:after,.fr-icon-customer-service-line:before{background-image:url(../icons/business/customer-service-line.svg)}.fr-icon-flag-fill:after,.fr-icon-flag-fill:before{background-image:url(../icons/business/flag-fill.svg)}.fr-icon-flag-line:after,.fr-icon-flag-line:before{background-image:url(../icons/business/flag-line.svg)}.fr-icon-global-fill:after,.fr-icon-global-fill:before{background-image:url(../icons/business/global-fill.svg)}.fr-icon-global-line:after,.fr-icon-global-line:before{background-image:url(../icons/business/global-line.svg)}.fr-icon-line-chart-fill:after,.fr-icon-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-icon-line-chart-line:after,.fr-icon-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-icon-links-fill:after,.fr-icon-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-icon-links-line:after,.fr-icon-links-line:before{background-image:url(../icons/business/links-line.svg)}.fr-icon-mail-fill:after,.fr-icon-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-icon-mail-line:after,.fr-icon-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-icon-mail-open-fill:after,.fr-icon-mail-open-fill:before{background-image:url(../icons/business/mail-open-fill.svg)}.fr-icon-mail-open-line:after,.fr-icon-mail-open-line:before{background-image:url(../icons/business/mail-open-line.svg)}.fr-icon-medal-fill:after,.fr-icon-medal-fill:before{background-image:url(../icons/business/medal-fill.svg)}.fr-icon-medal-line:after,.fr-icon-medal-line:before{background-image:url(../icons/business/medal-line.svg)}.fr-icon-pie-chart-2-fill:after,.fr-icon-pie-chart-2-fill:before{background-image:url(../icons/business/pie-chart-2-fill.svg)}.fr-icon-pie-chart-2-line:after,.fr-icon-pie-chart-2-line:before{background-image:url(../icons/business/pie-chart-2-line.svg)}.fr-icon-pie-chart-box-fill:after,.fr-icon-pie-chart-box-fill:before{background-image:url(../icons/business/pie-chart-box-fill.svg)}.fr-icon-pie-chart-box-line:after,.fr-icon-pie-chart-box-line:before{background-image:url(../icons/business/pie-chart-box-line.svg)}.fr-icon-printer-fill:after,.fr-icon-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-icon-printer-line:after,.fr-icon-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-profil-fill:after,.fr-icon-profil-fill:before{background-image:url(../icons/business/profil-fill.svg)}.fr-icon-profil-line:after,.fr-icon-profil-line:before{background-image:url(../icons/business/profil-line.svg)}.fr-icon-projector-2-fill:after,.fr-icon-projector-2-fill:before{background-image:url(../icons/business/projector-2-fill.svg)}.fr-icon-projector-2-line:after,.fr-icon-projector-2-line:before{background-image:url(../icons/business/projector-2-line.svg)}.fr-icon-send-plane-fill:after,.fr-icon-send-plane-fill:before{background-image:url(../icons/business/send-plane-fill.svg)}.fr-icon-send-plane-line:after,.fr-icon-send-plane-line:before{background-image:url(../icons/business/send-plane-line.svg)}.fr-icon-slideshow-fill:after,.fr-icon-slideshow-fill:before{background-image:url(../icons/business/slideshow-fill.svg)}.fr-icon-slideshow-line:after,.fr-icon-slideshow-line:before{background-image:url(../icons/business/slideshow-line.svg)}.fr-icon-window-fill:after,.fr-icon-window-fill:before{background-image:url(../icons/business/window-fill.svg)}.fr-icon-window-line:after,.fr-icon-window-line:before{background-image:url(../icons/business/window-line.svg)}.fr-fi-attachment-fill:before{background-image:url(../icons/business/attachment-fill.svg)}.fr-fi-attachment-line:before{background-image:url(../icons/business/attachment-line.svg)}.fr-fi-calendar-fill:before{background-image:url(../icons/business/calendar-fill.svg)}.fr-fi-calendar-line:before{background-image:url(../icons/business/calendar-line.svg)}.fr-fi-line-chart-fill:before{background-image:url(../icons/business/line-chart-fill.svg)}.fr-fi-line-chart-line:before{background-image:url(../icons/business/line-chart-line.svg)}.fr-fi-links-fill:before{background-image:url(../icons/business/links-fill.svg)}.fr-fi-mail-fill:before{background-image:url(../icons/business/mail-fill.svg)}.fr-fi-mail-line:before{background-image:url(../icons/business/mail-line.svg)}.fr-fi-printer-fill:before{background-image:url(../icons/business/printer-fill.svg)}.fr-fi-printer-line:before{background-image:url(../icons/business/printer-line.svg)}.fr-icon-chat-2-fill:after,.fr-icon-chat-2-fill:before{background-image:url(../icons/communication/chat-2-fill.svg)}.fr-icon-chat-2-line:after,.fr-icon-chat-2-line:before{background-image:url(../icons/communication/chat-2-line.svg)}.fr-icon-chat-3-fill:after,.fr-icon-chat-3-fill:before{background-image:url(../icons/communication/chat-3-fill.svg)}.fr-icon-chat-3-line:after,.fr-icon-chat-3-line:before{background-image:url(../icons/communication/chat-3-line.svg)}.fr-icon-chat-check-fill:after,.fr-icon-chat-check-fill:before{background-image:url(../icons/communication/chat-check-fill.svg)}.fr-icon-chat-check-line:after,.fr-icon-chat-check-line:before{background-image:url(../icons/communication/chat-check-line.svg)}.fr-icon-chat-delete-fill:after,.fr-icon-chat-delete-fill:before{background-image:url(../icons/communication/chat-delete-fill.svg)}.fr-icon-chat-delete-line:after,.fr-icon-chat-delete-line:before{background-image:url(../icons/communication/chat-delete-line.svg)}.fr-icon-chat-poll-fill:after,.fr-icon-chat-poll-fill:before{background-image:url(../icons/communication/chat-poll-fill.svg)}.fr-icon-chat-poll-line:after,.fr-icon-chat-poll-line:before{background-image:url(../icons/communication/chat-poll-line.svg)}.fr-icon-discuss-fill:after,.fr-icon-discuss-fill:before{background-image:url(../icons/communication/discuss-fill.svg)}.fr-icon-discuss-line:after,.fr-icon-discuss-line:before{background-image:url(../icons/communication/discuss-line.svg)}.fr-icon-feedback-fill:after,.fr-icon-feedback-fill:before{background-image:url(../icons/communication/feedback-fill.svg)}.fr-icon-feedback-line:after,.fr-icon-feedback-line:before{background-image:url(../icons/communication/feedback-line.svg)}.fr-icon-message-2-fill:after,.fr-icon-message-2-fill:before{background-image:url(../icons/communication/message-2-fill.svg)}.fr-icon-message-2-line:after,.fr-icon-message-2-line:before{background-image:url(../icons/communication/message-2-line.svg)}.fr-icon-question-answer-fill:after,.fr-icon-question-answer-fill:before{background-image:url(../icons/communication/question-answer-fill.svg)}.fr-icon-question-answer-line:after,.fr-icon-question-answer-line:before{background-image:url(../icons/communication/question-answer-line.svg)}.fr-icon-questionnaire-fill:after,.fr-icon-questionnaire-fill:before{background-image:url(../icons/communication/questionnaire-fill.svg)}.fr-icon-questionnaire-line:after,.fr-icon-questionnaire-line:before{background-image:url(../icons/communication/questionnaire-line.svg)}.fr-icon-video-chat-fill:after,.fr-icon-video-chat-fill:before{background-image:url(../icons/communication/video-chat-fill.svg)}.fr-icon-video-chat-line:after,.fr-icon-video-chat-line:before{background-image:url(../icons/communication/video-chat-line.svg)}.fr-icon-ball-pen-fill:after,.fr-icon-ball-pen-fill:before{background-image:url(../icons/design/ball-pen-fill.svg)}.fr-icon-ball-pen-line:after,.fr-icon-ball-pen-line:before{background-image:url(../icons/design/ball-pen-line.svg)}.fr-icon-brush-3-fill:after,.fr-icon-brush-3-fill:before{background-image:url(../icons/design/brush-3-fill.svg)}.fr-icon-brush-3-line:after,.fr-icon-brush-3-line:before{background-image:url(../icons/design/brush-3-line.svg)}.fr-icon-brush-fill:after,.fr-icon-brush-fill:before{background-image:url(../icons/design/brush-fill.svg)}.fr-icon-brush-line:after,.fr-icon-brush-line:before{background-image:url(../icons/design/brush-line.svg)}.fr-icon-contrast-fill:after,.fr-icon-contrast-fill:before{background-image:url(../icons/design/contrast-fill.svg)}.fr-icon-contrast-line:after,.fr-icon-contrast-line:before{background-image:url(../icons/design/contrast-line.svg)}.fr-icon-crop-fill:after,.fr-icon-crop-fill:before{background-image:url(../icons/design/crop-fill.svg)}.fr-icon-crop-line:after,.fr-icon-crop-line:before{background-image:url(../icons/design/crop-line.svg)}.fr-icon-drag-move-2-fill:after,.fr-icon-drag-move-2-fill:before{background-image:url(../icons/design/drag-move-2-fill.svg)}.fr-icon-drag-move-2-line:after,.fr-icon-drag-move-2-line:before{background-image:url(../icons/design/drag-move-2-line.svg)}.fr-icon-drop-fill:after,.fr-icon-drop-fill:before{background-image:url(../icons/design/drop-fill.svg)}.fr-icon-drop-line:after,.fr-icon-drop-line:before{background-image:url(../icons/design/drop-line.svg)}.fr-icon-edit-box-fill:after,.fr-icon-edit-box-fill:before{background-image:url(../icons/design/edit-box-fill.svg)}.fr-icon-edit-box-line:after,.fr-icon-edit-box-line:before{background-image:url(../icons/design/edit-box-line.svg)}.fr-icon-edit-fill:after,.fr-icon-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-icon-edit-line:after,.fr-icon-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-ink-bottle-fill:after,.fr-icon-ink-bottle-fill:before{background-image:url(../icons/design/ink-bottle-fill.svg)}.fr-icon-ink-bottle-line:after,.fr-icon-ink-bottle-line:before{background-image:url(../icons/design/ink-bottle-line.svg)}.fr-icon-layout-grid-fill:after,.fr-icon-layout-grid-fill:before{background-image:url(../icons/design/layout-grid-fill.svg)}.fr-icon-layout-grid-line:after,.fr-icon-layout-grid-line:before{background-image:url(../icons/design/layout-grid-line.svg)}.fr-icon-mark-pen-fill:after,.fr-icon-mark-pen-fill:before{background-image:url(../icons/design/mark-pen-fill.svg)}.fr-icon-mark-pen-line:after,.fr-icon-mark-pen-line:before{background-image:url(../icons/design/mark-pen-line.svg)}.fr-icon-paint-brush-fill:after,.fr-icon-paint-brush-fill:before{background-image:url(../icons/design/paint-brush-fill.svg)}.fr-icon-paint-brush-line:after,.fr-icon-paint-brush-line:before{background-image:url(../icons/design/paint-brush-line.svg)}.fr-icon-paint-fill:after,.fr-icon-paint-fill:before{background-image:url(../icons/design/paint-fill.svg)}.fr-icon-paint-line:after,.fr-icon-paint-line:before{background-image:url(../icons/design/paint-line.svg)}.fr-icon-palette-fill:after,.fr-icon-palette-fill:before{background-image:url(../icons/design/palette-fill.svg)}.fr-icon-palette-line:after,.fr-icon-palette-line:before{background-image:url(../icons/design/palette-line.svg)}.fr-icon-pantone-fill:after,.fr-icon-pantone-fill:before{background-image:url(../icons/design/pantone-fill.svg)}.fr-icon-pantone-line:after,.fr-icon-pantone-line:before{background-image:url(../icons/design/pantone-line.svg)}.fr-icon-pen-nib-fill:after,.fr-icon-pen-nib-fill:before{background-image:url(../icons/design/pen-nib-fill.svg)}.fr-icon-pen-nib-line:after,.fr-icon-pen-nib-line:before{background-image:url(../icons/design/pen-nib-line.svg)}.fr-icon-pencil-fill:after,.fr-icon-pencil-fill:before{background-image:url(../icons/design/pencil-fill.svg)}.fr-icon-pencil-line:after,.fr-icon-pencil-line:before{background-image:url(../icons/design/pencil-line.svg)}.fr-icon-pencil-ruler-fill:after,.fr-icon-pencil-ruler-fill:before{background-image:url(../icons/design/pencil-ruler-fill.svg)}.fr-icon-pencil-ruler-line:after,.fr-icon-pencil-ruler-line:before{background-image:url(../icons/design/pencil-ruler-line.svg)}.fr-icon-shapes-fill:after,.fr-icon-shapes-fill:before{background-image:url(../icons/design/shapes-fill.svg)}.fr-icon-shapes-line:after,.fr-icon-shapes-line:before{background-image:url(../icons/design/shapes-line.svg)}.fr-icon-sip-fill:after,.fr-icon-sip-fill:before{background-image:url(../icons/design/sip-fill.svg)}.fr-icon-sip-line:after,.fr-icon-sip-line:before{background-image:url(../icons/design/sip-line.svg)}.fr-icon-table-fill:after,.fr-icon-table-fill:before{background-image:url(../icons/design/table-fill.svg)}.fr-icon-table-line:after,.fr-icon-table-line:before{background-image:url(../icons/design/table-line.svg)}.fr-fi-edit-fill:before{background-image:url(../icons/design/edit-fill.svg)}.fr-fi-edit-line:before{background-image:url(../icons/design/edit-line.svg)}.fr-icon-bug-fill:after,.fr-icon-bug-fill:before{background-image:url(../icons/development/bug-fill.svg)}.fr-icon-bug-line:after,.fr-icon-bug-line:before{background-image:url(../icons/development/bug-line.svg)}.fr-icon-code-box-fill:after,.fr-icon-code-box-fill:before{background-image:url(../icons/development/code-box-fill.svg)}.fr-icon-code-box-line:after,.fr-icon-code-box-line:before{background-image:url(../icons/development/code-box-line.svg)}.fr-icon-code-s-slash-line:after,.fr-icon-code-s-slash-line:before{background-image:url(../icons/development/code-s-slash-line.svg)}.fr-icon-cursor-fill:after,.fr-icon-cursor-fill:before{background-image:url(../icons/development/cursor-fill.svg)}.fr-icon-cursor-line:after,.fr-icon-cursor-line:before{background-image:url(../icons/development/cursor-line.svg)}.fr-icon-git-branch-fill:after,.fr-icon-git-branch-fill:before{background-image:url(../icons/development/git-branch-fill.svg)}.fr-icon-git-branch-line:after,.fr-icon-git-branch-line:before{background-image:url(../icons/development/git-branch-line.svg)}.fr-icon-git-commit-fill:after,.fr-icon-git-commit-fill:before{background-image:url(../icons/development/git-commit-fill.svg)}.fr-icon-git-commit-line:after,.fr-icon-git-commit-line:before{background-image:url(../icons/development/git-commit-line.svg)}.fr-icon-git-merge-fill:after,.fr-icon-git-merge-fill:before{background-image:url(../icons/development/git-merge-fill.svg)}.fr-icon-git-merge-line:after,.fr-icon-git-merge-line:before{background-image:url(../icons/development/git-merge-line.svg)}.fr-icon-git-pull-request-fill:after,.fr-icon-git-pull-request-fill:before{background-image:url(../icons/development/git-pull-request-fill.svg)}.fr-icon-git-pull-request-line:after,.fr-icon-git-pull-request-line:before{background-image:url(../icons/development/git-pull-request-line.svg)}.fr-icon-git-repository-commits-fill:after,.fr-icon-git-repository-commits-fill:before{background-image:url(../icons/development/git-repository-commits-fill.svg)}.fr-icon-git-repository-commits-line:after,.fr-icon-git-repository-commits-line:before{background-image:url(../icons/development/git-repository-commits-line.svg)}.fr-icon-git-repository-fill:after,.fr-icon-git-repository-fill:before{background-image:url(../icons/development/git-repository-fill.svg)}.fr-icon-git-repository-line:after,.fr-icon-git-repository-line:before{background-image:url(../icons/development/git-repository-line.svg)}.fr-icon-git-repository-private-fill:after,.fr-icon-git-repository-private-fill:before{background-image:url(../icons/development/git-repository-private-fill.svg)}.fr-icon-git-repository-private-line:after,.fr-icon-git-repository-private-line:before{background-image:url(../icons/development/git-repository-private-line.svg)}.fr-icon-terminal-box-fill:after,.fr-icon-terminal-box-fill:before{background-image:url(../icons/development/terminal-box-fill.svg)}.fr-icon-terminal-box-line:after,.fr-icon-terminal-box-line:before{background-image:url(../icons/development/terminal-box-line.svg)}.fr-icon-terminal-line:after,.fr-icon-terminal-line:before{background-image:url(../icons/development/terminal-line.svg)}.fr-icon-terminal-window-fill:after,.fr-icon-terminal-window-fill:before{background-image:url(../icons/development/terminal-window-fill.svg)}.fr-icon-terminal-window-line:after,.fr-icon-terminal-window-line:before{background-image:url(../icons/development/terminal-window-line.svg)}.fr-icon-bluetooth-fill:after,.fr-icon-bluetooth-fill:before{background-image:url(../icons/device/bluetooth-fill.svg)}.fr-icon-bluetooth-line:after,.fr-icon-bluetooth-line:before{background-image:url(../icons/device/bluetooth-line.svg)}.fr-icon-computer-fill:after,.fr-icon-computer-fill:before{background-image:url(../icons/device/computer-fill.svg)}.fr-icon-computer-line:after,.fr-icon-computer-line:before{background-image:url(../icons/device/computer-line.svg)}.fr-icon-dashboard-3-fill:after,.fr-icon-dashboard-3-fill:before{background-image:url(../icons/device/dashboard-3-fill.svg)}.fr-icon-dashboard-3-line:after,.fr-icon-dashboard-3-line:before{background-image:url(../icons/device/dashboard-3-line.svg)}.fr-icon-database-fill:after,.fr-icon-database-fill:before{background-image:url(../icons/device/database-fill.svg)}.fr-icon-database-line:after,.fr-icon-database-line:before{background-image:url(../icons/device/database-line.svg)}.fr-icon-device-fill:after,.fr-icon-device-fill:before{background-image:url(../icons/device/device-fill.svg)}.fr-icon-device-line:after,.fr-icon-device-line:before{background-image:url(../icons/device/device-line.svg)}.fr-icon-hard-drive-2-fill:after,.fr-icon-hard-drive-2-fill:before{background-image:url(../icons/device/hard-drive-2-fill.svg)}.fr-icon-hard-drive-2-line:after,.fr-icon-hard-drive-2-line:before{background-image:url(../icons/device/hard-drive-2-line.svg)}.fr-icon-mac-fill:after,.fr-icon-mac-fill:before{background-image:url(../icons/device/mac-fill.svg)}.fr-icon-mac-line:after,.fr-icon-mac-line:before{background-image:url(../icons/device/mac-line.svg)}.fr-icon-phone-fill:after,.fr-icon-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-icon-phone-line:after,.fr-icon-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-icon-qr-code-fill:after,.fr-icon-qr-code-fill:before{background-image:url(../icons/device/qr-code-fill.svg)}.fr-icon-qr-code-line:after,.fr-icon-qr-code-line:before{background-image:url(../icons/device/qr-code-line.svg)}.fr-icon-rss-fill:after,.fr-icon-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-icon-rss-line:after,.fr-icon-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-icon-save-3-fill:after,.fr-icon-save-3-fill:before{background-image:url(../icons/device/save-3-fill.svg)}.fr-icon-save-3-line:after,.fr-icon-save-3-line:before{background-image:url(../icons/device/save-3-line.svg)}.fr-icon-save-fill:after,.fr-icon-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-icon-save-line:after,.fr-icon-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-server-fill:after,.fr-icon-server-fill:before{background-image:url(../icons/device/server-fill.svg)}.fr-icon-server-line:after,.fr-icon-server-line:before{background-image:url(../icons/device/server-line.svg)}.fr-icon-smartphone-fill:after,.fr-icon-smartphone-fill:before{background-image:url(../icons/device/smartphone-fill.svg)}.fr-icon-smartphone-line:after,.fr-icon-smartphone-line:before{background-image:url(../icons/device/smartphone-line.svg)}.fr-icon-tablet-fill:after,.fr-icon-tablet-fill:before{background-image:url(../icons/device/tablet-fill.svg)}.fr-icon-tablet-line:after,.fr-icon-tablet-line:before{background-image:url(../icons/device/tablet-line.svg)}.fr-icon-tv-fill:after,.fr-icon-tv-fill:before{background-image:url(../icons/device/tv-fill.svg)}.fr-icon-tv-line:after,.fr-icon-tv-line:before{background-image:url(../icons/device/tv-line.svg)}.fr-icon-wifi-fill:after,.fr-icon-wifi-fill:before{background-image:url(../icons/device/wifi-fill.svg)}.fr-icon-wifi-line:after,.fr-icon-wifi-line:before{background-image:url(../icons/device/wifi-line.svg)}.fr-fi-phone-fill:before{background-image:url(../icons/device/phone-fill.svg)}.fr-fi-phone-line:before{background-image:url(../icons/device/phone-line.svg)}.fr-fi-rss-fill:before{background-image:url(../icons/device/rss-fill.svg)}.fr-fi-rss-line:before{background-image:url(../icons/device/rss-line.svg)}.fr-fi-save-fill:before{background-image:url(../icons/device/save-fill.svg)}.fr-fi-save-line:before{background-image:url(../icons/device/save-line.svg)}.fr-icon-article-fill:after,.fr-icon-article-fill:before{background-image:url(../icons/document/article-fill.svg)}.fr-icon-article-line:after,.fr-icon-article-line:before{background-image:url(../icons/document/article-line.svg)}.fr-icon-book-2-fill:after,.fr-icon-book-2-fill:before{background-image:url(../icons/document/book-2-fill.svg)}.fr-icon-book-2-line:after,.fr-icon-book-2-line:before{background-image:url(../icons/document/book-2-line.svg)}.fr-icon-booklet-fill:after,.fr-icon-booklet-fill:before{background-image:url(../icons/document/booklet-fill.svg)}.fr-icon-booklet-line:after,.fr-icon-booklet-line:before{background-image:url(../icons/document/booklet-line.svg)}.fr-icon-clipboard-fill:after,.fr-icon-clipboard-fill:before{background-image:url(../icons/document/clipboard-fill.svg)}.fr-icon-clipboard-line:after,.fr-icon-clipboard-line:before{background-image:url(../icons/document/clipboard-line.svg)}.fr-icon-draft-fill:after,.fr-icon-draft-fill:before{background-image:url(../icons/document/draft-fill.svg)}.fr-icon-draft-line:after,.fr-icon-draft-line:before{background-image:url(../icons/document/draft-line.svg)}.fr-icon-file-add-fill:after,.fr-icon-file-add-fill:before{background-image:url(../icons/document/file-add-fill.svg)}.fr-icon-file-add-line:after,.fr-icon-file-add-line:before{background-image:url(../icons/document/file-add-line.svg)}.fr-icon-file-download-fill:after,.fr-icon-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-icon-file-download-line:after,.fr-icon-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-icon-file-fill:after,.fr-icon-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-icon-file-line:after,.fr-icon-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-icon-file-pdf-fill:after,.fr-icon-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-icon-file-pdf-line:after,.fr-icon-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-file-text-fill:after,.fr-icon-file-text-fill:before{background-image:url(../icons/document/file-text-fill.svg)}.fr-icon-file-text-line:after,.fr-icon-file-text-line:before{background-image:url(../icons/document/file-text-line.svg)}.fr-icon-folder-2-fill:after,.fr-icon-folder-2-fill:before{background-image:url(../icons/document/folder-2-fill.svg)}.fr-icon-folder-2-line:after,.fr-icon-folder-2-line:before{background-image:url(../icons/document/folder-2-line.svg)}.fr-icon-newspaper-fill:after,.fr-icon-newspaper-fill:before{background-image:url(../icons/document/newspaper-fill.svg)}.fr-icon-newspaper-line:after,.fr-icon-newspaper-line:before{background-image:url(../icons/document/newspaper-line.svg)}.fr-icon-survey-fill:after,.fr-icon-survey-fill:before{background-image:url(../icons/document/survey-fill.svg)}.fr-icon-survey-line:after,.fr-icon-survey-line:before{background-image:url(../icons/document/survey-line.svg)}.fr-icon-todo-fill:after,.fr-icon-todo-fill:before{background-image:url(../icons/document/todo-fill.svg)}.fr-icon-todo-line:after,.fr-icon-todo-line:before{background-image:url(../icons/document/todo-line.svg)}.fr-fi-file-download-fill:before{background-image:url(../icons/document/file-download-fill.svg)}.fr-fi-file-download-line:before{background-image:url(../icons/document/file-download-line.svg)}.fr-fi-file-fill:before{background-image:url(../icons/document/file-fill.svg)}.fr-fi-file-line:before{background-image:url(../icons/document/file-line.svg)}.fr-fi-file-pdf-fill:before{background-image:url(../icons/document/file-pdf-fill.svg)}.fr-fi-file-pdf-line:before{background-image:url(../icons/document/file-pdf-line.svg)}.fr-icon-code-view:after,.fr-icon-code-view:before{background-image:url(../icons/editor/code-view.svg)}.fr-icon-font-size:after,.fr-icon-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-icon-bold:after,.fr-icon-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-icon-highlight:after,.fr-icon-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-icon-quote-fill:after,.fr-icon-quote-fill:before{background-image:url(../icons/editor/fr--quote-fill.svg)}.fr-icon-quote-line:after,.fr-icon-quote-line:before{background-image:url(../icons/editor/fr--quote-line.svg)}.fr-icon-h-1:after,.fr-icon-h-1:before{background-image:url(../icons/editor/h-1.svg)}.fr-icon-h-2:after,.fr-icon-h-2:before{background-image:url(../icons/editor/h-2.svg)}.fr-icon-h-3:after,.fr-icon-h-3:before{background-image:url(../icons/editor/h-3.svg)}.fr-icon-h-4:after,.fr-icon-h-4:before{background-image:url(../icons/editor/h-4.svg)}.fr-icon-h-5:after,.fr-icon-h-5:before{background-image:url(../icons/editor/h-5.svg)}.fr-icon-h-6:after,.fr-icon-h-6:before{background-image:url(../icons/editor/h-6.svg)}.fr-icon-hashtag:after,.fr-icon-hashtag:before{background-image:url(../icons/editor/hashtag.svg)}.fr-icon-italic:after,.fr-icon-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-icon-link-unlink:after,.fr-icon-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-icon-link:after,.fr-icon-link:before{background-image:url(../icons/editor/link.svg)}.fr-icon-list-ordered:after,.fr-icon-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-icon-list-unordered:after,.fr-icon-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-question-mark:after,.fr-icon-question-mark:before{background-image:url(../icons/editor/question-mark.svg)}.fr-icon-separator:after,.fr-icon-separator:before{background-image:url(../icons/editor/separator.svg)}.fr-icon-space:after,.fr-icon-space:before{background-image:url(../icons/editor/space.svg)}.fr-icon-subscript:after,.fr-icon-subscript:before{background-image:url(../icons/editor/subscript.svg)}.fr-icon-superscript:after,.fr-icon-superscript:before{background-image:url(../icons/editor/superscript.svg)}.fr-icon-table-2:after,.fr-icon-table-2:before{background-image:url(../icons/editor/table-2.svg)}.fr-icon-translate-2:after,.fr-icon-translate-2:before{background-image:url(../icons/editor/translate-2.svg)}.fr-fi-font-size:before{background-image:url(../icons/editor/font-size.svg)}.fr-fi-bold:before{background-image:url(../icons/editor/fr--bold.svg)}.fr-fi-highlight:before{background-image:url(../icons/editor/fr--highlight.svg)}.fr-fi-italic:before{background-image:url(../icons/editor/italic.svg)}.fr-fi-link-unlink:before{background-image:url(../icons/editor/link-unlink.svg)}.fr-fi-list-ordered:before{background-image:url(../icons/editor/list-ordered.svg)}.fr-fi-list-unordered:before{background-image:url(../icons/editor/list-unordered.svg)}.fr-icon-bank-card-fill:after,.fr-icon-bank-card-fill:before{background-image:url(../icons/finance/bank-card-fill.svg)}.fr-icon-bank-card-line:after,.fr-icon-bank-card-line:before{background-image:url(../icons/finance/bank-card-line.svg)}.fr-icon-coin-fill:after,.fr-icon-coin-fill:before{background-image:url(../icons/finance/coin-fill.svg)}.fr-icon-gift-fill:after,.fr-icon-gift-fill:before{background-image:url(../icons/finance/gift-fill.svg)}.fr-icon-gift-line:after,.fr-icon-gift-line:before{background-image:url(../icons/finance/gift-line.svg)}.fr-icon-money-euro-box-fill:after,.fr-icon-money-euro-box-fill:before{background-image:url(../icons/finance/money-euro-box-fill.svg)}.fr-icon-money-euro-box-line:after,.fr-icon-money-euro-box-line:before{background-image:url(../icons/finance/money-euro-box-line.svg)}.fr-icon-money-euro-circle-fill:after,.fr-icon-money-euro-circle-fill:before{background-image:url(../icons/finance/money-euro-circle-fill.svg)}.fr-icon-money-euro-circle-line:after,.fr-icon-money-euro-circle-line:before{background-image:url(../icons/finance/money-euro-circle-line.svg)}.fr-icon-secure-payment-fill:after,.fr-icon-secure-payment-fill:before{background-image:url(../icons/finance/secure-payment-fill.svg)}.fr-icon-secure-payment-line:after,.fr-icon-secure-payment-line:before{background-image:url(../icons/finance/secure-payment-line.svg)}.fr-icon-shopping-bag-fill:after,.fr-icon-shopping-bag-fill:before{background-image:url(../icons/finance/shopping-bag-fill.svg)}.fr-icon-shopping-bag-line:after,.fr-icon-shopping-bag-line:before{background-image:url(../icons/finance/shopping-bag-line.svg)}.fr-icon-shopping-cart-2-fill:after,.fr-icon-shopping-cart-2-fill:before{background-image:url(../icons/finance/shopping-cart-2-fill.svg)}.fr-icon-shopping-cart-2-line:after,.fr-icon-shopping-cart-2-line:before{background-image:url(../icons/finance/shopping-cart-2-line.svg)}.fr-icon-trophy-fill:after,.fr-icon-trophy-fill:before{background-image:url(../icons/finance/trophy-fill.svg)}.fr-icon-trophy-line:after,.fr-icon-trophy-line:before{background-image:url(../icons/finance/trophy-line.svg)}.fr-icon-capsule-fill:after,.fr-icon-capsule-fill:before{background-image:url(../icons/health/capsule-fill.svg)}.fr-icon-capsule-line:after,.fr-icon-capsule-line:before{background-image:url(../icons/health/capsule-line.svg)}.fr-icon-dislike-fill:after,.fr-icon-dislike-fill:before{background-image:url(../icons/health/dislike-fill.svg)}.fr-icon-dislike-line:after,.fr-icon-dislike-line:before{background-image:url(../icons/health/dislike-line.svg)}.fr-icon-dossier-fill:after,.fr-icon-dossier-fill:before{background-image:url(../icons/health/dossier-fill.svg)}.fr-icon-dossier-line:after,.fr-icon-dossier-line:before{background-image:url(../icons/health/dossier-line.svg)}.fr-icon-first-aid-kit-fill:after,.fr-icon-first-aid-kit-fill:before{background-image:url(../icons/health/first-aid-kit-fill.svg)}.fr-icon-first-aid-kit-line:after,.fr-icon-first-aid-kit-line:before{background-image:url(../icons/health/first-aid-kit-line.svg)}.fr-icon-hand-sanitizer-fill:after,.fr-icon-hand-sanitizer-fill:before{background-image:url(../icons/health/hand-sanitizer-fill.svg)}.fr-icon-hand-sanitizer-line:after,.fr-icon-hand-sanitizer-line:before{background-image:url(../icons/health/hand-sanitizer-line.svg)}.fr-icon-health-book-fill:after,.fr-icon-health-book-fill:before{background-image:url(../icons/health/health-book-fill.svg)}.fr-icon-health-book-line:after,.fr-icon-health-book-line:before{background-image:url(../icons/health/health-book-line.svg)}.fr-icon-heart-fill:after,.fr-icon-heart-fill:before{background-image:url(../icons/health/heart-fill.svg)}.fr-icon-heart-line:after,.fr-icon-heart-line:before{background-image:url(../icons/health/heart-line.svg)}.fr-icon-heart-pulse-fill:after,.fr-icon-heart-pulse-fill:before{background-image:url(../icons/health/heart-pulse-fill.svg)}.fr-icon-heart-pulse-line:after,.fr-icon-heart-pulse-line:before{background-image:url(../icons/health/heart-pulse-line.svg)}.fr-icon-lungs-fill:after,.fr-icon-lungs-fill:before{background-image:url(../icons/health/lungs-fill.svg)}.fr-icon-lungs-line:after,.fr-icon-lungs-line:before{background-image:url(../icons/health/lungs-line.svg)}.fr-icon-medicine-bottle-fill:after,.fr-icon-medicine-bottle-fill:before{background-image:url(../icons/health/medicine-bottle-fill.svg)}.fr-icon-medicine-bottle-line:after,.fr-icon-medicine-bottle-line:before{background-image:url(../icons/health/medicine-bottle-line.svg)}.fr-icon-mental-health-fill:after,.fr-icon-mental-health-fill:before{background-image:url(../icons/health/mental-health-fill.svg)}.fr-icon-mental-health-line:after,.fr-icon-mental-health-line:before{background-image:url(../icons/health/mental-health-line.svg)}.fr-icon-microscope-fill:after,.fr-icon-microscope-fill:before{background-image:url(../icons/health/microscope-fill.svg)}.fr-icon-microscope-line:after,.fr-icon-microscope-line:before{background-image:url(../icons/health/microscope-line.svg)}.fr-icon-psychotherapy-fill:after,.fr-icon-psychotherapy-fill:before{background-image:url(../icons/health/psychotherapy-fill.svg)}.fr-icon-psychotherapy-line:after,.fr-icon-psychotherapy-line:before{background-image:url(../icons/health/psychotherapy-line.svg)}.fr-icon-pulse-line:after,.fr-icon-pulse-line:before{background-image:url(../icons/health/pulse-line.svg)}.fr-icon-stethoscope-fill:after,.fr-icon-stethoscope-fill:before{background-image:url(../icons/health/stethoscope-fill.svg)}.fr-icon-stethoscope-line:after,.fr-icon-stethoscope-line:before{background-image:url(../icons/health/stethoscope-line.svg)}.fr-icon-surgical-mask-fill:after,.fr-icon-surgical-mask-fill:before{background-image:url(../icons/health/surgical-mask-fill.svg)}.fr-icon-surgical-mask-line:after,.fr-icon-surgical-mask-line:before{background-image:url(../icons/health/surgical-mask-line.svg)}.fr-icon-syringe-fill:after,.fr-icon-syringe-fill:before{background-image:url(../icons/health/syringe-fill.svg)}.fr-icon-syringe-line:after,.fr-icon-syringe-line:before{background-image:url(../icons/health/syringe-line.svg)}.fr-icon-test-tube-fill:after,.fr-icon-test-tube-fill:before{background-image:url(../icons/health/test-tube-fill.svg)}.fr-icon-test-tube-line:after,.fr-icon-test-tube-line:before{background-image:url(../icons/health/test-tube-line.svg)}.fr-icon-thermometer-fill:after,.fr-icon-thermometer-fill:before{background-image:url(../icons/health/thermometer-fill.svg)}.fr-icon-thermometer-line:after,.fr-icon-thermometer-line:before{background-image:url(../icons/health/thermometer-line.svg)}.fr-icon-virus-fill:after,.fr-icon-virus-fill:before{background-image:url(../icons/health/virus-fill.svg)}.fr-icon-virus-line:after,.fr-icon-virus-line:before{background-image:url(../icons/health/virus-line.svg)}.fr-icon-chrome-fill:after,.fr-icon-chrome-fill:before{background-image:url(../icons/logo/chrome-fill.svg)}.fr-icon-chrome-line:after,.fr-icon-chrome-line:before{background-image:url(../icons/logo/chrome-line.svg)}.fr-icon-edge-fill:after,.fr-icon-edge-fill:before{background-image:url(../icons/logo/edge-fill.svg)}.fr-icon-edge-line:after,.fr-icon-edge-line:before{background-image:url(../icons/logo/edge-line.svg)}.fr-icon-facebook-circle-fill:after,.fr-icon-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-icon-facebook-circle-line:after,.fr-icon-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-icon-firefox-fill:after,.fr-icon-firefox-fill:before{background-image:url(../icons/logo/firefox-fill.svg)}.fr-icon-firefox-line:after,.fr-icon-firefox-line:before{background-image:url(../icons/logo/firefox-line.svg)}.fr-icon-dailymotion-fill:after,.fr-icon-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-icon-dailymotion-line:after,.fr-icon-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-icon-tiktok-fill:after,.fr-icon-tiktok-fill:before{background-image:url(../icons/logo/fr--tiktok-fill.svg)}.fr-icon-tiktok-line:after,.fr-icon-tiktok-line:before{background-image:url(../icons/logo/fr--tiktok-line.svg)}.fr-icon-github-fill:after,.fr-icon-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-icon-github-line:after,.fr-icon-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-icon-google-fill:after,.fr-icon-google-fill:before{background-image:url(../icons/logo/google-fill.svg)}.fr-icon-google-line:after,.fr-icon-google-line:before{background-image:url(../icons/logo/google-line.svg)}.fr-icon-ie-fill:after,.fr-icon-ie-fill:before{background-image:url(../icons/logo/ie-fill.svg)}.fr-icon-ie-line:after,.fr-icon-ie-line:before{background-image:url(../icons/logo/ie-line.svg)}.fr-icon-instagram-fill:after,.fr-icon-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-icon-instagram-line:after,.fr-icon-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-icon-linkedin-box-fill:after,.fr-icon-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-icon-linkedin-box-line:after,.fr-icon-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-icon-mastodon-fill:after,.fr-icon-mastodon-fill:before{background-image:url(../icons/logo/mastodon-fill.svg)}.fr-icon-mastodon-line:after,.fr-icon-mastodon-line:before{background-image:url(../icons/logo/mastodon-line.svg)}.fr-icon-npmjs-fill:after,.fr-icon-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-icon-npmjs-line:after,.fr-icon-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-icon-remixicon-fill:after,.fr-icon-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-icon-remixicon-line:after,.fr-icon-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-icon-safari-fill:after,.fr-icon-safari-fill:before{background-image:url(../icons/logo/safari-fill.svg)}.fr-icon-safari-line:after,.fr-icon-safari-line:before{background-image:url(../icons/logo/safari-line.svg)}.fr-icon-slack-fill:after,.fr-icon-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-icon-slack-line:after,.fr-icon-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-icon-snapchat-fill:after,.fr-icon-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-icon-snapchat-line:after,.fr-icon-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-icon-telegram-fill:after,.fr-icon-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-icon-telegram-line:after,.fr-icon-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-icon-threads-fill:after,.fr-icon-threads-fill:before{background-image:url(../icons/logo/threads-fill.svg)}.fr-icon-threads-line:after,.fr-icon-threads-line:before{background-image:url(../icons/logo/threads-line.svg)}.fr-icon-twitch-fill:after,.fr-icon-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-icon-twitch-line:after,.fr-icon-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-icon-twitter-fill:after,.fr-icon-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-icon-twitter-line:after,.fr-icon-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-icon-twitter-x-fill:after,.fr-icon-twitter-x-fill:before{background-image:url(../icons/logo/twitter-x-fill.svg)}.fr-icon-twitter-x-line:after,.fr-icon-twitter-x-line:before{background-image:url(../icons/logo/twitter-x-line.svg)}.fr-icon-vimeo-fill:after,.fr-icon-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-icon-vimeo-line:after,.fr-icon-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-icon-vuejs-fill:after,.fr-icon-vuejs-fill:before{background-image:url(../icons/logo/vuejs-fill.svg)}.fr-icon-vuejs-line:after,.fr-icon-vuejs-line:before{background-image:url(../icons/logo/vuejs-line.svg)}.fr-icon-whatsapp-fill:after,.fr-icon-whatsapp-fill:before{background-image:url(../icons/logo/whatsapp-fill.svg)}.fr-icon-whatsapp-line:after,.fr-icon-whatsapp-line:before{background-image:url(../icons/logo/whatsapp-line.svg)}.fr-icon-youtube-fill:after,.fr-icon-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-icon-youtube-line:after,.fr-icon-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-fi-facebook-circle-fill:before{background-image:url(../icons/logo/facebook-circle-fill.svg)}.fr-fi-facebook-circle-line:before{background-image:url(../icons/logo/facebook-circle-line.svg)}.fr-fi-dailymotion-fill:before{background-image:url(../icons/logo/fr--dailymotion-fill.svg)}.fr-fi-dailymotion-line:before{background-image:url(../icons/logo/fr--dailymotion-line.svg)}.fr-fi-github-fill:before{background-image:url(../icons/logo/github-fill.svg)}.fr-fi-github-line:before{background-image:url(../icons/logo/github-line.svg)}.fr-fi-instagram-fill:before{background-image:url(../icons/logo/instagram-fill.svg)}.fr-fi-instagram-line:before{background-image:url(../icons/logo/instagram-line.svg)}.fr-fi-linkedin-box-fill:before{background-image:url(../icons/logo/linkedin-box-fill.svg)}.fr-fi-linkedin-box-line:before{background-image:url(../icons/logo/linkedin-box-line.svg)}.fr-fi-npmjs-fill:before{background-image:url(../icons/logo/npmjs-fill.svg)}.fr-fi-npmjs-line:before{background-image:url(../icons/logo/npmjs-line.svg)}.fr-fi-remixicon-fill:before{background-image:url(../icons/logo/remixicon-fill.svg)}.fr-fi-remixicon-line:before{background-image:url(../icons/logo/remixicon-line.svg)}.fr-fi-slack-fill:before{background-image:url(../icons/logo/slack-fill.svg)}.fr-fi-slack-line:before{background-image:url(../icons/logo/slack-line.svg)}.fr-fi-snapchat-fill:before{background-image:url(../icons/logo/snapchat-fill.svg)}.fr-fi-snapchat-line:before{background-image:url(../icons/logo/snapchat-line.svg)}.fr-fi-telegram-fill:before{background-image:url(../icons/logo/telegram-fill.svg)}.fr-fi-telegram-line:before{background-image:url(../icons/logo/telegram-line.svg)}.fr-fi-twitch-fill:before{background-image:url(../icons/logo/twitch-fill.svg)}.fr-fi-twitch-line:before{background-image:url(../icons/logo/twitch-line.svg)}.fr-fi-twitter-fill:before{background-image:url(../icons/logo/twitter-fill.svg)}.fr-fi-twitter-line:before{background-image:url(../icons/logo/twitter-line.svg)}.fr-fi-vimeo-fill:before{background-image:url(../icons/logo/vimeo-fill.svg)}.fr-fi-vimeo-line:before{background-image:url(../icons/logo/vimeo-line.svg)}.fr-fi-youtube-fill:before{background-image:url(../icons/logo/youtube-fill.svg)}.fr-fi-youtube-line:before{background-image:url(../icons/logo/youtube-line.svg)}.fr-icon-anchor-fill:after,.fr-icon-anchor-fill:before{background-image:url(../icons/map/anchor-fill.svg)}.fr-icon-anchor-line:after,.fr-icon-anchor-line:before{background-image:url(../icons/map/anchor-line.svg)}.fr-icon-bike-fill:after,.fr-icon-bike-fill:before{background-image:url(../icons/map/bike-fill.svg)}.fr-icon-bike-line:after,.fr-icon-bike-line:before{background-image:url(../icons/map/bike-line.svg)}.fr-icon-bus-fill:after,.fr-icon-bus-fill:before{background-image:url(../icons/map/bus-fill.svg)}.fr-icon-bus-line:after,.fr-icon-bus-line:before{background-image:url(../icons/map/bus-line.svg)}.fr-icon-car-fill:after,.fr-icon-car-fill:before{background-image:url(../icons/map/car-fill.svg)}.fr-icon-car-line:after,.fr-icon-car-line:before{background-image:url(../icons/map/car-line.svg)}.fr-icon-caravan-fill:after,.fr-icon-caravan-fill:before{background-image:url(../icons/map/caravan-fill.svg)}.fr-icon-caravan-line:after,.fr-icon-caravan-line:before{background-image:url(../icons/map/caravan-line.svg)}.fr-icon-charging-pile-2-fill:after,.fr-icon-charging-pile-2-fill:before{background-image:url(../icons/map/charging-pile-2-fill.svg)}.fr-icon-charging-pile-2-line:after,.fr-icon-charging-pile-2-line:before{background-image:url(../icons/map/charging-pile-2-line.svg)}.fr-icon-compass-3-fill:after,.fr-icon-compass-3-fill:before{background-image:url(../icons/map/compass-3-fill.svg)}.fr-icon-compass-3-line:after,.fr-icon-compass-3-line:before{background-image:url(../icons/map/compass-3-line.svg)}.fr-icon-cup-fill:after,.fr-icon-cup-fill:before{background-image:url(../icons/map/cup-fill.svg)}.fr-icon-cup-line:after,.fr-icon-cup-line:before{background-image:url(../icons/map/cup-line.svg)}.fr-icon-earth-fill:after,.fr-icon-earth-fill:before{background-image:url(../icons/map/earth-fill.svg)}.fr-icon-earth-line:after,.fr-icon-earth-line:before{background-image:url(../icons/map/earth-line.svg)}.fr-icon-france-fill:after,.fr-icon-france-fill:before{background-image:url(../icons/map/france-fill.svg)}.fr-icon-france-line:after,.fr-icon-france-line:before{background-image:url(../icons/map/france-line.svg)}.fr-icon-gas-station-fill:after,.fr-icon-gas-station-fill:before{background-image:url(../icons/map/gas-station-fill.svg)}.fr-icon-gas-station-line:after,.fr-icon-gas-station-line:before{background-image:url(../icons/map/gas-station-line.svg)}.fr-icon-goblet-fill:after,.fr-icon-goblet-fill:before{background-image:url(../icons/map/goblet-fill.svg)}.fr-icon-goblet-line:after,.fr-icon-goblet-line:before{background-image:url(../icons/map/goblet-line.svg)}.fr-icon-map-pin-2-fill:after,.fr-icon-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-icon-map-pin-2-line:after,.fr-icon-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-icon-map-pin-user-fill:after,.fr-icon-map-pin-user-fill:before{background-image:url(../icons/map/map-pin-user-fill.svg)}.fr-icon-map-pin-user-line:after,.fr-icon-map-pin-user-line:before{background-image:url(../icons/map/map-pin-user-line.svg)}.fr-icon-motorbike-fill:after,.fr-icon-motorbike-fill:before{background-image:url(../icons/map/motorbike-fill.svg)}.fr-icon-motorbike-line:after,.fr-icon-motorbike-line:before{background-image:url(../icons/map/motorbike-line.svg)}.fr-icon-passport-fill:after,.fr-icon-passport-fill:before{background-image:url(../icons/map/passport-fill.svg)}.fr-icon-passport-line:after,.fr-icon-passport-line:before{background-image:url(../icons/map/passport-line.svg)}.fr-icon-restaurant-fill:after,.fr-icon-restaurant-fill:before{background-image:url(../icons/map/restaurant-fill.svg)}.fr-icon-restaurant-line:after,.fr-icon-restaurant-line:before{background-image:url(../icons/map/restaurant-line.svg)}.fr-icon-road-map-fill:after,.fr-icon-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-icon-road-map-line:after,.fr-icon-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-sailboat-fill:after,.fr-icon-sailboat-fill:before{background-image:url(../icons/map/sailboat-fill.svg)}.fr-icon-sailboat-line:after,.fr-icon-sailboat-line:before{background-image:url(../icons/map/sailboat-line.svg)}.fr-icon-ship-2-fill:after,.fr-icon-ship-2-fill:before{background-image:url(../icons/map/ship-2-fill.svg)}.fr-icon-ship-2-line:after,.fr-icon-ship-2-line:before{background-image:url(../icons/map/ship-2-line.svg)}.fr-icon-signal-tower-fill:after,.fr-icon-signal-tower-fill:before{background-image:url(../icons/map/signal-tower-fill.svg)}.fr-icon-signal-tower-line:after,.fr-icon-signal-tower-line:before{background-image:url(../icons/map/signal-tower-line.svg)}.fr-icon-suitcase-2-fill:after,.fr-icon-suitcase-2-fill:before{background-image:url(../icons/map/suitcase-2-fill.svg)}.fr-icon-suitcase-2-line:after,.fr-icon-suitcase-2-line:before{background-image:url(../icons/map/suitcase-2-line.svg)}.fr-icon-taxi-fill:after,.fr-icon-taxi-fill:before{background-image:url(../icons/map/taxi-fill.svg)}.fr-icon-taxi-line:after,.fr-icon-taxi-line:before{background-image:url(../icons/map/taxi-line.svg)}.fr-icon-train-fill:after,.fr-icon-train-fill:before{background-image:url(../icons/map/train-fill.svg)}.fr-icon-train-line:after,.fr-icon-train-line:before{background-image:url(../icons/map/train-line.svg)}.fr-fi-map-pin-2-fill:before{background-image:url(../icons/map/map-pin-2-fill.svg)}.fr-fi-map-pin-2-line:before{background-image:url(../icons/map/map-pin-2-line.svg)}.fr-fi-road-map-fill:before{background-image:url(../icons/map/road-map-fill.svg)}.fr-fi-road-map-line:before{background-image:url(../icons/map/road-map-line.svg)}.fr-icon-align-left:after,.fr-icon-align-left:before{background-image:url(../icons/media/align-left.svg)}.fr-icon-camera-fill:after,.fr-icon-camera-fill:before{background-image:url(../icons/media/camera-fill.svg)}.fr-icon-camera-line:after,.fr-icon-camera-line:before{background-image:url(../icons/media/camera-line.svg)}.fr-icon-clapperboard-fill:after,.fr-icon-clapperboard-fill:before{background-image:url(../icons/media/clapperboard-fill.svg)}.fr-icon-clapperboard-line:after,.fr-icon-clapperboard-line:before{background-image:url(../icons/media/clapperboard-line.svg)}.fr-icon-equalizer-fill:after,.fr-icon-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-icon-equalizer-line:after,.fr-icon-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-icon-film-fill:after,.fr-icon-film-fill:before{background-image:url(../icons/media/film-fill.svg)}.fr-icon-film-line:after,.fr-icon-film-line:before{background-image:url(../icons/media/film-line.svg)}.fr-icon-fullscreen-line:after,.fr-icon-fullscreen-line:before{background-image:url(../icons/media/fullscreen-line.svg)}.fr-icon-gallery-fill:after,.fr-icon-gallery-fill:before{background-image:url(../icons/media/gallery-fill.svg)}.fr-icon-gallery-line:after,.fr-icon-gallery-line:before{background-image:url(../icons/media/gallery-line.svg)}.fr-icon-headphone-fill:after,.fr-icon-headphone-fill:before{background-image:url(../icons/media/headphone-fill.svg)}.fr-icon-headphone-line:after,.fr-icon-headphone-line:before{background-image:url(../icons/media/headphone-line.svg)}.fr-icon-image-add-fill:after,.fr-icon-image-add-fill:before{background-image:url(../icons/media/image-add-fill.svg)}.fr-icon-image-add-line:after,.fr-icon-image-add-line:before{background-image:url(../icons/media/image-add-line.svg)}.fr-icon-image-edit-fill:after,.fr-icon-image-edit-fill:before{background-image:url(../icons/media/image-edit-fill.svg)}.fr-icon-image-edit-line:after,.fr-icon-image-edit-line:before{background-image:url(../icons/media/image-edit-line.svg)}.fr-icon-image-fill:after,.fr-icon-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-icon-image-line:after,.fr-icon-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-icon-live-fill:after,.fr-icon-live-fill:before{background-image:url(../icons/media/live-fill.svg)}.fr-icon-live-line:after,.fr-icon-live-line:before{background-image:url(../icons/media/live-line.svg)}.fr-icon-mic-fill:after,.fr-icon-mic-fill:before{background-image:url(../icons/media/mic-fill.svg)}.fr-icon-mic-line:after,.fr-icon-mic-line:before{background-image:url(../icons/media/mic-line.svg)}.fr-icon-music-2-fill:after,.fr-icon-music-2-fill:before{background-image:url(../icons/media/music-2-fill.svg)}.fr-icon-music-2-line:after,.fr-icon-music-2-line:before{background-image:url(../icons/media/music-2-line.svg)}.fr-icon-notification-3-fill:after,.fr-icon-notification-3-fill:before{background-image:url(../icons/media/notification-3-fill.svg)}.fr-icon-notification-3-line:after,.fr-icon-notification-3-line:before{background-image:url(../icons/media/notification-3-line.svg)}.fr-icon-pause-circle-fill:after,.fr-icon-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-icon-pause-circle-line:after,.fr-icon-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-icon-play-circle-fill:after,.fr-icon-play-circle-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-circle-line:after,.fr-icon-play-circle-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-stop-circle-fill:after,.fr-icon-stop-circle-fill:before{background-image:url(../icons/media/stop-circle-fill.svg)}.fr-icon-stop-circle-line:after,.fr-icon-stop-circle-line:before{background-image:url(../icons/media/stop-circle-line.svg)}.fr-icon-volume-down-fill:after,.fr-icon-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-icon-volume-down-line:after,.fr-icon-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-icon-volume-mute-fill:after,.fr-icon-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-icon-volume-mute-line:after,.fr-icon-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-icon-volume-up-fill:after,.fr-icon-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-icon-volume-up-line:after,.fr-icon-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-equalizer-fill:before{background-image:url(../icons/media/equalizer-fill.svg)}.fr-fi-equalizer-line:before{background-image:url(../icons/media/equalizer-line.svg)}.fr-fi-image-fill:before{background-image:url(../icons/media/image-fill.svg)}.fr-fi-image-line:before{background-image:url(../icons/media/image-line.svg)}.fr-fi-pause-circle-fill:before{background-image:url(../icons/media/pause-circle-fill.svg)}.fr-fi-pause-circle-line:before{background-image:url(../icons/media/pause-circle-line.svg)}.fr-fi-volume-down-fill:before{background-image:url(../icons/media/volume-down-fill.svg)}.fr-fi-volume-down-line:before{background-image:url(../icons/media/volume-down-line.svg)}.fr-fi-volume-mute-fill:before{background-image:url(../icons/media/volume-mute-fill.svg)}.fr-fi-volume-mute-line:before{background-image:url(../icons/media/volume-mute-line.svg)}.fr-fi-volume-up-fill:before{background-image:url(../icons/media/volume-up-fill.svg)}.fr-fi-volume-up-line:before{background-image:url(../icons/media/volume-up-line.svg)}.fr-fi-play-line:after,.fr-fi-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-fi-play-fill:after,.fr-fi-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-play-line:after,.fr-icon-play-line:before{background-image:url(../icons/media/play-circle-line.svg)}.fr-icon-play-fill:after,.fr-icon-play-fill:before{background-image:url(../icons/media/play-circle-fill.svg)}.fr-icon-accessibility-fill:after,.fr-icon-accessibility-fill:before{background-image:url(../icons/others/fr--accessibility-fill.svg)}.fr-icon-accessibility-line:after,.fr-icon-accessibility-line:before{background-image:url(../icons/others/fr--accessibility-line.svg)}.fr-icon-ear-off-fill:after,.fr-icon-ear-off-fill:before{background-image:url(../icons/others/fr--ear-off-fill.svg)}.fr-icon-ear-off-line:after,.fr-icon-ear-off-line:before{background-image:url(../icons/others/fr--ear-off-line.svg)}.fr-icon-mental-disabilities-fill:after,.fr-icon-mental-disabilities-fill:before{background-image:url(../icons/others/fr--mental-disabilities-fill.svg)}.fr-icon-mental-disabilities-line:after,.fr-icon-mental-disabilities-line:before{background-image:url(../icons/others/fr--mental-disabilities-line.svg)}.fr-icon-sign-language-fill:after,.fr-icon-sign-language-fill:before{background-image:url(../icons/others/fr--sign-language-fill.svg)}.fr-icon-sign-language-line:after,.fr-icon-sign-language-line:before{background-image:url(../icons/others/fr--sign-language-line.svg)}.fr-icon-leaf-fill:after,.fr-icon-leaf-fill:before{background-image:url(../icons/others/leaf-fill.svg)}.fr-icon-leaf-line:after,.fr-icon-leaf-line:before{background-image:url(../icons/others/leaf-line.svg)}.fr-icon-lightbulb-fill:after,.fr-icon-lightbulb-fill:before{background-image:url(../icons/others/lightbulb-fill.svg)}.fr-icon-lightbulb-line:after,.fr-icon-lightbulb-line:before{background-image:url(../icons/others/lightbulb-line.svg)}.fr-icon-plant-fill:after,.fr-icon-plant-fill:before{background-image:url(../icons/others/plant-fill.svg)}.fr-icon-plant-line:after,.fr-icon-plant-line:before{background-image:url(../icons/others/plant-line.svg)}.fr-icon-recycle-fill:after,.fr-icon-recycle-fill:before{background-image:url(../icons/others/recycle-fill.svg)}.fr-icon-recycle-line:after,.fr-icon-recycle-line:before{background-image:url(../icons/others/recycle-line.svg)}.fr-icon-scales-3-fill:after,.fr-icon-scales-3-fill:before{background-image:url(../icons/others/scales-3-fill.svg)}.fr-icon-scales-3-line:after,.fr-icon-scales-3-line:before{background-image:url(../icons/others/scales-3-line.svg)}.fr-icon-seedling-fill:after,.fr-icon-seedling-fill:before{background-image:url(../icons/others/seedling-fill.svg)}.fr-icon-seedling-line:after,.fr-icon-seedling-line:before{background-image:url(../icons/others/seedling-line.svg)}.fr-icon-umbrella-fill:after,.fr-icon-umbrella-fill:before{background-image:url(../icons/others/umbrella-fill.svg)}.fr-icon-umbrella-line:after,.fr-icon-umbrella-line:before{background-image:url(../icons/others/umbrella-line.svg)}.fr-icon-wheelchair-fill:after,.fr-icon-wheelchair-fill:before{background-image:url(../icons/others/wheelchair-fill.svg)}.fr-icon-wheelchair-line:after,.fr-icon-wheelchair-line:before{background-image:url(../icons/others/wheelchair-line.svg)}.fr-icon-add-circle-fill:after,.fr-icon-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-icon-add-circle-line:after,.fr-icon-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-icon-add-line:after,.fr-icon-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-icon-alarm-warning-fill:after,.fr-icon-alarm-warning-fill:before{background-image:url(../icons/system/alarm-warning-fill.svg)}.fr-icon-alarm-warning-line:after,.fr-icon-alarm-warning-line:before{background-image:url(../icons/system/alarm-warning-line.svg)}.fr-icon-alert-fill:after,.fr-icon-alert-fill:before{background-image:url(../icons/system/alert-fill.svg)}.fr-icon-alert-line:after,.fr-icon-alert-line:before{background-image:url(../icons/system/alert-line.svg)}.fr-icon-arrow-down-fill:after,.fr-icon-arrow-down-fill:before{background-image:url(../icons/system/arrow-down-fill.svg)}.fr-icon-arrow-down-line:after,.fr-icon-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-icon-arrow-down-s-fill:after,.fr-icon-arrow-down-s-fill:before{background-image:url(../icons/system/arrow-down-s-fill.svg)}.fr-icon-arrow-down-s-line:after,.fr-icon-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-icon-arrow-go-back-fill:after,.fr-icon-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-icon-arrow-go-back-line:after,.fr-icon-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-icon-arrow-go-forward-fill:after,.fr-icon-arrow-go-forward-fill:before{background-image:url(../icons/system/arrow-go-forward-fill.svg)}.fr-icon-arrow-go-forward-line:after,.fr-icon-arrow-go-forward-line:before{background-image:url(../icons/system/arrow-go-forward-line.svg)}.fr-icon-arrow-left-fill:after,.fr-icon-arrow-left-fill:before{background-image:url(../icons/system/arrow-left-fill.svg)}.fr-icon-arrow-left-line:after,.fr-icon-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-icon-arrow-left-s-fill:after,.fr-icon-arrow-left-s-fill:before{background-image:url(../icons/system/arrow-left-s-fill.svg)}.fr-icon-arrow-left-s-line:after,.fr-icon-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-icon-arrow-right-fill:after,.fr-icon-arrow-right-fill:before{background-image:url(../icons/system/arrow-right-fill.svg)}.fr-icon-arrow-right-line:after,.fr-icon-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-icon-arrow-right-s-fill:after,.fr-icon-arrow-right-s-fill:before{background-image:url(../icons/system/arrow-right-s-fill.svg)}.fr-icon-arrow-right-s-line:after,.fr-icon-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-icon-arrow-right-up-line:after,.fr-icon-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-icon-arrow-up-down-line:after,.fr-icon-arrow-up-down-line:before{background-image:url(../icons/system/arrow-up-down-line.svg)}.fr-icon-arrow-up-fill:after,.fr-icon-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-icon-arrow-up-line:after,.fr-icon-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-icon-arrow-up-s-fill:after,.fr-icon-arrow-up-s-fill:before{background-image:url(../icons/system/arrow-up-s-fill.svg)}.fr-icon-arrow-up-s-line:after,.fr-icon-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-icon-check-line:after,.fr-icon-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-icon-checkbox-circle-fill:after,.fr-icon-checkbox-circle-fill:before{background-image:url(../icons/system/checkbox-circle-fill.svg)}.fr-icon-checkbox-circle-line:after,.fr-icon-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-icon-checkbox-fill:after,.fr-icon-checkbox-fill:before{background-image:url(../icons/system/checkbox-fill.svg)}.fr-icon-checkbox-line:after,.fr-icon-checkbox-line:before{background-image:url(../icons/system/checkbox-line.svg)}.fr-icon-close-circle-fill:after,.fr-icon-close-circle-fill:before{background-image:url(../icons/system/close-circle-fill.svg)}.fr-icon-close-circle-line:after,.fr-icon-close-circle-line:before{background-image:url(../icons/system/close-circle-line.svg)}.fr-icon-close-line:after,.fr-icon-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-icon-delete-bin-fill:after,.fr-icon-delete-bin-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-bin-line:after,.fr-icon-delete-bin-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-download-fill:after,.fr-icon-download-fill:before{background-image:url(../icons/system/download-fill.svg)}.fr-icon-download-line:after,.fr-icon-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-icon-error-warning-fill:after,.fr-icon-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-icon-error-warning-line:after,.fr-icon-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-icon-external-link-fill:after,.fr-icon-external-link-fill:before{background-image:url(../icons/system/external-link-fill.svg)}.fr-icon-external-link-line:after,.fr-icon-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-icon-eye-fill:after,.fr-icon-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-icon-eye-line:after,.fr-icon-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-icon-eye-off-fill:after,.fr-icon-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-icon-eye-off-line:after,.fr-icon-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-icon-filter-fill:after,.fr-icon-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-icon-filter-line:after,.fr-icon-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-icon-alert-warning-2-fill:after,.fr-icon-alert-warning-2-fill:before{background-image:url(../icons/system/fr--alert-warning-2-fill.svg)}.fr-icon-alert-warning-fill:after,.fr-icon-alert-warning-fill:before{background-image:url(../icons/system/fr--alert-warning-fill.svg)}.fr-icon-arrow-left-s-first-line:after,.fr-icon-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-icon-arrow-left-s-line-double:after,.fr-icon-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-icon-arrow-right-down-circle-fill:after,.fr-icon-arrow-right-down-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-down-circle-fill.svg)}.fr-icon-arrow-right-s-last-line:after,.fr-icon-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-icon-arrow-right-s-line-double:after,.fr-icon-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-icon-arrow-right-up-circle-fill:after,.fr-icon-arrow-right-up-circle-fill:before{background-image:url(../icons/system/fr--arrow-right-up-circle-fill.svg)}.fr-icon-capslock-line:after,.fr-icon-capslock-line:before{background-image:url(../icons/system/fr--capslock-line.svg)}.fr-icon-equal-circle-fill:after,.fr-icon-equal-circle-fill:before{background-image:url(../icons/system/fr--equal-circle-fill.svg)}.fr-icon-error-fill:after,.fr-icon-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-icon-error-line:after,.fr-icon-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-icon-info-fill:after,.fr-icon-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-icon-info-line:after,.fr-icon-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-icon-success-fill:after,.fr-icon-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-icon-success-line:after,.fr-icon-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-icon-theme-fill:after,.fr-icon-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-icon-warning-fill:after,.fr-icon-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-icon-warning-line:after,.fr-icon-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-icon-information-fill:after,.fr-icon-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-icon-information-line:after,.fr-icon-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-icon-lock-fill:after,.fr-icon-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-icon-lock-line:after,.fr-icon-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-icon-lock-unlock-fill:after,.fr-icon-lock-unlock-fill:before{background-image:url(../icons/system/lock-unlock-fill.svg)}.fr-icon-lock-unlock-line:after,.fr-icon-lock-unlock-line:before{background-image:url(../icons/system/lock-unlock-line.svg)}.fr-icon-logout-box-r-fill:after,.fr-icon-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-icon-logout-box-r-line:after,.fr-icon-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-icon-menu-2-fill:after,.fr-icon-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-icon-menu-fill:after,.fr-icon-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-icon-more-fill:after,.fr-icon-more-fill:before{background-image:url(../icons/system/more-fill.svg)}.fr-icon-more-line:after,.fr-icon-more-line:before{background-image:url(../icons/system/more-line.svg)}.fr-icon-notification-badge-fill:after,.fr-icon-notification-badge-fill:before{background-image:url(../icons/system/notification-badge-fill.svg)}.fr-icon-notification-badge-line:after,.fr-icon-notification-badge-line:before{background-image:url(../icons/system/notification-badge-line.svg)}.fr-icon-question-fill:after,.fr-icon-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-icon-question-line:after,.fr-icon-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-icon-refresh-fill:after,.fr-icon-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-icon-refresh-line:after,.fr-icon-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-icon-search-fill:after,.fr-icon-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-icon-search-line:after,.fr-icon-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-icon-settings-5-fill:after,.fr-icon-settings-5-fill:before{background-image:url(../icons/system/settings-5-fill.svg)}.fr-icon-settings-5-line:after,.fr-icon-settings-5-line:before{background-image:url(../icons/system/settings-5-line.svg)}.fr-icon-shield-fill:after,.fr-icon-shield-fill:before{background-image:url(../icons/system/shield-fill.svg)}.fr-icon-shield-line:after,.fr-icon-shield-line:before{background-image:url(../icons/system/shield-line.svg)}.fr-icon-star-fill:after,.fr-icon-star-fill:before{background-image:url(../icons/system/star-fill.svg)}.fr-icon-star-line:after,.fr-icon-star-line:before{background-image:url(../icons/system/star-line.svg)}.fr-icon-star-s-fill:after,.fr-icon-star-s-fill:before{background-image:url(../icons/system/star-s-fill.svg)}.fr-icon-star-s-line:after,.fr-icon-star-s-line:before{background-image:url(../icons/system/star-s-line.svg)}.fr-icon-subtract-line:after,.fr-icon-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-icon-thumb-down-fill:after,.fr-icon-thumb-down-fill:before{background-image:url(../icons/system/thumb-down-fill.svg)}.fr-icon-thumb-down-line:after,.fr-icon-thumb-down-line:before{background-image:url(../icons/system/thumb-down-line.svg)}.fr-icon-thumb-up-fill:after,.fr-icon-thumb-up-fill:before{background-image:url(../icons/system/thumb-up-fill.svg)}.fr-icon-thumb-up-line:after,.fr-icon-thumb-up-line:before{background-image:url(../icons/system/thumb-up-line.svg)}.fr-icon-time-fill:after,.fr-icon-time-fill:before{background-image:url(../icons/system/time-fill.svg)}.fr-icon-time-line:after,.fr-icon-time-line:before{background-image:url(../icons/system/time-line.svg)}.fr-icon-timer-fill:after,.fr-icon-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-icon-timer-line:after,.fr-icon-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-icon-upload-2-fill:after,.fr-icon-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-icon-upload-2-line:after,.fr-icon-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-icon-upload-fill:after,.fr-icon-upload-fill:before{background-image:url(../icons/system/upload-fill.svg)}.fr-icon-upload-line:after,.fr-icon-upload-line:before{background-image:url(../icons/system/upload-line.svg)}.fr-icon-zoom-in-fill:after,.fr-icon-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-icon-zoom-in-line:after,.fr-icon-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-icon-zoom-out-fill:after,.fr-icon-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-icon-zoom-out-line:after,.fr-icon-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-add-circle-fill:before{background-image:url(../icons/system/add-circle-fill.svg)}.fr-fi-add-circle-line:before{background-image:url(../icons/system/add-circle-line.svg)}.fr-fi-add-line:before{background-image:url(../icons/system/add-line.svg)}.fr-fi-arrow-down-line:before{background-image:url(../icons/system/arrow-down-line.svg)}.fr-fi-arrow-down-s-line:before{background-image:url(../icons/system/arrow-down-s-line.svg)}.fr-fi-arrow-go-back-fill:before{background-image:url(../icons/system/arrow-go-back-fill.svg)}.fr-fi-arrow-go-back-line:before{background-image:url(../icons/system/arrow-go-back-line.svg)}.fr-fi-arrow-left-line:before{background-image:url(../icons/system/arrow-left-line.svg)}.fr-fi-arrow-left-s-line:before{background-image:url(../icons/system/arrow-left-s-line.svg)}.fr-fi-arrow-right-line:before{background-image:url(../icons/system/arrow-right-line.svg)}.fr-fi-arrow-right-s-line:before{background-image:url(../icons/system/arrow-right-s-line.svg)}.fr-fi-arrow-right-up-line:before{background-image:url(../icons/system/arrow-right-up-line.svg)}.fr-fi-arrow-up-fill:before{background-image:url(../icons/system/arrow-up-fill.svg)}.fr-fi-arrow-up-line:before{background-image:url(../icons/system/arrow-up-line.svg)}.fr-fi-arrow-up-s-line:before{background-image:url(../icons/system/arrow-up-s-line.svg)}.fr-fi-check-line:before{background-image:url(../icons/system/check-line.svg)}.fr-fi-checkbox-circle-line:before{background-image:url(../icons/system/checkbox-circle-line.svg)}.fr-fi-close-line:before{background-image:url(../icons/system/close-line.svg)}.fr-fi-download-line:before{background-image:url(../icons/system/download-line.svg)}.fr-fi-error-warning-fill:before{background-image:url(../icons/system/error-warning-fill.svg)}.fr-fi-error-warning-line:before{background-image:url(../icons/system/error-warning-line.svg)}.fr-fi-external-link-line:before{background-image:url(../icons/system/external-link-line.svg)}.fr-fi-eye-fill:before{background-image:url(../icons/system/eye-fill.svg)}.fr-fi-eye-line:before{background-image:url(../icons/system/eye-line.svg)}.fr-fi-eye-off-fill:before{background-image:url(../icons/system/eye-off-fill.svg)}.fr-fi-eye-off-line:before{background-image:url(../icons/system/eye-off-line.svg)}.fr-fi-filter-fill:before{background-image:url(../icons/system/filter-fill.svg)}.fr-fi-filter-line:before{background-image:url(../icons/system/filter-line.svg)}.fr-fi-arrow-left-s-first-line:before{background-image:url(../icons/system/fr--arrow-left-s-first-line.svg)}.fr-fi-arrow-left-s-line-double:before{background-image:url(../icons/system/fr--arrow-left-s-line-double.svg)}.fr-fi-arrow-right-s-last-line:before{background-image:url(../icons/system/fr--arrow-right-s-last-line.svg)}.fr-fi-arrow-right-s-line-double:before{background-image:url(../icons/system/fr--arrow-right-s-line-double.svg)}.fr-fi-error-fill:before{background-image:url(../icons/system/fr--error-fill.svg)}.fr-fi-error-line:before{background-image:url(../icons/system/fr--error-line.svg)}.fr-fi-info-fill:before{background-image:url(../icons/system/fr--info-fill.svg)}.fr-fi-info-line:before{background-image:url(../icons/system/fr--info-line.svg)}.fr-fi-success-fill:before{background-image:url(../icons/system/fr--success-fill.svg)}.fr-fi-success-line:before{background-image:url(../icons/system/fr--success-line.svg)}.fr-fi-theme-fill:before{background-image:url(../icons/system/fr--theme-fill.svg)}.fr-fi-warning-fill:before{background-image:url(../icons/system/fr--warning-fill.svg)}.fr-fi-warning-line:before{background-image:url(../icons/system/fr--warning-line.svg)}.fr-fi-information-fill:before{background-image:url(../icons/system/information-fill.svg)}.fr-fi-information-line:before{background-image:url(../icons/system/information-line.svg)}.fr-fi-lock-fill:before{background-image:url(../icons/system/lock-fill.svg)}.fr-fi-lock-line:before{background-image:url(../icons/system/lock-line.svg)}.fr-fi-logout-box-r-fill:before{background-image:url(../icons/system/logout-box-r-fill.svg)}.fr-fi-logout-box-r-line:before{background-image:url(../icons/system/logout-box-r-line.svg)}.fr-fi-menu-2-fill:before{background-image:url(../icons/system/menu-2-fill.svg)}.fr-fi-menu-fill:before{background-image:url(../icons/system/menu-fill.svg)}.fr-fi-question-fill:before{background-image:url(../icons/system/question-fill.svg)}.fr-fi-question-line:before{background-image:url(../icons/system/question-line.svg)}.fr-fi-refresh-fill:before{background-image:url(../icons/system/refresh-fill.svg)}.fr-fi-refresh-line:before{background-image:url(../icons/system/refresh-line.svg)}.fr-fi-search-fill:before{background-image:url(../icons/system/search-fill.svg)}.fr-fi-search-line:before{background-image:url(../icons/system/search-line.svg)}.fr-fi-subtract-line:before{background-image:url(../icons/system/subtract-line.svg)}.fr-fi-timer-fill:before{background-image:url(../icons/system/timer-fill.svg)}.fr-fi-timer-line:before{background-image:url(../icons/system/timer-line.svg)}.fr-fi-upload-2-fill:before{background-image:url(../icons/system/upload-2-fill.svg)}.fr-fi-upload-2-line:before{background-image:url(../icons/system/upload-2-line.svg)}.fr-fi-zoom-in-fill:before{background-image:url(../icons/system/zoom-in-fill.svg)}.fr-fi-zoom-in-line:before{background-image:url(../icons/system/zoom-in-line.svg)}.fr-fi-zoom-out-fill:before{background-image:url(../icons/system/zoom-out-fill.svg)}.fr-fi-zoom-out-line:before{background-image:url(../icons/system/zoom-out-line.svg)}.fr-fi-delete-line:after,.fr-fi-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-fi-delete-fill:after,.fr-fi-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-delete-line:after,.fr-icon-delete-line:before{background-image:url(../icons/system/delete-bin-line.svg)}.fr-icon-delete-fill:after,.fr-icon-delete-fill:before{background-image:url(../icons/system/delete-bin-fill.svg)}.fr-icon-account-circle-fill:after,.fr-icon-account-circle-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-circle-line:after,.fr-icon-account-circle-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-pin-circle-fill:after,.fr-icon-account-pin-circle-fill:before{background-image:url(../icons/user/account-pin-circle-fill.svg)}.fr-icon-account-pin-circle-line:after,.fr-icon-account-pin-circle-line:before{background-image:url(../icons/user/account-pin-circle-line.svg)}.fr-icon-admin-fill:after,.fr-icon-admin-fill:before{background-image:url(../icons/user/admin-fill.svg)}.fr-icon-admin-line:after,.fr-icon-admin-line:before{background-image:url(../icons/user/admin-line.svg)}.fr-icon-group-fill:after,.fr-icon-group-fill:before{background-image:url(../icons/user/group-fill.svg)}.fr-icon-group-line:after,.fr-icon-group-line:before{background-image:url(../icons/user/group-line.svg)}.fr-icon-parent-fill:after,.fr-icon-parent-fill:before{background-image:url(../icons/user/parent-fill.svg)}.fr-icon-parent-line:after,.fr-icon-parent-line:before{background-image:url(../icons/user/parent-line.svg)}.fr-icon-team-fill:after,.fr-icon-team-fill:before{background-image:url(../icons/user/team-fill.svg)}.fr-icon-team-line:after,.fr-icon-team-line:before{background-image:url(../icons/user/team-line.svg)}.fr-icon-user-add-fill:after,.fr-icon-user-add-fill:before{background-image:url(../icons/user/user-add-fill.svg)}.fr-icon-user-add-line:after,.fr-icon-user-add-line:before{background-image:url(../icons/user/user-add-line.svg)}.fr-icon-user-fill:after,.fr-icon-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-icon-user-heart-fill:after,.fr-icon-user-heart-fill:before{background-image:url(../icons/user/user-heart-fill.svg)}.fr-icon-user-heart-line:after,.fr-icon-user-heart-line:before{background-image:url(../icons/user/user-heart-line.svg)}.fr-icon-user-line:after,.fr-icon-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-icon-user-search-fill:after,.fr-icon-user-search-fill:before{background-image:url(../icons/user/user-search-fill.svg)}.fr-icon-user-search-line:after,.fr-icon-user-search-line:before{background-image:url(../icons/user/user-search-line.svg)}.fr-icon-user-setting-fill:after,.fr-icon-user-setting-fill:before{background-image:url(../icons/user/user-setting-fill.svg)}.fr-icon-user-setting-line:after,.fr-icon-user-setting-line:before{background-image:url(../icons/user/user-setting-line.svg)}.fr-icon-user-star-fill:after,.fr-icon-user-star-fill:before{background-image:url(../icons/user/user-star-fill.svg)}.fr-icon-user-star-line:after,.fr-icon-user-star-line:before{background-image:url(../icons/user/user-star-line.svg)}.fr-fi-user-fill:before{background-image:url(../icons/user/user-fill.svg)}.fr-fi-user-line:before{background-image:url(../icons/user/user-line.svg)}.fr-fi-account-line:after,.fr-fi-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-fi-account-fill:after,.fr-fi-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-account-line:after,.fr-icon-account-line:before{background-image:url(../icons/user/account-circle-line.svg)}.fr-icon-account-fill:after,.fr-icon-account-fill:before{background-image:url(../icons/user/account-circle-fill.svg)}.fr-icon-cloudy-2-fill:after,.fr-icon-cloudy-2-fill:before{background-image:url(../icons/weather/cloudy-2-fill.svg)}.fr-icon-cloudy-2-line:after,.fr-icon-cloudy-2-line:before{background-image:url(../icons/weather/cloudy-2-line.svg)}.fr-icon-fire-fill:after,.fr-icon-fire-fill:before{background-image:url(../icons/weather/fire-fill.svg)}.fr-icon-fire-line:after,.fr-icon-fire-line:before{background-image:url(../icons/weather/fire-line.svg)}.fr-icon-flashlight-fill:after,.fr-icon-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-icon-flashlight-line:after,.fr-icon-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}.fr-icon-flood-fill:after,.fr-icon-flood-fill:before{background-image:url(../icons/weather/flood-fill.svg)}.fr-icon-flood-line:after,.fr-icon-flood-line:before{background-image:url(../icons/weather/flood-line.svg)}.fr-icon-avalanches-fill:after,.fr-icon-avalanches-fill:before{background-image:url(../icons/weather/fr--avalanches-fill.svg)}.fr-icon-submersion-fill:after,.fr-icon-submersion-fill:before{background-image:url(../icons/weather/fr--submersion-fill.svg)}.fr-icon-heavy-showers-fill:after,.fr-icon-heavy-showers-fill:before{background-image:url(../icons/weather/heavy-showers-fill.svg)}.fr-icon-heavy-showers-line:after,.fr-icon-heavy-showers-line:before{background-image:url(../icons/weather/heavy-showers-line.svg)}.fr-icon-moon-fill:after,.fr-icon-moon-fill:before{background-image:url(../icons/weather/moon-fill.svg)}.fr-icon-moon-line:after,.fr-icon-moon-line:before{background-image:url(../icons/weather/moon-line.svg)}.fr-icon-snowy-fill:after,.fr-icon-snowy-fill:before{background-image:url(../icons/weather/snowy-fill.svg)}.fr-icon-snowy-line:after,.fr-icon-snowy-line:before{background-image:url(../icons/weather/snowy-line.svg)}.fr-icon-sparkling-2-fill:after,.fr-icon-sparkling-2-fill:before{background-image:url(../icons/weather/sparkling-2-fill.svg)}.fr-icon-sparkling-2-line:after,.fr-icon-sparkling-2-line:before{background-image:url(../icons/weather/sparkling-2-line.svg)}.fr-icon-sun-fill:after,.fr-icon-sun-fill:before{background-image:url(../icons/weather/sun-fill.svg)}.fr-icon-sun-line:after,.fr-icon-sun-line:before{background-image:url(../icons/weather/sun-line.svg)}.fr-icon-temp-cold-fill:after,.fr-icon-temp-cold-fill:before{background-image:url(../icons/weather/temp-cold-fill.svg)}.fr-icon-temp-cold-line:after,.fr-icon-temp-cold-line:before{background-image:url(../icons/weather/temp-cold-line.svg)}.fr-icon-thunderstorms-fill:after,.fr-icon-thunderstorms-fill:before{background-image:url(../icons/weather/thunderstorms-fill.svg)}.fr-icon-thunderstorms-line:after,.fr-icon-thunderstorms-line:before{background-image:url(../icons/weather/thunderstorms-line.svg)}.fr-icon-tornado-fill:after,.fr-icon-tornado-fill:before{background-image:url(../icons/weather/tornado-fill.svg)}.fr-icon-tornado-line:after,.fr-icon-tornado-line:before{background-image:url(../icons/weather/tornado-line.svg)}.fr-icon-typhoon-fill:after,.fr-icon-typhoon-fill:before{background-image:url(../icons/weather/typhoon-fill.svg)}.fr-icon-typhoon-line:after,.fr-icon-typhoon-line:before{background-image:url(../icons/weather/typhoon-line.svg)}.fr-icon-windy-fill:after,.fr-icon-windy-fill:before{background-image:url(../icons/weather/windy-fill.svg)}.fr-icon-windy-line:after,.fr-icon-windy-line:before{background-image:url(../icons/weather/windy-line.svg)}.fr-fi-flashlight-fill:before{background-image:url(../icons/weather/flashlight-fill.svg)}.fr-fi-flashlight-line:before{background-image:url(../icons/weather/flashlight-line.svg)}}@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file diff --git a/dsfr/static/dsfr/dist/utility/utility.print.min.css b/dsfr/static/dsfr/dist/utility/utility.print.min.css index b0f27a446..bd4451886 100644 --- a/dsfr/static/dsfr/dist/utility/utility.print.min.css +++ b/dsfr/static/dsfr/dist/utility/utility.print.min.css @@ -1,3 +1,3 @@ /*! - * DSFR v1.12.1 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) - */@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file + * DSFR v1.13.0 | SPDX-License-Identifier: MIT | License-Filename: LICENSE.md | restricted use (see terms and conditions) + */@media print{.fr-background-default--grey{background-color:#fff!important}.fr-background-default--grey:hover{background-color:#f6f6f6!important}.fr-background-default--grey:active{background-color:#ededed!important}.fr-background-alt--grey{background-color:#f6f6f6!important}.fr-background-alt--grey:hover{background-color:#dfdfdf!important}.fr-background-alt--grey:active{background-color:#cfcfcf!important}.fr-background-alt--blue-france{background-color:#f5f5fe!important}.fr-background-alt--blue-france:hover{background-color:#dcdcfc!important}.fr-background-alt--blue-france:active{background-color:#cbcbfa!important}.fr-background-alt--red-marianne{background-color:#fef4f4!important}.fr-background-alt--red-marianne:hover{background-color:#fcd7d7!important}.fr-background-alt--red-marianne:active{background-color:#fac4c4!important}.fr-background-alt--green-tilleul-verveine{background-color:#fef7da!important}.fr-background-alt--green-tilleul-verveine:hover{background-color:#fce552!important}.fr-background-alt--green-tilleul-verveine:active{background-color:#ebd54c!important}.fr-background-alt--green-bourgeon{background-color:#e6feda!important}.fr-background-alt--green-bourgeon:hover{background-color:#a7fc62!important}.fr-background-alt--green-bourgeon:active{background-color:#98ed4d!important}.fr-background-alt--green-emeraude{background-color:#e3fdeb!important}.fr-background-alt--green-emeraude:hover{background-color:#94f9b9!important}.fr-background-alt--green-emeraude:active{background-color:#6df1a3!important}.fr-background-alt--green-menthe{background-color:#dffdf7!important}.fr-background-alt--green-menthe:hover{background-color:#84f9e7!important}.fr-background-alt--green-menthe:active{background-color:#70ebd8!important}.fr-background-alt--green-archipel{background-color:#e5fbfd!important}.fr-background-alt--green-archipel:hover{background-color:#99f2f8!important}.fr-background-alt--green-archipel:active{background-color:#73e9f0!important}.fr-background-alt--blue-ecume{background-color:#f4f6fe!important}.fr-background-alt--blue-ecume:hover{background-color:#d7dffb!important}.fr-background-alt--blue-ecume:active{background-color:#c3cffa!important}.fr-background-alt--blue-cumulus{background-color:#f3f6fe!important}.fr-background-alt--blue-cumulus:hover{background-color:#d3dffc!important}.fr-background-alt--blue-cumulus:active{background-color:#bed0fa!important}.fr-background-alt--purple-glycine{background-color:#fef3fd!important}.fr-background-alt--purple-glycine:hover{background-color:#fcd4f8!important}.fr-background-alt--purple-glycine:active{background-color:#fabff5!important}.fr-background-alt--pink-macaron{background-color:#fef4f2!important}.fr-background-alt--pink-macaron:hover{background-color:#fcd8d0!important}.fr-background-alt--pink-macaron:active{background-color:#fac5b8!important}.fr-background-alt--pink-tuile{background-color:#fef4f3!important}.fr-background-alt--pink-tuile:hover{background-color:#fcd7d3!important}.fr-background-alt--pink-tuile:active{background-color:#fac4be!important}.fr-background-alt--yellow-tournesol{background-color:#fef6e3!important}.fr-background-alt--yellow-tournesol:hover{background-color:#fce086!important}.fr-background-alt--yellow-tournesol:active{background-color:#f5d24b!important}.fr-background-alt--yellow-moutarde{background-color:#fef5e8!important}.fr-background-alt--yellow-moutarde:hover{background-color:#fcdca3!important}.fr-background-alt--yellow-moutarde:active{background-color:#fbcd64!important}.fr-background-alt--orange-terre-battue{background-color:#fef4f2!important}.fr-background-alt--orange-terre-battue:hover{background-color:#fcd8d0!important}.fr-background-alt--orange-terre-battue:active{background-color:#fac5b8!important}.fr-background-alt--brown-cafe-creme{background-color:#fbf6ed!important}.fr-background-alt--brown-cafe-creme:hover{background-color:#f2deb6!important}.fr-background-alt--brown-cafe-creme:active{background-color:#eacf91!important}.fr-background-alt--brown-caramel{background-color:#fbf5f2!important}.fr-background-alt--brown-caramel:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-caramel:active{background-color:#ecc9b5!important}.fr-background-alt--brown-opera{background-color:#fbf5f2!important}.fr-background-alt--brown-opera:hover{background-color:#f1dbcf!important}.fr-background-alt--brown-opera:active{background-color:#ecc9b5!important}.fr-background-alt--beige-gris-galet{background-color:#f9f6f2!important}.fr-background-alt--beige-gris-galet:hover{background-color:#eadecd!important}.fr-background-alt--beige-gris-galet:active{background-color:#e1ceb1!important}.fr-background-contrast--grey{background-color:#eee!important}.fr-background-contrast--grey:hover{background-color:#d2d2d2!important}.fr-background-contrast--grey:active{background-color:#c1c1c1!important}.fr-background-contrast--blue-france{background-color:#ececfe!important}.fr-background-contrast--blue-france:hover{background-color:#cecefc!important}.fr-background-contrast--blue-france:active{background-color:#bbbbfc!important}.fr-background-contrast--red-marianne{background-color:#fee9e9!important}.fr-background-contrast--red-marianne:hover{background-color:#fdc5c5!important}.fr-background-contrast--red-marianne:active{background-color:#fcafaf!important}.fr-background-contrast--green-tilleul-verveine{background-color:#fceeac!important}.fr-background-contrast--green-tilleul-verveine:hover{background-color:#e8d45c!important}.fr-background-contrast--green-tilleul-verveine:active{background-color:#d4c254!important}.fr-background-contrast--green-bourgeon{background-color:#c9fcac!important}.fr-background-contrast--green-bourgeon:hover{background-color:#9ae95d!important}.fr-background-contrast--green-bourgeon:active{background-color:#8dd555!important}.fr-background-contrast--green-emeraude{background-color:#c3fad5!important}.fr-background-contrast--green-emeraude:hover{background-color:#77eda5!important}.fr-background-contrast--green-emeraude:active{background-color:#6dd897!important}.fr-background-contrast--green-menthe{background-color:#bafaee!important}.fr-background-contrast--green-menthe:hover{background-color:#79e7d5!important}.fr-background-contrast--green-menthe:active{background-color:#6fd3c3!important}.fr-background-contrast--green-archipel{background-color:#c7f6fc!important}.fr-background-contrast--green-archipel:hover{background-color:#64ecf8!important}.fr-background-contrast--green-archipel:active{background-color:#5bd8e3!important}.fr-background-contrast--blue-ecume{background-color:#e9edfe!important}.fr-background-contrast--blue-ecume:hover{background-color:#c5d0fc!important}.fr-background-contrast--blue-ecume:active{background-color:#adbffc!important}.fr-background-contrast--blue-cumulus{background-color:#e6eefe!important}.fr-background-contrast--blue-cumulus:hover{background-color:#bcd3fc!important}.fr-background-contrast--blue-cumulus:active{background-color:#9fc3fc!important}.fr-background-contrast--purple-glycine{background-color:#fee7fc!important}.fr-background-contrast--purple-glycine:hover{background-color:#fdc0f8!important}.fr-background-contrast--purple-glycine:active{background-color:#fca8f6!important}.fr-background-contrast--pink-macaron{background-color:#fee9e6!important}.fr-background-contrast--pink-macaron:hover{background-color:#fdc6bd!important}.fr-background-contrast--pink-macaron:active{background-color:#fcb0a2!important}.fr-background-contrast--pink-tuile{background-color:#fee9e7!important}.fr-background-contrast--pink-tuile:hover{background-color:#fdc6c0!important}.fr-background-contrast--pink-tuile:active{background-color:#fcb0a7!important}.fr-background-contrast--yellow-tournesol{background-color:#feecc2!important}.fr-background-contrast--yellow-tournesol:hover{background-color:#fbd335!important}.fr-background-contrast--yellow-tournesol:active{background-color:#e6c130!important}.fr-background-contrast--yellow-moutarde{background-color:#feebd0!important}.fr-background-contrast--yellow-moutarde:hover{background-color:#fdcd6d!important}.fr-background-contrast--yellow-moutarde:active{background-color:#f4be30!important}.fr-background-contrast--orange-terre-battue{background-color:#fee9e5!important}.fr-background-contrast--orange-terre-battue:hover{background-color:#fdc6ba!important}.fr-background-contrast--orange-terre-battue:active{background-color:#fcb09e!important}.fr-background-contrast--brown-cafe-creme{background-color:#f7ecdb!important}.fr-background-contrast--brown-cafe-creme:hover{background-color:#edce94!important}.fr-background-contrast--brown-cafe-creme:active{background-color:#dabd84!important}.fr-background-contrast--brown-caramel{background-color:#f7ebe5!important}.fr-background-contrast--brown-caramel:hover{background-color:#eccbb9!important}.fr-background-contrast--brown-caramel:active{background-color:#e6b79a!important}.fr-background-contrast--brown-opera{background-color:#f7ece4!important}.fr-background-contrast--brown-opera:hover{background-color:#eccdb3!important}.fr-background-contrast--brown-opera:active{background-color:#e6ba90!important}.fr-background-contrast--beige-gris-galet{background-color:#f3ede5!important}.fr-background-contrast--beige-gris-galet:hover{background-color:#e1d0b5!important}.fr-background-contrast--beige-gris-galet:active{background-color:#d1bea2!important}.fr-background-contrast--info{background-color:#e8edff!important}.fr-background-contrast--info:hover{background-color:#c2d1ff!important}.fr-background-contrast--info:active{background-color:#a9bfff!important}.fr-background-contrast--success{background-color:#b8fec9!important}.fr-background-contrast--success:hover{background-color:#46fd89!important}.fr-background-contrast--success:active{background-color:#34eb7b!important}.fr-background-contrast--warning{background-color:#ffe9e6!important}.fr-background-contrast--warning:hover{background-color:#ffc6bd!important}.fr-background-contrast--warning:active{background-color:#ffb0a2!important}.fr-background-contrast--error{background-color:#ffe9e9!important}.fr-background-contrast--error:hover{background-color:#ffc5c5!important}.fr-background-contrast--error:active{background-color:#ffafaf!important}.fr-background-flat--grey{background-color:#3a3a3a!important}.fr-background-flat--blue-france{background-color:#000091!important}.fr-background-flat--red-marianne{background-color:#c9191e!important}.fr-background-flat--green-tilleul-verveine{background-color:#66673d!important}.fr-background-flat--green-bourgeon{background-color:#447049!important}.fr-background-flat--green-emeraude{background-color:#297254!important}.fr-background-flat--green-menthe{background-color:#37635f!important}.fr-background-flat--green-archipel{background-color:#006a6f!important}.fr-background-flat--blue-ecume{background-color:#2f4077!important}.fr-background-flat--blue-cumulus{background-color:#3558a2!important}.fr-background-flat--purple-glycine{background-color:#6e445a!important}.fr-background-flat--pink-macaron{background-color:#8d533e!important}.fr-background-flat--pink-tuile{background-color:#a94645!important}.fr-background-flat--yellow-tournesol{background-color:#716043!important}.fr-background-flat--yellow-moutarde{background-color:#695240!important}.fr-background-flat--orange-terre-battue{background-color:#755348!important}.fr-background-flat--brown-cafe-creme{background-color:#685c48!important}.fr-background-flat--brown-caramel{background-color:#845d48!important}.fr-background-flat--brown-opera{background-color:#745b47!important}.fr-background-flat--beige-gris-galet{background-color:#6a6156!important}.fr-background-flat--info{background-color:#0063cb!important}.fr-background-flat--success{background-color:#18753c!important}.fr-background-flat--warning{background-color:#b34000!important}.fr-background-flat--error{background-color:#ce0500!important}.fr-background-action-high--grey{background-color:#3a3a3a!important}.fr-background-action-high--grey:hover{background-color:#616161!important}.fr-background-action-high--grey:active{background-color:#777!important}.fr-background-action-high--blue-france{background-color:#000091!important}.fr-background-action-high--blue-france:hover{background-color:#1212ff!important}.fr-background-action-high--blue-france:active{background-color:#2323ff!important}.fr-background-action-high--red-marianne{background-color:#c9191e!important}.fr-background-action-high--red-marianne:hover{background-color:#f93f42!important}.fr-background-action-high--red-marianne:active{background-color:#f95a5c!important}.fr-background-action-high--green-tilleul-verveine{background-color:#66673d!important}.fr-background-action-high--green-tilleul-verveine:hover{background-color:#929359!important}.fr-background-action-high--green-tilleul-verveine:active{background-color:#a7a967!important}.fr-background-action-high--green-bourgeon{background-color:#447049!important}.fr-background-action-high--green-bourgeon:hover{background-color:#639f6a!important}.fr-background-action-high--green-bourgeon:active{background-color:#72b77a!important}.fr-background-action-high--green-emeraude{background-color:#297254!important}.fr-background-action-high--green-emeraude:hover{background-color:#3ea47a!important}.fr-background-action-high--green-emeraude:active{background-color:#49bc8d!important}.fr-background-action-high--green-menthe{background-color:#37635f!important}.fr-background-action-high--green-menthe:hover{background-color:#53918c!important}.fr-background-action-high--green-menthe:active{background-color:#62a9a2!important}.fr-background-action-high--green-archipel{background-color:#006a6f!important}.fr-background-action-high--green-archipel:hover{background-color:#009fa7!important}.fr-background-action-high--green-archipel:active{background-color:#00bbc3!important}.fr-background-action-high--blue-ecume{background-color:#2f4077!important}.fr-background-action-high--blue-ecume:hover{background-color:#4e68bb!important}.fr-background-action-high--blue-ecume:active{background-color:#667dcf!important}.fr-background-action-high--blue-cumulus{background-color:#3558a2!important}.fr-background-action-high--blue-cumulus:hover{background-color:#5982e0!important}.fr-background-action-high--blue-cumulus:active{background-color:#7996e6!important}.fr-background-action-high--purple-glycine{background-color:#6e445a!important}.fr-background-action-high--purple-glycine:hover{background-color:#a66989!important}.fr-background-action-high--purple-glycine:active{background-color:#bb7f9e!important}.fr-background-action-high--pink-macaron{background-color:#8d533e!important}.fr-background-action-high--pink-macaron:hover{background-color:#ca795c!important}.fr-background-action-high--pink-macaron:active{background-color:#e08e73!important}.fr-background-action-high--pink-tuile{background-color:#a94645!important}.fr-background-action-high--pink-tuile:hover{background-color:#d5706f!important}.fr-background-action-high--pink-tuile:active{background-color:#da8a89!important}.fr-background-action-high--yellow-tournesol{background-color:#716043!important}.fr-background-action-high--yellow-tournesol:hover{background-color:#a28a62!important}.fr-background-action-high--yellow-tournesol:active{background-color:#ba9f72!important}.fr-background-action-high--yellow-moutarde{background-color:#695240!important}.fr-background-action-high--yellow-moutarde:hover{background-color:#9b7b61!important}.fr-background-action-high--yellow-moutarde:active{background-color:#b58f72!important}.fr-background-action-high--orange-terre-battue{background-color:#755348!important}.fr-background-action-high--orange-terre-battue:hover{background-color:#ab7b6b!important}.fr-background-action-high--orange-terre-battue:active{background-color:#c68f7d!important}.fr-background-action-high--brown-cafe-creme{background-color:#685c48!important}.fr-background-action-high--brown-cafe-creme:hover{background-color:#97866a!important}.fr-background-action-high--brown-cafe-creme:active{background-color:#ae9b7b!important}.fr-background-action-high--brown-caramel{background-color:#845d48!important}.fr-background-action-high--brown-caramel:hover{background-color:#bb8568!important}.fr-background-action-high--brown-caramel:active{background-color:#d69978!important}.fr-background-action-high--brown-opera{background-color:#745b47!important}.fr-background-action-high--brown-opera:hover{background-color:#a78468!important}.fr-background-action-high--brown-opera:active{background-color:#c09979!important}.fr-background-action-high--beige-gris-galet{background-color:#6a6156!important}.fr-background-action-high--beige-gris-galet:hover{background-color:#988b7c!important}.fr-background-action-high--beige-gris-galet:active{background-color:#afa08f!important}.fr-background-action-high--info{background-color:#0063cb!important}.fr-background-action-high--info:hover{background-color:#3b87ff!important}.fr-background-action-high--info:active{background-color:#6798ff!important}.fr-background-action-high--success{background-color:#18753c!important}.fr-background-action-high--success:hover{background-color:#27a959!important}.fr-background-action-high--success:active{background-color:#2fc368!important}.fr-background-action-high--warning{background-color:#b34000!important}.fr-background-action-high--warning:hover{background-color:#ff6218!important}.fr-background-action-high--warning:active{background-color:#ff7a55!important}.fr-background-action-high--error{background-color:#ce0500!important}.fr-background-action-high--error:hover{background-color:#ff2725!important}.fr-background-action-high--error:active{background-color:#ff4140!important}.fr-background-action-low--blue-france{background-color:#e3e3fd!important}.fr-background-action-low--blue-france:hover{background-color:#c1c1fb!important}.fr-background-action-low--blue-france:active{background-color:#adadf9!important}.fr-background-action-low--red-marianne{background-color:#fddede!important}.fr-background-action-low--red-marianne:hover{background-color:#fbb6b6!important}.fr-background-action-low--red-marianne:active{background-color:#fa9e9e!important}.fr-background-action-low--green-tilleul-verveine{background-color:#fbe769!important}.fr-background-action-low--green-tilleul-verveine:hover{background-color:#d7c655!important}.fr-background-action-low--green-tilleul-verveine:active{background-color:#c2b24c!important}.fr-background-action-low--green-bourgeon{background-color:#a9fb68!important}.fr-background-action-low--green-bourgeon:hover{background-color:#8ed654!important}.fr-background-action-low--green-bourgeon:active{background-color:#7fc04b!important}.fr-background-action-low--green-emeraude{background-color:#9ef9be!important}.fr-background-action-low--green-emeraude:hover{background-color:#69df97!important}.fr-background-action-low--green-emeraude:active{background-color:#5ec988!important}.fr-background-action-low--green-menthe{background-color:#8bf8e7!important}.fr-background-action-low--green-menthe:hover{background-color:#6ed5c5!important}.fr-background-action-low--green-menthe:active{background-color:#62bfb1!important}.fr-background-action-low--green-archipel{background-color:#a6f2fa!important}.fr-background-action-low--green-archipel:hover{background-color:#62dbe5!important}.fr-background-action-low--green-archipel:active{background-color:#58c5cf!important}.fr-background-action-low--blue-ecume{background-color:#dee5fd!important}.fr-background-action-low--blue-ecume:hover{background-color:#b4c5fb!important}.fr-background-action-low--blue-ecume:active{background-color:#99b3f9!important}.fr-background-action-low--blue-cumulus{background-color:#dae6fd!important}.fr-background-action-low--blue-cumulus:hover{background-color:#a9c8fb!important}.fr-background-action-low--blue-cumulus:active{background-color:#8ab8f9!important}.fr-background-action-low--purple-glycine{background-color:#fddbfa!important}.fr-background-action-low--purple-glycine:hover{background-color:#fbaff5!important}.fr-background-action-low--purple-glycine:active{background-color:#fa96f2!important}.fr-background-action-low--pink-macaron{background-color:#fddfda!important}.fr-background-action-low--pink-macaron:hover{background-color:#fbb8ab!important}.fr-background-action-low--pink-macaron:active{background-color:#faa18d!important}.fr-background-action-low--pink-tuile{background-color:#fddfdb!important}.fr-background-action-low--pink-tuile:hover{background-color:#fbb8ad!important}.fr-background-action-low--pink-tuile:active{background-color:#faa191!important}.fr-background-action-low--yellow-tournesol{background-color:#fde39c!important}.fr-background-action-low--yellow-tournesol:hover{background-color:#e9c53b!important}.fr-background-action-low--yellow-tournesol:active{background-color:#d3b235!important}.fr-background-action-low--yellow-moutarde{background-color:#fde2b5!important}.fr-background-action-low--yellow-moutarde:hover{background-color:#f6c43c!important}.fr-background-action-low--yellow-moutarde:active{background-color:#dfb135!important}.fr-background-action-low--orange-terre-battue{background-color:#fddfd8!important}.fr-background-action-low--orange-terre-battue:hover{background-color:#fbb8a5!important}.fr-background-action-low--orange-terre-battue:active{background-color:#faa184!important}.fr-background-action-low--brown-cafe-creme{background-color:#f4e3c7!important}.fr-background-action-low--brown-cafe-creme:hover{background-color:#e1c386!important}.fr-background-action-low--brown-cafe-creme:active{background-color:#ccb078!important}.fr-background-action-low--brown-caramel{background-color:#f3e2d9!important}.fr-background-action-low--brown-caramel:hover{background-color:#e7bea6!important}.fr-background-action-low--brown-caramel:active{background-color:#e1a982!important}.fr-background-action-low--brown-opera{background-color:#f3e2d7!important}.fr-background-action-low--brown-opera:hover{background-color:#e7bfa0!important}.fr-background-action-low--brown-opera:active{background-color:#deaa7e!important}.fr-background-action-low--beige-gris-galet{background-color:#eee4d9!important}.fr-background-action-low--beige-gris-galet:hover{background-color:#dbc3a4!important}.fr-background-action-low--beige-gris-galet:active{background-color:#c6b094!important}.fr-text-default--grey{color:#3a3a3a!important}.fr-text-default--info{color:#0063cb!important}.fr-text-default--success{color:#18753c!important}.fr-text-default--warning{color:#b34000!important}.fr-text-default--error{color:#ce0500!important}.fr-text-title--grey{color:#161616!important}.fr-text-title--blue-france{color:#000091!important}.fr-text-title--red-marianne{color:#c9191e!important}.fr-text-label--grey{color:#161616!important}.fr-text-label--blue-france{color:#000091!important}.fr-text-label--red-marianne{color:#c9191e!important}.fr-text-label--green-tilleul-verveine{color:#66673d!important}.fr-text-label--green-bourgeon{color:#447049!important}.fr-text-label--green-emeraude{color:#297254!important}.fr-text-label--green-menthe{color:#37635f!important}.fr-text-label--green-archipel{color:#006a6f!important}.fr-text-label--blue-ecume{color:#2f4077!important}.fr-text-label--blue-cumulus{color:#3558a2!important}.fr-text-label--purple-glycine{color:#6e445a!important}.fr-text-label--pink-macaron{color:#8d533e!important}.fr-text-label--pink-tuile{color:#a94645!important}.fr-text-label--yellow-tournesol{color:#716043!important}.fr-text-label--yellow-moutarde{color:#695240!important}.fr-text-label--orange-terre-battue{color:#755348!important}.fr-text-label--brown-cafe-creme{color:#685c48!important}.fr-text-label--brown-caramel{color:#845d48!important}.fr-text-label--brown-opera{color:#745b47!important}.fr-text-label--beige-gris-galet{color:#6a6156!important}.fr-text-mention--grey{color:#666!important}.fr-text-inverted--grey{color:#fff!important}.fr-text-inverted--blue-france{color:#f5f5fe!important}.fr-text-inverted--red-marianne{color:#fef4f4!important}.fr-text-inverted--info{color:#f4f6ff!important}.fr-text-inverted--success{color:#dffee6!important}.fr-text-inverted--warning{color:#fff4f3!important}.fr-text-inverted--error{color:#fff4f4!important}.fr-text-inverted--green-tilleul-verveine{color:#fef7da!important}.fr-text-inverted--green-bourgeon{color:#e6feda!important}.fr-text-inverted--green-emeraude{color:#e3fdeb!important}.fr-text-inverted--green-menthe{color:#dffdf7!important}.fr-text-inverted--green-archipel{color:#e5fbfd!important}.fr-text-inverted--blue-ecume{color:#f4f6fe!important}.fr-text-inverted--blue-cumulus{color:#f3f6fe!important}.fr-text-inverted--purple-glycine{color:#fef3fd!important}.fr-text-inverted--pink-macaron{color:#fef4f2!important}.fr-text-inverted--pink-tuile{color:#fef4f3!important}.fr-text-inverted--yellow-tournesol{color:#fef6e3!important}.fr-text-inverted--yellow-moutarde{color:#fef5e8!important}.fr-text-inverted--orange-terre-battue{color:#fef4f2!important}.fr-text-inverted--brown-cafe-creme{color:#fbf6ed!important}.fr-text-inverted--brown-caramel,.fr-text-inverted--brown-opera{color:#fbf5f2!important}.fr-text-inverted--beige-gris-galet{color:#f9f6f2!important}.fr-text-action-high--grey{color:#161616!important}.fr-text-action-high--blue-france{color:#000091!important}.fr-text-action-high--red-marianne{color:#c9191e!important}.fr-text-action-high--green-tilleul-verveine{color:#66673d!important}.fr-text-action-high--green-bourgeon{color:#447049!important}.fr-text-action-high--green-emeraude{color:#297254!important}.fr-text-action-high--green-menthe{color:#37635f!important}.fr-text-action-high--green-archipel{color:#006a6f!important}.fr-text-action-high--blue-ecume{color:#2f4077!important}.fr-text-action-high--blue-cumulus{color:#3558a2!important}.fr-text-action-high--purple-glycine{color:#6e445a!important}.fr-text-action-high--pink-macaron{color:#8d533e!important}.fr-text-action-high--pink-tuile{color:#a94645!important}.fr-text-action-high--yellow-tournesol{color:#716043!important}.fr-text-action-high--yellow-moutarde{color:#695240!important}.fr-text-action-high--orange-terre-battue{color:#755348!important}.fr-text-action-high--brown-cafe-creme{color:#685c48!important}.fr-text-action-high--brown-caramel{color:#845d48!important}.fr-text-action-high--brown-opera{color:#745b47!important}.fr-text-action-high--beige-gris-galet{color:#6a6156!important}.fr-border-default--grey{border:1px solid #ddd!important}.fr-border-default--blue-france{border:1px solid #6a6af4!important}.fr-border-default--red-marianne{border:1px solid #e1000f!important}.fr-border-default--green-tilleul-verveine{border:1px solid #b7a73f!important}.fr-border-default--green-bourgeon{border:1px solid #68a532!important}.fr-border-default--green-emeraude{border:1px solid #00a95f!important}.fr-border-default--green-menthe{border:1px solid #009081!important}.fr-border-default--green-archipel{border:1px solid #009099!important}.fr-border-default--blue-ecume{border:1px solid #465f9d!important}.fr-border-default--blue-cumulus{border:1px solid #417dc4!important}.fr-border-default--purple-glycine{border:1px solid #a558a0!important}.fr-border-default--pink-macaron{border:1px solid #e18b76!important}.fr-border-default--pink-tuile{border:1px solid #ce614a!important}.fr-border-default--yellow-tournesol{border:1px solid #c8aa39!important}.fr-border-default--yellow-moutarde{border:1px solid #c3992a!important}.fr-border-default--orange-terre-battue{border:1px solid #e4794a!important}.fr-border-default--brown-cafe-creme{border:1px solid #d1b781!important}.fr-border-default--brown-caramel{border:1px solid #c08c65!important}.fr-border-default--brown-opera{border:1px solid #bd987a!important}.fr-border-default--beige-gris-galet{border:1px solid #aea397!important}.fr-border-plain--grey{border:1px solid #3a3a3a!important}.fr-border-plain--blue-france{border:1px solid #000091!important}.fr-border-plain--red-marianne{border:1px solid #c9191e!important}.fr-border-plain--info{border:1px solid #0063cb!important}.fr-border-plain--success{border:1px solid #18753c!important}.fr-border-plain--warning{border:1px solid #b34000!important}.fr-border-plain--error{border:1px solid #ce0500!important}.fr-border-plain--green-tilleul-verveine{border:1px solid #66673d!important}.fr-border-plain--green-bourgeon{border:1px solid #447049!important}.fr-border-plain--green-emeraude{border:1px solid #297254!important}.fr-border-plain--green-menthe{border:1px solid #37635f!important}.fr-border-plain--green-archipel{border:1px solid #006a6f!important}.fr-border-plain--blue-ecume{border:1px solid #2f4077!important}.fr-border-plain--blue-cumulus{border:1px solid #3558a2!important}.fr-border-plain--purple-glycine{border:1px solid #6e445a!important}.fr-border-plain--pink-macaron{border:1px solid #8d533e!important}.fr-border-plain--pink-tuile{border:1px solid #a94645!important}.fr-border-plain--yellow-tournesol{border:1px solid #716043!important}.fr-border-plain--yellow-moutarde{border:1px solid #695240!important}.fr-border-plain--orange-terre-battue{border:1px solid #755348!important}.fr-border-plain--brown-cafe-creme{border:1px solid #685c48!important}.fr-border-plain--brown-caramel{border:1px solid #845d48!important}.fr-border-plain--brown-opera{border:1px solid #745b47!important}.fr-border-plain--beige-gris-galet{border:1px solid #6a6156!important}.fr-artwork-major--blue-france{fill:#000091!important}.fr-artwork-major--red-marianne{fill:#c9191e!important}.fr-artwork-major--green-tilleul-verveine{fill:#66673d!important}.fr-artwork-major--green-bourgeon{fill:#447049!important}.fr-artwork-major--green-emeraude{fill:#297254!important}.fr-artwork-major--green-menthe{fill:#37635f!important}.fr-artwork-major--green-archipel{fill:#006a6f!important}.fr-artwork-major--blue-ecume{fill:#2f4077!important}.fr-artwork-major--blue-cumulus{fill:#3558a2!important}.fr-artwork-major--purple-glycine{fill:#6e445a!important}.fr-artwork-major--pink-macaron{fill:#8d533e!important}.fr-artwork-major--pink-tuile{fill:#a94645!important}.fr-artwork-major--yellow-tournesol{fill:#716043!important}.fr-artwork-major--yellow-moutarde{fill:#695240!important}.fr-artwork-major--orange-terre-battue{fill:#755348!important}.fr-artwork-major--brown-cafe-creme{fill:#685c48!important}.fr-artwork-major--brown-caramel{fill:#845d48!important}.fr-artwork-major--brown-opera{fill:#745b47!important}.fr-artwork-major--beige-gris-galet{fill:#6a6156!important}.fr-artwork-minor--blue-france{fill:#6a6af4!important}.fr-artwork-minor--red-marianne{fill:#e1000f!important}.fr-artwork-minor--green-tilleul-verveine{fill:#b7a73f!important}.fr-artwork-minor--green-bourgeon{fill:#68a532!important}.fr-artwork-minor--green-emeraude{fill:#00a95f!important}.fr-artwork-minor--green-menthe{fill:#009081!important}.fr-artwork-minor--green-archipel{fill:#009099!important}.fr-artwork-minor--blue-ecume{fill:#465f9d!important}.fr-artwork-minor--blue-cumulus{fill:#417dc4!important}.fr-artwork-minor--purple-glycine{fill:#a558a0!important}.fr-artwork-minor--pink-macaron{fill:#e18b76!important}.fr-artwork-minor--pink-tuile{fill:#ce614a!important}.fr-artwork-minor--yellow-tournesol{fill:#c8aa39!important}.fr-artwork-minor--yellow-moutarde{fill:#c3992a!important}.fr-artwork-minor--orange-terre-battue{fill:#e4794a!important}.fr-artwork-minor--brown-cafe-creme{fill:#d1b781!important}.fr-artwork-minor--brown-caramel{fill:#c08c65!important}.fr-artwork-minor--brown-opera{fill:#bd987a!important}.fr-artwork-minor--beige-gris-galet{fill:#aea397!important}.fr-artwork-decorative--grey{fill:#eee!important}.fr-artwork-decorative--blue-france{fill:#ececfe!important}.fr-artwork-decorative--red-marianne{fill:#fee9e9!important}.fr-artwork-decorative--green-tilleul-verveine{fill:#fceeac!important}.fr-artwork-decorative--green-bourgeon{fill:#c9fcac!important}.fr-artwork-decorative--green-emeraude{fill:#c3fad5!important}.fr-artwork-decorative--green-menthe{fill:#bafaee!important}.fr-artwork-decorative--green-archipel{fill:#c7f6fc!important}.fr-artwork-decorative--blue-ecume{fill:#e9edfe!important}.fr-artwork-decorative--blue-cumulus{fill:#e6eefe!important}.fr-artwork-decorative--purple-glycine{fill:#fee7fc!important}.fr-artwork-decorative--pink-macaron{fill:#fee9e6!important}.fr-artwork-decorative--pink-tuile{fill:#fee9e7!important}.fr-artwork-decorative--yellow-tournesol{fill:#feecc2!important}.fr-artwork-decorative--yellow-moutarde{fill:#feebd0!important}.fr-artwork-decorative--orange-terre-battue{fill:#fee9e5!important}.fr-artwork-decorative--brown-cafe-creme{fill:#f7ecdb!important}.fr-artwork-decorative--brown-caramel{fill:#f7ebe5!important}.fr-artwork-decorative--brown-opera{fill:#f7ece4!important}.fr-artwork-decorative--beige-gris-galet{fill:#f3ede5!important}.fr-artwork-background--grey{fill:#f6f6f6!important}.fr-artwork-background--blue-france{fill:#f5f5fe!important}.fr-artwork-background--red-marianne{fill:#fef4f4!important}.fr-artwork-background--green-tilleul-verveine{fill:#fef7da!important}.fr-artwork-background--green-bourgeon{fill:#e6feda!important}.fr-artwork-background--green-emeraude{fill:#e3fdeb!important}.fr-artwork-background--green-menthe{fill:#dffdf7!important}.fr-artwork-background--green-archipel{fill:#e5fbfd!important}.fr-artwork-background--blue-ecume{fill:#f4f6fe!important}.fr-artwork-background--blue-cumulus{fill:#f3f6fe!important}.fr-artwork-background--purple-glycine{fill:#fef3fd!important}.fr-artwork-background--pink-macaron{fill:#fef4f2!important}.fr-artwork-background--pink-tuile{fill:#fef4f3!important}.fr-artwork-background--yellow-tournesol{fill:#fef6e3!important}.fr-artwork-background--yellow-moutarde{fill:#fef5e8!important}.fr-artwork-background--orange-terre-battue{fill:#fef4f2!important}.fr-artwork-background--brown-cafe-creme{fill:#fbf6ed!important}.fr-artwork-background--brown-caramel,.fr-artwork-background--brown-opera{fill:#fbf5f2!important}.fr-artwork-background--beige-gris-galet{fill:#f9f6f2!important}.fr-artwork-motif--grey{fill:#e5e5e5!important}.fr-artwork-motif--blue-france{fill:#e3e3fd!important}.fr-artwork-motif--red-marianne{fill:#fddede!important}.fr-artwork-motif--green-tilleul-verveine{fill:#fbe769!important}.fr-artwork-motif--green-bourgeon{fill:#a9fb68!important}.fr-artwork-motif--green-emeraude{fill:#9ef9be!important}.fr-artwork-motif--green-menthe{fill:#8bf8e7!important}.fr-artwork-motif--green-archipel{fill:#a6f2fa!important}.fr-artwork-motif--blue-ecume{fill:#dee5fd!important}.fr-artwork-motif--blue-cumulus{fill:#dae6fd!important}.fr-artwork-motif--purple-glycine{fill:#fddbfa!important}.fr-artwork-motif--pink-macaron{fill:#fddfda!important}.fr-artwork-motif--pink-tuile{fill:#fddfdb!important}.fr-artwork-motif--yellow-tournesol{fill:#fde39c!important}.fr-artwork-motif--yellow-moutarde{fill:#fde2b5!important}.fr-artwork-motif--orange-terre-battue{fill:#fddfd8!important}.fr-artwork-motif--brown-cafe-creme{fill:#f4e3c7!important}.fr-artwork-motif--brown-caramel{fill:#f3e2d9!important}.fr-artwork-motif--brown-opera{fill:#f3e2d7!important}.fr-artwork-motif--beige-gris-galet{fill:#eee4d9!important}} \ No newline at end of file diff --git a/example_app/dsfr_components.py b/example_app/dsfr_components.py index 00b75082b..fbb61f192 100644 --- a/example_app/dsfr_components.py +++ b/example_app/dsfr_components.py @@ -18,6 +18,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/accordeon", "example_url": "https://main--ds-gouv.netlify.app/example/component/accordion/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/accordion--docs", }, "alert": { "title": "Alertes", @@ -56,6 +57,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/alerte", "example_url": "https://main--ds-gouv.netlify.app/example/component/alert/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/alert--docs", }, "badge": { "title": "Badge", @@ -79,11 +81,13 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/badge", "example_url": "https://main--ds-gouv.netlify.app/example/component/badge/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/badge--docs", }, "breadcrumb": { "title": "Fil d’Ariane", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/fil-d-ariane", "example_url": "https://main--ds-gouv.netlify.app/example/component/breadcrumb/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/breadcrumb--docs", }, "button": { "title": "Boutons", @@ -113,6 +117,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bouton", "example_url": "https://main--ds-gouv.netlify.app/example/component/button/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/button--docs", }, "button_group": { "title": "Boutons – Groupe", @@ -191,6 +196,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/groupe-de-boutons", "example_url": "https://main--ds-gouv.netlify.app/example/component/button/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/buttons-group--docs", }, "callout": { "title": "Mise en avant", @@ -224,6 +230,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/mise-en-avant", "example_url": "https://main--ds-gouv.netlify.app/example/component/callout/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/callout--docs", }, "card": { "title": "Carte", @@ -395,11 +402,13 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/carte", "example_url": "https://main--ds-gouv.netlify.app/example/component/card/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/card--docs", }, "consent": { "title": "Gestionnaire de consentement", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/gestionnaire-de-consentement", "example_url": "https://main--ds-gouv.netlify.app/example/component/consent/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/consent--docs", "sample_data": [ { "title": "À propos des cookies sur Django-DSFR", @@ -416,6 +425,7 @@ "title": "Contenu média", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/contenu-medias", "example_url": "https://main--ds-gouv.netlify.app/example/component/content/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/content--docs", "sample_data": [ { "image_url": "/django-dsfr/static/img/placeholder.16x9.svg", @@ -467,14 +477,17 @@ "title": "Lettre d’information et réseaux sociaux", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/lettre-d-information-et-reseaux-sociaux", "example_url": "https://main--ds-gouv.netlify.app/example/component/follow/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/follow--docs", }, "footer": { "title": "Pied de page", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/footer--docs", }, "france_connect": { "title": "Bouton FranceConnect", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bouton-franceconnect", "example_url": "https://main--ds-gouv.netlify.app/example/component/connect/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/connect--docs", "sample_data": [ {}, {"id": "france-connect-plus", "plus": True}, @@ -482,6 +495,7 @@ }, "header": { "title": "En-tête", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/header--docs", }, "highlight": { "title": "Mise en exergue", @@ -497,6 +511,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/mise-en-exergue", "example_url": "https://main--ds-gouv.netlify.app/example/component/highlight/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/highlight--docs", }, "input": { "title": "Champs de saisie", @@ -519,6 +534,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/champ-de-saisie", "example_url": "https://main--ds-gouv.netlify.app/example/component/input/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/input--docs", }, "link": { "title": "Lien", @@ -547,11 +563,13 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/lien", "example_url": "https://main--ds-gouv.netlify.app/example/component/link/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/link--docs", }, "notice": { "title": "Bandeau d’information importante", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/bandeau-d-information-importante", "example_url": "https://main--ds-gouv.netlify.app/example/component/notice/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/notice--docs", "sample_data": [ { "title": """Bandeau d’information importante par défaut, comprenant dans le titre un texte assez long @@ -629,6 +647,7 @@ "title": "Pagination", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/pagination", "example_url": "https://main--ds-gouv.netlify.app/example/component/pagination/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/pagination--docs", }, "quote": { "title": "Citation", @@ -654,6 +673,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/citation", "example_url": "https://main--ds-gouv.netlify.app/example/component/quote/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/quote--docs", }, "select": { "title": "Listes déroulantes", @@ -675,6 +695,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/liste-deroulante", "example_url": "https://main--ds-gouv.netlify.app/example/component/select/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/select--docs", }, "sidemenu": { "title": "Menu latéral", @@ -721,6 +742,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/menu-lateral", "example_url": "https://main--ds-gouv.netlify.app/example/component/sidemenu/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/sidemenu--docs", }, "skiplinks": { "title": "Liens d’évitement", @@ -732,6 +754,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/lien-d-evitement", "example_url": "https://main--ds-gouv.netlify.app/example/component/skiplink/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/skiplink--docs", }, "stepper": { "title": "Indicateur d’étapes", @@ -750,6 +773,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/indicateur-d-etapes", "example_url": "https://main--ds-gouv.netlify.app/example/component/stepper/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/stepper--docs", }, "summary": { "title": "Sommaire", @@ -788,6 +812,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/sommaire", "example_url": "https://main--ds-gouv.netlify.app/example/component/summary/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/summary--docs", }, "table": { "title": "Tableau", @@ -861,6 +886,7 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/tableau", "example_url": "https://main--ds-gouv.netlify.app/example/component/table/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/table--docs", }, "tag": { "title": "Tag", @@ -893,11 +919,13 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/tag", "example_url": "https://main--ds-gouv.netlify.app/example/component/tag/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/tag--docs", }, "theme_modale": { "title": "Paramètres d’affichage", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/parametre-d-affichage", "example_url": "https://main--ds-gouv.netlify.app/example/component/display/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/display--docs", }, "tile": { "title": "Tuile", @@ -961,11 +989,13 @@ ], "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/tuile", "example_url": "https://main--ds-gouv.netlify.app/example/component/tile/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/tile--docs", }, "toggle": { "title": "Interrupteur", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/interrupteur", "example_url": "https://main--ds-gouv.netlify.app/example/component/toggle/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/toggle--docs", "sample_data": [ { "label": "Interrupteur basique", @@ -988,6 +1018,7 @@ "title": "Infobulle", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/infobulle", "example_url": "https://main--ds-gouv.netlify.app/example/component/tooltip/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/tooltip--docs", "sample_data": [ { "content": "Contenu d’une infobule activée au survol", @@ -1004,6 +1035,7 @@ "title": "Transcription", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/transcription", "example_url": "https://main--ds-gouv.netlify.app/example/component/transcription/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/transcription--docs", "sample_data": [ { "content": "

Courte transcription basique

", @@ -1038,6 +1070,7 @@ }, ] ], + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/accordions-group--docs", }, "badge_group": { "title": "Badges – Groupe", @@ -1065,6 +1098,7 @@ }, ] ], + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/badges-group--docs", }, "css": {"title": "CSS global"}, "js": {"title": "JS global"}, @@ -1093,6 +1127,7 @@ "title": "Contrôle segmenté", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/controle-segmente", "example_url": "https://main--ds-gouv.netlify.app/example/component/segmented/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/segmented--docs", "note": """À implémenter au sein des formulaires et non comme une balise. cf. [#128](https://github.com/numerique-gouv/django-dsfr/issues/128) """, @@ -1101,6 +1136,7 @@ "title": "Curseur", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/curseur-range", "example_url": "https://main--ds-gouv.netlify.app/example/component/range/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/range--docs", "note": """À implémenter au sein des formulaires et non comme une balise. cf. [#129](https://github.com/numerique-gouv/django-dsfr/issues/129) """, @@ -1121,6 +1157,7 @@ "title": "Case à cocher", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/case-a-cocher", "example_url": "https://main--ds-gouv.netlify.app/example/component/checkbox/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/checkbox--docs", "reason": "Champ de formulaire.", }, "download": { @@ -1133,54 +1170,63 @@ "title": "Ajout de fichier", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/ajout-de-fichier", "example_url": "https://main--ds-gouv.netlify.app/example/component/upload/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/upload--docs", "reason": "Champ de formulaire.", }, "modal": { "title": "Modale", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/modale", "example_url": "https://main--ds-gouv.netlify.app/example/component/modal/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/modal--docs", "reason": "Une balise rendrait l’utilisation plus complexe au lieu de la simplifier.", }, "navigation": { "title": "Navigation principale", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/navigation-principale", "example_url": "https://main--ds-gouv.netlify.app/example/component/navigation/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/navigation--docs", "reason": "Partie de l’en-tête, voir la documentation de ce composant.", }, "password": { "title": "Mot de passe", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/mot-de-passe", "example_url": "https://main--ds-gouv.netlify.app/example/component/password/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/password--docs", "reason": "Dépendant de l’implémentation des comptes utilisateurs dans le projet Django", }, "radio": { "title": "Bouton radio", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/boutons-radio", "example_url": "https://main--ds-gouv.netlify.app/example/component/radio/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/radio--docs", "reason": "Champ de formulaire.", }, "search_bar": { "title": "Barre de recherche", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/barre-de-recherche", "example_url": "https://main--ds-gouv.netlify.app/example/component/search/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/search--docs", "reason": "Champ de formulaire.", }, "share": { "title": "Partage", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/partage", "example_url": "https://main--ds-gouv.netlify.app/example/component/share/", + "share": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/share--docs", "reason": "Une balise rendrait l’utilisation plus complexe au lieu de la simplifier.", }, "tab": { "title": "Onglet", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/onglet", "example_url": "https://main--ds-gouv.netlify.app/example/component/tab/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/tabs--docs", "reason": "Une balise rendrait l’utilisation plus complexe au lieu de la simplifier.", }, "translate": { "title": "Sélecteur de langue", "doc_url": "https://www.systeme-de-design.gouv.fr/elements-d-interface/composants/selecteur-de-langue", "example_url": "https://main--ds-gouv.netlify.app/example/component/translate/", + "storybook_url": "https://storybook.systeme-de-design.gouv.fr/?path=/docs/translate--docs", "reason": "Partie de l’en-tête, voir la documentation de ce composant.", }, } diff --git a/example_app/templates/example_app/page_component.html b/example_app/templates/example_app/page_component.html index b584cb8fb..84c51beb5 100644 --- a/example_app/templates/example_app/page_component.html +++ b/example_app/templates/example_app/page_component.html @@ -41,6 +41,11 @@

{% dsfr_link url=example_url label="Voir la page d’exemple du Système de Design de l’État" is_external=True extra_classes="fr-link--lg" %} {% endif %} + {% if storybook_url %} +
  • + {% dsfr_link url=storybook_url label="Voir la page du composant sur Storybook" is_external=True extra_classes="fr-link--lg" %} +
  • + {% endif %}

    Documentation du tag diff --git a/example_app/views.py b/example_app/views.py index ae7d94113..94c465c08 100644 --- a/example_app/views.py +++ b/example_app/views.py @@ -179,14 +179,10 @@ def page_component(request, tag_name): # NOSONAR ], ) - if "sample_data" in current_tag: - payload["sample_data"] = current_tag["sample_data"] - - if "doc_url" in current_tag: - payload["doc_url"] = current_tag["doc_url"] - - if "example_url" in current_tag: - payload["example_url"] = current_tag["example_url"] + keys = ["sample_data", "doc_url", "example_url", "storybook_url"] + for k in keys: + if k in current_tag: + payload[k] = current_tag[k] sidemenu_implemented_items = [] for key, value in ALL_IMPLEMENTED_COMPONENTS.items():